author | Adrien Di Mascio <Adrien.DiMascio@logilab.fr> |
Thu, 22 Oct 2009 11:07:05 +0200 | |
branch | stable |
changeset 3784 | 2465ef6aef5f |
parent 3641 | cf30e4498674 |
child 3915 | 2d23304289a6 |
permissions | -rw-r--r-- |
369
c8a6edc224bb
new rsetxml view, reusing most code from csvexport view
Sylvain Thenault <sylvain.thenault@logilab.fr>
parents:
180
diff
changeset
|
1 |
# -*- coding: utf-8 -*- |
0 | 2 |
"""common configuration utilities for cubicweb |
3 |
||
4 |
:organization: Logilab |
|
1977
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1948
diff
changeset
|
5 |
:copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE), license is LGPL v2. |
0 | 6 |
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr |
1493 | 7 |
|
3638
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
8 |
|
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
9 |
If cubicweb is a mercurial checkout (eg `CWDEV` is true), located in |
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
10 |
`CW_SOFTWARE_ROOT`: |
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
11 |
|
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
12 |
* main cubes directory is `<CW_SOFTWARE_ROOT>/../cubes`. You can specify |
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
13 |
another one with `CW_INSTANCES_DIR` environment variable or simply add some |
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
14 |
other directories by using `CW_CUBES_PATH`. |
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
15 |
|
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
16 |
* cubicweb migration files are by default searched in |
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
17 |
`<CW_SOFTWARE_ROOT>/misc/migration` instead of |
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
18 |
`/usr/share/cubicweb/migration/`(unless another emplacement is specified |
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
19 |
using `CW_MIGRATION_DIR`. |
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
20 |
|
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
21 |
* Cubicweb will start in 'user' mode (see below) |
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
22 |
|
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
23 |
|
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
24 |
On startup, Cubicweb is using a specific *mode*. A mode corresponds to some |
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
25 |
default setting for various resource directories. There are currently 2 main |
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
26 |
modes : 'system', for system wide installation, and 'user', fur user local |
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
27 |
installation (e.g. no root privileges). |
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
28 |
|
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
29 |
'user' mode is activated automatically when cubicweb is a mercurial checkout |
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
30 |
(e.g. has a .hg directory). You can also force mode by using the `CW_MODE` |
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
31 |
environment variable, to: |
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
32 |
|
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
33 |
* use system wide installation but user specific instances and all, without root |
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
34 |
privileges on the system (`export CW_MODE=user`) |
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
35 |
|
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
36 |
* use local checkout of cubicweb on system wide instances (requires root |
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
37 |
privileges on the system (`export CW_MODE=system`) |
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
38 |
|
3639 | 39 |
Here is the default resource directories settings according to mode: |
3638
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
40 |
|
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
41 |
* 'system': :: |
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
42 |
|
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
43 |
CW_INSTANCES_DIR = /etc/cubicweb.d/ |
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
44 |
CW_INSTANCES_DATA_DIR = /var/lib/cubicweb/instances/ |
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
45 |
CW_RUNTIME_DIR = /var/run/cubicweb/ |
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
46 |
|
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
47 |
* 'user': :: |
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
48 |
|
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
49 |
CW_INSTANCES_DIR = ~/etc/cubicweb.d/ |
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
50 |
CW_INSTANCES_DATA_DIR = ~/etc/cubicweb.d/ |
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
51 |
CW_RUNTIME_DIR = /tmp |
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
52 |
|
3639 | 53 |
|
54 |
.. envvar:: CW_MODE |
|
55 |
Resource mode: user or system |
|
56 |
||
1493 | 57 |
.. envvar:: CW_CUBES_PATH |
3639 | 58 |
Augments the default search path for cubes |
59 |
||
60 |
.. envvar:: CW_INSTANCES_DIR |
|
61 |
Directory where cubicweb instances will be found |
|
1493 | 62 |
|
3639 | 63 |
.. envvar:: CW_INSTANCES_DATA_DIR |
64 |
Directory where cubicweb instances data will be written |
|
65 |
||
66 |
.. envvar:: CW_RUNTIME_DIR |
|
67 |
Directory where pid files will be written |
|
68 |
||
69 |
.. envvar:: CW_MIGRATION_DIR |
|
70 |
Directory where cubicweb migration files will be found |
|
71 |
||
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1681
diff
changeset
|
72 |
|
1977
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1948
diff
changeset
|
73 |
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses |
0 | 74 |
""" |
75 |
__docformat__ = "restructuredtext en" |
|
1948 | 76 |
_ = unicode |
0 | 77 |
|
78 |
import sys |
|
79 |
import os |
|
80 |
import logging |
|
2221
d9b85a7b0bdd
create sendmails method on cwconfig, use it in SendMailOp
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2220
diff
changeset
|
81 |
from smtplib import SMTP |
d9b85a7b0bdd
create sendmails method on cwconfig, use it in SendMailOp
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2220
diff
changeset
|
82 |
from threading import Lock |
1015
b5fdad9208f8
search for cubes in a list of directories
sylvain.thenault@logilab.fr
parents:
436
diff
changeset
|
83 |
from os.path import exists, join, expanduser, abspath, normpath, basename, isdir |
3115
29262ba01464
minimal steps to have cw running on windows
Aurélien Campéas
parents:
3059
diff
changeset
|
84 |
import tempfile |
0 | 85 |
|
86 |
from logilab.common.decorators import cached |
|
2613
5e19c2bb370e
R [all] logilab.common 0.44 provides only deprecated
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2476
diff
changeset
|
87 |
from logilab.common.deprecation import deprecated |
180
8bcebdb5f55d
code moved to logilab.common.logging_ext
Sylvain Thenault <sylvain.thenault@logilab.fr>
parents:
140
diff
changeset
|
88 |
from logilab.common.logging_ext import set_log_methods, init_log |
0 | 89 |
from logilab.common.configuration import (Configuration, Method, |
90 |
ConfigurationMixIn, merge_options) |
|
91 |
||
92 |
from cubicweb import CW_SOFTWARE_ROOT, CW_MIGRATION_MAP, ConfigurationError |
|
1132 | 93 |
from cubicweb.toolsutils import env_path, create_dir |
0 | 94 |
|
95 |
CONFIGURATIONS = [] |
|
96 |
||
2221
d9b85a7b0bdd
create sendmails method on cwconfig, use it in SendMailOp
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2220
diff
changeset
|
97 |
SMTP_LOCK = Lock() |
d9b85a7b0bdd
create sendmails method on cwconfig, use it in SendMailOp
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2220
diff
changeset
|
98 |
|
0 | 99 |
|
100 |
class metaconfiguration(type): |
|
101 |
"""metaclass to automaticaly register configuration""" |
|
102 |
def __new__(mcs, name, bases, classdict): |
|
103 |
cls = super(metaconfiguration, mcs).__new__(mcs, name, bases, classdict) |
|
104 |
if classdict.get('name'): |
|
105 |
CONFIGURATIONS.append(cls) |
|
106 |
return cls |
|
107 |
||
108 |
def configuration_cls(name): |
|
109 |
"""return the configuration class registered with the given name""" |
|
110 |
try: |
|
111 |
return [c for c in CONFIGURATIONS if c.name == name][0] |
|
112 |
except IndexError: |
|
113 |
raise ConfigurationError('no such config %r (check it exists with "cubicweb-ctl list")' % name) |
|
114 |
||
115 |
def possible_configurations(directory): |
|
116 |
"""return a list of installed configurations in a directory |
|
117 |
according to *-ctl files |
|
118 |
""" |
|
119 |
return [name for name in ('repository', 'twisted', 'all-in-one') |
|
120 |
if exists(join(directory, '%s.conf' % name))] |
|
121 |
||
122 |
def guess_configuration(directory): |
|
123 |
"""try to guess the configuration to use for a directory. If multiple |
|
124 |
configurations are found, ConfigurationError is raised |
|
125 |
""" |
|
126 |
modes = possible_configurations(directory) |
|
127 |
if len(modes) != 1: |
|
128 |
raise ConfigurationError('unable to guess configuration from %r %s' |
|
129 |
% (directory, modes)) |
|
130 |
return modes[0] |
|
131 |
||
132 |
||
133 |
# persistent options definition |
|
134 |
PERSISTENT_OPTIONS = ( |
|
135 |
('encoding', |
|
136 |
{'type' : 'string', |
|
137 |
'default': 'UTF-8', |
|
138 |
'help': _('user interface encoding'), |
|
139 |
'group': 'ui', 'sitewide': True, |
|
1446 | 140 |
}), |
0 | 141 |
('language', |
142 |
{'type' : 'string', |
|
143 |
'default': 'en', |
|
144 |
'vocabulary': Method('available_languages'), |
|
145 |
'help': _('language of the user interface'), |
|
1446 | 146 |
'group': 'ui', |
0 | 147 |
}), |
148 |
('date-format', |
|
149 |
{'type' : 'string', |
|
150 |
'default': '%Y/%m/%d', |
|
151 |
'help': _('how to format date in the ui ("man strftime" for format description)'), |
|
1446 | 152 |
'group': 'ui', |
0 | 153 |
}), |
154 |
('datetime-format', |
|
155 |
{'type' : 'string', |
|
156 |
'default': '%Y/%m/%d %H:%M', |
|
157 |
'help': _('how to format date and time in the ui ("man strftime" for format description)'), |
|
1446 | 158 |
'group': 'ui', |
0 | 159 |
}), |
160 |
('time-format', |
|
161 |
{'type' : 'string', |
|
162 |
'default': '%H:%M', |
|
163 |
'help': _('how to format time in the ui ("man strftime" for format description)'), |
|
1446 | 164 |
'group': 'ui', |
0 | 165 |
}), |
166 |
('float-format', |
|
167 |
{'type' : 'string', |
|
168 |
'default': '%.3f', |
|
169 |
'help': _('how to format float numbers in the ui'), |
|
1446 | 170 |
'group': 'ui', |
0 | 171 |
}), |
172 |
('default-text-format', |
|
173 |
{'type' : 'choice', |
|
174 |
'choices': ('text/plain', 'text/rest', 'text/html'), |
|
175 |
'default': 'text/html', # use fckeditor in the web ui |
|
176 |
'help': _('default text format for rich text fields.'), |
|
1446 | 177 |
'group': 'ui', |
0 | 178 |
}), |
179 |
('short-line-size', |
|
180 |
{'type' : 'int', |
|
181 |
'default': 40, |
|
182 |
'help': _('maximum number of characters in short description'), |
|
183 |
'group': 'navigation', |
|
184 |
}), |
|
185 |
) |
|
186 |
||
187 |
def register_persistent_options(options): |
|
188 |
global PERSISTENT_OPTIONS |
|
189 |
PERSISTENT_OPTIONS = merge_options(PERSISTENT_OPTIONS + options) |
|
1446 | 190 |
|
0 | 191 |
CFGTYPE2ETYPE_MAP = { |
192 |
'string': 'String', |
|
193 |
'choice': 'String', |
|
194 |
'yn': 'Boolean', |
|
195 |
'int': 'Int', |
|
196 |
'float' : 'Float', |
|
197 |
} |
|
1446 | 198 |
|
3059
1be8bf42bc5d
consider CW_MODE='system', the opposite of 'user' (eg use 'installed' mode while using the forest)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2762
diff
changeset
|
199 |
_forced_mode = os.environ.get('CW_MODE') |
1be8bf42bc5d
consider CW_MODE='system', the opposite of 'user' (eg use 'installed' mode while using the forest)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2762
diff
changeset
|
200 |
assert _forced_mode in (None, 'system', 'user') |
1be8bf42bc5d
consider CW_MODE='system', the opposite of 'user' (eg use 'installed' mode while using the forest)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2762
diff
changeset
|
201 |
|
3638
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
202 |
CWDEV = exists(join(CW_SOFTWARE_ROOT, '.hg')) |
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
203 |
|
0 | 204 |
class CubicWebNoAppConfiguration(ConfigurationMixIn): |
205 |
"""base class for cubicweb configuration without a specific instance directory |
|
206 |
""" |
|
207 |
__metaclass__ = metaconfiguration |
|
208 |
# to set in concrete configuration |
|
209 |
name = None |
|
210 |
# log messages format (see logging module documentation for available keys) |
|
211 |
log_format = '%(asctime)s - (%(name)s) %(levelname)s: %(message)s' |
|
2657
de974465d381
[appobject] kill VObject class, move base selector classes to appobject
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2654
diff
changeset
|
212 |
# nor remove appobjects based on unused interface |
0 | 213 |
cleanup_interface_sobjects = True |
3638
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
214 |
# debug mode |
3641
cf30e4498674
fix debug attribute conflict on configuration
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3640
diff
changeset
|
215 |
debugmode = False |
0 | 216 |
|
217 |
if os.environ.get('APYCOT_ROOT'): |
|
218 |
mode = 'test' |
|
219 |
CUBES_DIR = '%(APYCOT_ROOT)s/local/share/cubicweb/cubes/' % os.environ |
|
436 | 220 |
# create __init__ file |
221 |
file(join(CUBES_DIR, '__init__.py'), 'w').close() |
|
3638
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
222 |
elif (CWDEV and _forced_mode != 'system'): |
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
223 |
mode = 'user' |
1015
b5fdad9208f8
search for cubes in a list of directories
sylvain.thenault@logilab.fr
parents:
436
diff
changeset
|
224 |
CUBES_DIR = abspath(normpath(join(CW_SOFTWARE_ROOT, '../cubes'))) |
0 | 225 |
else: |
3638
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
226 |
if _forced_mode == 'user': |
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
227 |
mode = 'user' |
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
228 |
else: |
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
229 |
mode = 'system' |
0 | 230 |
CUBES_DIR = '/usr/share/cubicweb/cubes/' |
231 |
||
1046
52ee022d87e3
simplify registry options to disable some appobjects to use a single option
sylvain.thenault@logilab.fr
parents:
819
diff
changeset
|
232 |
options = ( |
0 | 233 |
('log-threshold', |
234 |
{'type' : 'string', # XXX use a dedicated type? |
|
235 |
'default': 'ERROR', |
|
236 |
'help': 'server\'s log level', |
|
237 |
'group': 'main', 'inputlevel': 1, |
|
238 |
}), |
|
3539
f3b14d052798
[pyro] merge pyro-id / pyro-instance-id options, put all pyro options in the same section of the configuration file
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3275
diff
changeset
|
239 |
# pyro options |
f3b14d052798
[pyro] merge pyro-id / pyro-instance-id options, put all pyro options in the same section of the configuration file
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3275
diff
changeset
|
240 |
('pyro-instance-id', |
f3b14d052798
[pyro] merge pyro-id / pyro-instance-id options, put all pyro options in the same section of the configuration file
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3275
diff
changeset
|
241 |
{'type' : 'string', |
f3b14d052798
[pyro] merge pyro-id / pyro-instance-id options, put all pyro options in the same section of the configuration file
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3275
diff
changeset
|
242 |
'default': Method('default_instance_id'), |
f3b14d052798
[pyro] merge pyro-id / pyro-instance-id options, put all pyro options in the same section of the configuration file
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3275
diff
changeset
|
243 |
'help': 'identifier of the CubicWeb instance in the Pyro name server', |
f3b14d052798
[pyro] merge pyro-id / pyro-instance-id options, put all pyro options in the same section of the configuration file
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3275
diff
changeset
|
244 |
'group': 'pyro', 'inputlevel': 1, |
f3b14d052798
[pyro] merge pyro-id / pyro-instance-id options, put all pyro options in the same section of the configuration file
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3275
diff
changeset
|
245 |
}), |
0 | 246 |
('pyro-ns-host', |
247 |
{'type' : 'string', |
|
378
c0cd7398edff
revert local debug checkin
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
369
diff
changeset
|
248 |
'default': '', |
0 | 249 |
'help': 'Pyro name server\'s host. If not set, will be detected by a \ |
2665
0c6281487f90
[pyro] use lgc.pyro_ext, simplify pyro related options
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2657
diff
changeset
|
250 |
broadcast query. It may contains port information using <host>:<port> notation.', |
3539
f3b14d052798
[pyro] merge pyro-id / pyro-instance-id options, put all pyro options in the same section of the configuration file
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3275
diff
changeset
|
251 |
'group': 'pyro', 'inputlevel': 1, |
0 | 252 |
}), |
253 |
('pyro-ns-group', |
|
254 |
{'type' : 'string', |
|
255 |
'default': 'cubicweb', |
|
256 |
'help': 'Pyro name server\'s group where the repository will be \ |
|
257 |
registered.', |
|
3539
f3b14d052798
[pyro] merge pyro-id / pyro-instance-id options, put all pyro options in the same section of the configuration file
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3275
diff
changeset
|
258 |
'group': 'pyro', 'inputlevel': 1, |
0 | 259 |
}), |
260 |
# common configuration options which are potentially required as soon as |
|
261 |
# you're using "base" application objects (ie to really server/web |
|
262 |
# specific) |
|
263 |
('base-url', |
|
264 |
{'type' : 'string', |
|
265 |
'default': None, |
|
266 |
'help': 'web server root url', |
|
267 |
'group': 'main', 'inputlevel': 1, |
|
268 |
}), |
|
2267
e1d2df3f1091
move login by email functionnality on the repository side to avoid buggy call to internal_session from the web interface side
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2221
diff
changeset
|
269 |
('allow-email-login', |
e1d2df3f1091
move login by email functionnality on the repository side to avoid buggy call to internal_session from the web interface side
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2221
diff
changeset
|
270 |
{'type' : 'yn', |
e1d2df3f1091
move login by email functionnality on the repository side to avoid buggy call to internal_session from the web interface side
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2221
diff
changeset
|
271 |
'default': False, |
e1d2df3f1091
move login by email functionnality on the repository side to avoid buggy call to internal_session from the web interface side
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2221
diff
changeset
|
272 |
'help': 'allow users to login with their primary email if set', |
e1d2df3f1091
move login by email functionnality on the repository side to avoid buggy call to internal_session from the web interface side
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2221
diff
changeset
|
273 |
'group': 'main', 'inputlevel': 2, |
e1d2df3f1091
move login by email functionnality on the repository side to avoid buggy call to internal_session from the web interface side
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2221
diff
changeset
|
274 |
}), |
1520
b097057e629d
provide an option to substitute the base-url (left-most part) subdomain by the one of the current http query to easy multiple subdomains website management
Florent <florent@secondweb.fr>
parents:
1446
diff
changeset
|
275 |
('use-request-subdomain', |
b097057e629d
provide an option to substitute the base-url (left-most part) subdomain by the one of the current http query to easy multiple subdomains website management
Florent <florent@secondweb.fr>
parents:
1446
diff
changeset
|
276 |
{'type' : 'yn', |
b097057e629d
provide an option to substitute the base-url (left-most part) subdomain by the one of the current http query to easy multiple subdomains website management
Florent <florent@secondweb.fr>
parents:
1446
diff
changeset
|
277 |
'default': None, |
b097057e629d
provide an option to substitute the base-url (left-most part) subdomain by the one of the current http query to easy multiple subdomains website management
Florent <florent@secondweb.fr>
parents:
1446
diff
changeset
|
278 |
'help': ('if set, base-url subdomain is replaced by the request\'s ' |
b097057e629d
provide an option to substitute the base-url (left-most part) subdomain by the one of the current http query to easy multiple subdomains website management
Florent <florent@secondweb.fr>
parents:
1446
diff
changeset
|
279 |
'host, to help managing sites with several subdomains in a ' |
b097057e629d
provide an option to substitute the base-url (left-most part) subdomain by the one of the current http query to easy multiple subdomains website management
Florent <florent@secondweb.fr>
parents:
1446
diff
changeset
|
280 |
'single cubicweb instance'), |
b097057e629d
provide an option to substitute the base-url (left-most part) subdomain by the one of the current http query to easy multiple subdomains website management
Florent <florent@secondweb.fr>
parents:
1446
diff
changeset
|
281 |
'group': 'main', 'inputlevel': 1, |
b097057e629d
provide an option to substitute the base-url (left-most part) subdomain by the one of the current http query to easy multiple subdomains website management
Florent <florent@secondweb.fr>
parents:
1446
diff
changeset
|
282 |
}), |
0 | 283 |
('mangle-emails', |
284 |
{'type' : 'yn', |
|
285 |
'default': False, |
|
286 |
'help': "don't display actual email addresses but mangle them if \ |
|
287 |
this option is set to yes", |
|
288 |
'group': 'email', 'inputlevel': 2, |
|
289 |
}), |
|
1046
52ee022d87e3
simplify registry options to disable some appobjects to use a single option
sylvain.thenault@logilab.fr
parents:
819
diff
changeset
|
290 |
('disable-appobjects', |
52ee022d87e3
simplify registry options to disable some appobjects to use a single option
sylvain.thenault@logilab.fr
parents:
819
diff
changeset
|
291 |
{'type' : 'csv', 'default': (), |
52ee022d87e3
simplify registry options to disable some appobjects to use a single option
sylvain.thenault@logilab.fr
parents:
819
diff
changeset
|
292 |
'help': 'comma separated list of identifiers of application objects (<registry>.<oid>) to disable', |
52ee022d87e3
simplify registry options to disable some appobjects to use a single option
sylvain.thenault@logilab.fr
parents:
819
diff
changeset
|
293 |
'group': 'appobjects', 'inputlevel': 2, |
52ee022d87e3
simplify registry options to disable some appobjects to use a single option
sylvain.thenault@logilab.fr
parents:
819
diff
changeset
|
294 |
}), |
0 | 295 |
) |
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
296 |
# static and class methods used to get instance independant resources ## |
1446 | 297 |
|
0 | 298 |
@staticmethod |
299 |
def cubicweb_version(): |
|
300 |
"""return installed cubicweb version""" |
|
301 |
from logilab.common.changelog import Version |
|
302 |
from cubicweb import __pkginfo__ |
|
303 |
version = __pkginfo__.numversion |
|
304 |
assert len(version) == 3, version |
|
305 |
return Version(version) |
|
1446 | 306 |
|
0 | 307 |
@staticmethod |
308 |
def persistent_options_configuration(): |
|
309 |
return Configuration(options=PERSISTENT_OPTIONS) |
|
310 |
||
311 |
@classmethod |
|
312 |
def shared_dir(cls): |
|
313 |
"""return the shared data directory (i.e. directory where standard |
|
314 |
library views and data may be found) |
|
315 |
""" |
|
3638
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
316 |
if CWDEV: |
0 | 317 |
return join(CW_SOFTWARE_ROOT, 'web') |
1039 | 318 |
return cls.cube_dir('shared') |
1446 | 319 |
|
0 | 320 |
@classmethod |
321 |
def i18n_lib_dir(cls): |
|
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
322 |
"""return instance's i18n directory""" |
3638
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
323 |
if CWDEV: |
0 | 324 |
return join(CW_SOFTWARE_ROOT, 'i18n') |
325 |
return join(cls.shared_dir(), 'i18n') |
|
326 |
||
327 |
@classmethod |
|
328 |
def available_cubes(cls): |
|
1015
b5fdad9208f8
search for cubes in a list of directories
sylvain.thenault@logilab.fr
parents:
436
diff
changeset
|
329 |
cubes = set() |
b5fdad9208f8
search for cubes in a list of directories
sylvain.thenault@logilab.fr
parents:
436
diff
changeset
|
330 |
for directory in cls.cubes_search_path(): |
b5fdad9208f8
search for cubes in a list of directories
sylvain.thenault@logilab.fr
parents:
436
diff
changeset
|
331 |
for cube in os.listdir(directory): |
3638
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
332 |
if isdir(join(directory, cube)) and not cube == 'shared': |
1015
b5fdad9208f8
search for cubes in a list of directories
sylvain.thenault@logilab.fr
parents:
436
diff
changeset
|
333 |
cubes.add(cube) |
b5fdad9208f8
search for cubes in a list of directories
sylvain.thenault@logilab.fr
parents:
436
diff
changeset
|
334 |
return sorted(cubes) |
1446 | 335 |
|
0 | 336 |
@classmethod |
1015
b5fdad9208f8
search for cubes in a list of directories
sylvain.thenault@logilab.fr
parents:
436
diff
changeset
|
337 |
def cubes_search_path(cls): |
b5fdad9208f8
search for cubes in a list of directories
sylvain.thenault@logilab.fr
parents:
436
diff
changeset
|
338 |
"""return the path of directories where cubes should be searched""" |
b5fdad9208f8
search for cubes in a list of directories
sylvain.thenault@logilab.fr
parents:
436
diff
changeset
|
339 |
path = [] |
b5fdad9208f8
search for cubes in a list of directories
sylvain.thenault@logilab.fr
parents:
436
diff
changeset
|
340 |
try: |
b5fdad9208f8
search for cubes in a list of directories
sylvain.thenault@logilab.fr
parents:
436
diff
changeset
|
341 |
for directory in os.environ['CW_CUBES_PATH'].split(os.pathsep): |
b5fdad9208f8
search for cubes in a list of directories
sylvain.thenault@logilab.fr
parents:
436
diff
changeset
|
342 |
directory = abspath(normpath(directory)) |
b5fdad9208f8
search for cubes in a list of directories
sylvain.thenault@logilab.fr
parents:
436
diff
changeset
|
343 |
if exists(directory) and not directory in path: |
b5fdad9208f8
search for cubes in a list of directories
sylvain.thenault@logilab.fr
parents:
436
diff
changeset
|
344 |
path.append(directory) |
b5fdad9208f8
search for cubes in a list of directories
sylvain.thenault@logilab.fr
parents:
436
diff
changeset
|
345 |
except KeyError: |
b5fdad9208f8
search for cubes in a list of directories
sylvain.thenault@logilab.fr
parents:
436
diff
changeset
|
346 |
pass |
b5fdad9208f8
search for cubes in a list of directories
sylvain.thenault@logilab.fr
parents:
436
diff
changeset
|
347 |
if not cls.CUBES_DIR in path: |
b5fdad9208f8
search for cubes in a list of directories
sylvain.thenault@logilab.fr
parents:
436
diff
changeset
|
348 |
path.append(cls.CUBES_DIR) |
b5fdad9208f8
search for cubes in a list of directories
sylvain.thenault@logilab.fr
parents:
436
diff
changeset
|
349 |
return path |
1446 | 350 |
|
0 | 351 |
@classmethod |
352 |
def cube_dir(cls, cube): |
|
353 |
"""return the cube directory for the given cube id, |
|
354 |
raise ConfigurationError if it doesn't exists |
|
355 |
""" |
|
1015
b5fdad9208f8
search for cubes in a list of directories
sylvain.thenault@logilab.fr
parents:
436
diff
changeset
|
356 |
for directory in cls.cubes_search_path(): |
b5fdad9208f8
search for cubes in a list of directories
sylvain.thenault@logilab.fr
parents:
436
diff
changeset
|
357 |
cubedir = join(directory, cube) |
b5fdad9208f8
search for cubes in a list of directories
sylvain.thenault@logilab.fr
parents:
436
diff
changeset
|
358 |
if exists(cubedir): |
b5fdad9208f8
search for cubes in a list of directories
sylvain.thenault@logilab.fr
parents:
436
diff
changeset
|
359 |
return cubedir |
b5fdad9208f8
search for cubes in a list of directories
sylvain.thenault@logilab.fr
parents:
436
diff
changeset
|
360 |
raise ConfigurationError('no cube %s in %s' % (cube, cls.cubes_search_path())) |
0 | 361 |
|
362 |
@classmethod |
|
363 |
def cube_migration_scripts_dir(cls, cube): |
|
364 |
"""cube migration scripts directory""" |
|
365 |
return join(cls.cube_dir(cube), 'migration') |
|
1446 | 366 |
|
0 | 367 |
@classmethod |
368 |
def cube_pkginfo(cls, cube): |
|
369 |
"""return the information module for the given cube""" |
|
370 |
cube = CW_MIGRATION_MAP.get(cube, cube) |
|
371 |
try: |
|
372 |
return getattr(__import__('cubes.%s.__pkginfo__' % cube), cube).__pkginfo__ |
|
140
478bdd15bc0e
more error resilient
Sylvain Thenault <sylvain.thenault@logilab.fr>
parents:
0
diff
changeset
|
373 |
except Exception, ex: |
0 | 374 |
raise ConfigurationError('unable to find packaging information for ' |
140
478bdd15bc0e
more error resilient
Sylvain Thenault <sylvain.thenault@logilab.fr>
parents:
0
diff
changeset
|
375 |
'cube %s (%s: %s)' % (cube, ex.__class__.__name__, ex)) |
0 | 376 |
|
377 |
@classmethod |
|
378 |
def cube_version(cls, cube): |
|
1446 | 379 |
"""return the version of the cube located in the given directory |
0 | 380 |
""" |
381 |
from logilab.common.changelog import Version |
|
382 |
version = cls.cube_pkginfo(cube).numversion |
|
383 |
assert len(version) == 3, version |
|
384 |
return Version(version) |
|
385 |
||
386 |
@classmethod |
|
387 |
def cube_dependencies(cls, cube): |
|
388 |
"""return cubicweb cubes used by the given cube""" |
|
389 |
return getattr(cls.cube_pkginfo(cube), '__use__', ()) |
|
390 |
||
391 |
@classmethod |
|
392 |
def cube_recommends(cls, cube): |
|
393 |
"""return cubicweb cubes recommended by the given cube""" |
|
394 |
return getattr(cls.cube_pkginfo(cube), '__recommend__', ()) |
|
395 |
||
396 |
@classmethod |
|
2762
b1bb33b37992
[config] new with_recommends option to expand_cubes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2665
diff
changeset
|
397 |
def expand_cubes(cls, cubes, with_recommends=False): |
0 | 398 |
"""expand the given list of top level cubes used by adding recursivly |
399 |
each cube dependencies |
|
400 |
""" |
|
401 |
cubes = list(cubes) |
|
402 |
todo = cubes[:] |
|
403 |
while todo: |
|
404 |
cube = todo.pop(0) |
|
405 |
for depcube in cls.cube_dependencies(cube): |
|
406 |
if depcube not in cubes: |
|
407 |
depcube = CW_MIGRATION_MAP.get(depcube, depcube) |
|
408 |
cubes.append(depcube) |
|
409 |
todo.append(depcube) |
|
2762
b1bb33b37992
[config] new with_recommends option to expand_cubes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2665
diff
changeset
|
410 |
if with_recommends: |
b1bb33b37992
[config] new with_recommends option to expand_cubes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2665
diff
changeset
|
411 |
for depcube in cls.cube_recommends(cube): |
b1bb33b37992
[config] new with_recommends option to expand_cubes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2665
diff
changeset
|
412 |
if depcube not in cubes: |
b1bb33b37992
[config] new with_recommends option to expand_cubes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2665
diff
changeset
|
413 |
depcube = CW_MIGRATION_MAP.get(depcube, depcube) |
b1bb33b37992
[config] new with_recommends option to expand_cubes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2665
diff
changeset
|
414 |
cubes.append(depcube) |
b1bb33b37992
[config] new with_recommends option to expand_cubes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2665
diff
changeset
|
415 |
todo.append(depcube) |
0 | 416 |
return cubes |
417 |
||
418 |
@classmethod |
|
419 |
def reorder_cubes(cls, cubes): |
|
420 |
"""reorder cubes from the top level cubes to inner dependencies |
|
421 |
cubes |
|
422 |
""" |
|
423 |
from logilab.common.graph import get_cycles |
|
424 |
graph = {} |
|
425 |
for cube in cubes: |
|
426 |
cube = CW_MIGRATION_MAP.get(cube, cube) |
|
427 |
deps = cls.cube_dependencies(cube) + \ |
|
428 |
cls.cube_recommends(cube) |
|
429 |
graph[cube] = set(dep for dep in deps if dep in cubes) |
|
430 |
cycles = get_cycles(graph) |
|
431 |
if cycles: |
|
432 |
cycles = '\n'.join(' -> '.join(cycle) for cycle in cycles) |
|
433 |
raise ConfigurationError('cycles in cubes dependencies: %s' |
|
434 |
% cycles) |
|
435 |
cubes = [] |
|
436 |
while graph: |
|
437 |
# sorted to get predictable results |
|
438 |
for cube, deps in sorted(graph.items()): |
|
439 |
if not deps: |
|
440 |
cubes.append(cube) |
|
441 |
del graph[cube] |
|
442 |
for deps in graph.itervalues(): |
|
443 |
try: |
|
444 |
deps.remove(cube) |
|
445 |
except KeyError: |
|
446 |
continue |
|
447 |
return tuple(reversed(cubes)) |
|
1446 | 448 |
|
0 | 449 |
@classmethod |
450 |
def cls_adjust_sys_path(cls): |
|
451 |
"""update python path if necessary""" |
|
1023
278f997aa257
fix sys.path adjustment
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1015
diff
changeset
|
452 |
cubes_parent_dir = normpath(join(cls.CUBES_DIR, '..')) |
278f997aa257
fix sys.path adjustment
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1015
diff
changeset
|
453 |
if not cubes_parent_dir in sys.path: |
278f997aa257
fix sys.path adjustment
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1015
diff
changeset
|
454 |
sys.path.insert(0, cubes_parent_dir) |
0 | 455 |
try: |
1015
b5fdad9208f8
search for cubes in a list of directories
sylvain.thenault@logilab.fr
parents:
436
diff
changeset
|
456 |
import cubes |
b5fdad9208f8
search for cubes in a list of directories
sylvain.thenault@logilab.fr
parents:
436
diff
changeset
|
457 |
cubes.__path__ = cls.cubes_search_path() |
b5fdad9208f8
search for cubes in a list of directories
sylvain.thenault@logilab.fr
parents:
436
diff
changeset
|
458 |
except ImportError: |
b5fdad9208f8
search for cubes in a list of directories
sylvain.thenault@logilab.fr
parents:
436
diff
changeset
|
459 |
return # cubes dir doesn't exists |
0 | 460 |
|
461 |
@classmethod |
|
462 |
def load_cwctl_plugins(cls): |
|
463 |
from logilab.common.modutils import load_module_from_file |
|
464 |
cls.cls_adjust_sys_path() |
|
465 |
for ctlfile in ('web/webctl.py', 'etwist/twctl.py', |
|
466 |
'server/serverctl.py', 'hercule.py', |
|
467 |
'devtools/devctl.py', 'goa/goactl.py'): |
|
468 |
if exists(join(CW_SOFTWARE_ROOT, ctlfile)): |
|
3269
02a918f108a7
prevent some command providers to stop using cubicweb-ctl (current case : goactl when vobject is not there)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
3118
diff
changeset
|
469 |
try: |
02a918f108a7
prevent some command providers to stop using cubicweb-ctl (current case : goactl when vobject is not there)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
3118
diff
changeset
|
470 |
load_module_from_file(join(CW_SOFTWARE_ROOT, ctlfile)) |
02a918f108a7
prevent some command providers to stop using cubicweb-ctl (current case : goactl when vobject is not there)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
3118
diff
changeset
|
471 |
except ImportError, err: |
3270
ae43a0ddc1d9
warning -> critical, also allow goa to work without vobject
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
3269
diff
changeset
|
472 |
cls.critical('could not import the command provider %s (cause : %s)' % |
3269
02a918f108a7
prevent some command providers to stop using cubicweb-ctl (current case : goactl when vobject is not there)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
3118
diff
changeset
|
473 |
(ctlfile, err)) |
0 | 474 |
cls.info('loaded cubicweb-ctl plugin %s', ctlfile) |
475 |
for cube in cls.available_cubes(): |
|
1015
b5fdad9208f8
search for cubes in a list of directories
sylvain.thenault@logilab.fr
parents:
436
diff
changeset
|
476 |
pluginfile = join(cls.cube_dir(cube), 'ecplugin.py') |
b5fdad9208f8
search for cubes in a list of directories
sylvain.thenault@logilab.fr
parents:
436
diff
changeset
|
477 |
initfile = join(cls.cube_dir(cube), '__init__.py') |
0 | 478 |
if exists(pluginfile): |
479 |
try: |
|
480 |
__import__('cubes.%s.ecplugin' % cube) |
|
481 |
cls.info('loaded cubicweb-ctl plugin from %s', cube) |
|
482 |
except: |
|
483 |
cls.exception('while loading plugin %s', pluginfile) |
|
484 |
elif exists(initfile): |
|
485 |
try: |
|
486 |
__import__('cubes.%s' % cube) |
|
487 |
except: |
|
488 |
cls.exception('while loading cube %s', cube) |
|
489 |
else: |
|
1446 | 490 |
cls.warning('no __init__ file in cube %s', cube) |
0 | 491 |
|
492 |
@classmethod |
|
493 |
def init_available_cubes(cls): |
|
494 |
"""cubes may register some sources (svnfile for instance) in their |
|
495 |
__init__ file, so they should be loaded early in the startup process |
|
496 |
""" |
|
497 |
for cube in cls.available_cubes(): |
|
498 |
try: |
|
499 |
__import__('cubes.%s' % cube) |
|
500 |
except Exception, ex: |
|
501 |
cls.warning("can't init cube %s: %s", cube, ex) |
|
1446 | 502 |
|
2657
de974465d381
[appobject] kill VObject class, move base selector classes to appobject
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2654
diff
changeset
|
503 |
cubicweb_appobject_path = set(['entities']) |
de974465d381
[appobject] kill VObject class, move base selector classes to appobject
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2654
diff
changeset
|
504 |
cube_appobject_path = set(['entities']) |
0 | 505 |
|
506 |
@classmethod |
|
507 |
def build_vregistry_path(cls, templpath, evobjpath=None, tvobjpath=None): |
|
508 |
"""given a list of directories, return a list of sub files and |
|
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
509 |
directories that should be loaded by the instance objects registry. |
0 | 510 |
|
511 |
:param evobjpath: |
|
512 |
optional list of sub-directories (or files without the .py ext) of |
|
513 |
the cubicweb library that should be tested and added to the output list |
|
2657
de974465d381
[appobject] kill VObject class, move base selector classes to appobject
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2654
diff
changeset
|
514 |
if they exists. If not give, default to `cubicweb_appobject_path` class |
0 | 515 |
attribute. |
516 |
:param tvobjpath: |
|
517 |
optional list of sub-directories (or files without the .py ext) of |
|
518 |
directories given in `templpath` that should be tested and added to |
|
519 |
the output list if they exists. If not give, default to |
|
2657
de974465d381
[appobject] kill VObject class, move base selector classes to appobject
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2654
diff
changeset
|
520 |
`cube_appobject_path` class attribute. |
0 | 521 |
""" |
522 |
vregpath = cls.build_vregistry_cubicweb_path(evobjpath) |
|
523 |
vregpath += cls.build_vregistry_cube_path(templpath, tvobjpath) |
|
524 |
return vregpath |
|
525 |
||
526 |
@classmethod |
|
527 |
def build_vregistry_cubicweb_path(cls, evobjpath=None): |
|
528 |
vregpath = [] |
|
529 |
if evobjpath is None: |
|
2657
de974465d381
[appobject] kill VObject class, move base selector classes to appobject
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2654
diff
changeset
|
530 |
evobjpath = cls.cubicweb_appobject_path |
0 | 531 |
for subdir in evobjpath: |
532 |
path = join(CW_SOFTWARE_ROOT, subdir) |
|
533 |
if exists(path): |
|
534 |
vregpath.append(path) |
|
535 |
return vregpath |
|
536 |
||
537 |
@classmethod |
|
538 |
def build_vregistry_cube_path(cls, templpath, tvobjpath=None): |
|
539 |
vregpath = [] |
|
540 |
if tvobjpath is None: |
|
2657
de974465d381
[appobject] kill VObject class, move base selector classes to appobject
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2654
diff
changeset
|
541 |
tvobjpath = cls.cube_appobject_path |
0 | 542 |
for directory in templpath: |
543 |
for subdir in tvobjpath: |
|
544 |
path = join(directory, subdir) |
|
545 |
if exists(path): |
|
546 |
vregpath.append(path) |
|
547 |
elif exists(path + '.py'): |
|
548 |
vregpath.append(path + '.py') |
|
549 |
return vregpath |
|
1446 | 550 |
|
0 | 551 |
def __init__(self): |
552 |
ConfigurationMixIn.__init__(self) |
|
553 |
self.adjust_sys_path() |
|
554 |
self.load_defaults() |
|
1446 | 555 |
self.translations = {} |
0 | 556 |
|
557 |
def adjust_sys_path(self): |
|
558 |
self.cls_adjust_sys_path() |
|
1446 | 559 |
|
560 |
def init_log(self, logthreshold=None, debug=False, |
|
0 | 561 |
logfile=None, syslog=False): |
562 |
"""init the log service""" |
|
180
8bcebdb5f55d
code moved to logilab.common.logging_ext
Sylvain Thenault <sylvain.thenault@logilab.fr>
parents:
140
diff
changeset
|
563 |
if logthreshold is None: |
0 | 564 |
if debug: |
180
8bcebdb5f55d
code moved to logilab.common.logging_ext
Sylvain Thenault <sylvain.thenault@logilab.fr>
parents:
140
diff
changeset
|
565 |
logthreshold = 'DEBUG' |
0 | 566 |
else: |
180
8bcebdb5f55d
code moved to logilab.common.logging_ext
Sylvain Thenault <sylvain.thenault@logilab.fr>
parents:
140
diff
changeset
|
567 |
logthreshold = self['log-threshold'] |
3641
cf30e4498674
fix debug attribute conflict on configuration
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3640
diff
changeset
|
568 |
self.debugmode = debug |
180
8bcebdb5f55d
code moved to logilab.common.logging_ext
Sylvain Thenault <sylvain.thenault@logilab.fr>
parents:
140
diff
changeset
|
569 |
init_log(debug, syslog, logthreshold, logfile, self.log_format) |
0 | 570 |
# configure simpleTal logger |
571 |
logging.getLogger('simpleTAL').setLevel(logging.ERROR) |
|
572 |
||
573 |
def vregistry_path(self): |
|
574 |
"""return a list of files or directories where the registry will look |
|
575 |
for application objects. By default return nothing in NoApp config. |
|
576 |
""" |
|
577 |
return [] |
|
1446 | 578 |
|
0 | 579 |
def eproperty_definitions(self): |
580 |
cfg = self.persistent_options_configuration() |
|
581 |
for section, options in cfg.options_by_section(): |
|
582 |
section = section.lower() |
|
583 |
for optname, optdict, value in options: |
|
584 |
key = '%s.%s' % (section, optname) |
|
585 |
type, vocab = self.map_option(optdict) |
|
586 |
default = cfg.option_default(optname, optdict) |
|
587 |
pdef = {'type': type, 'vocabulary': vocab, 'default': default, |
|
588 |
'help': optdict['help'], |
|
589 |
'sitewide': optdict.get('sitewide', False)} |
|
590 |
yield key, pdef |
|
1446 | 591 |
|
0 | 592 |
def map_option(self, optdict): |
593 |
try: |
|
594 |
vocab = optdict['choices'] |
|
595 |
except KeyError: |
|
596 |
vocab = optdict.get('vocabulary') |
|
597 |
if isinstance(vocab, Method): |
|
598 |
vocab = getattr(self, vocab.method, ()) |
|
599 |
return CFGTYPE2ETYPE_MAP[optdict['type']], vocab |
|
600 |
||
3564
b03cc2416cd5
[config] dumb implementation of default_instance_id on no app config since it's referenced
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3539
diff
changeset
|
601 |
def default_instance_id(self): |
b03cc2416cd5
[config] dumb implementation of default_instance_id on no app config since it's referenced
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3539
diff
changeset
|
602 |
"""return the instance identifier, useful for option which need this |
b03cc2416cd5
[config] dumb implementation of default_instance_id on no app config since it's referenced
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3539
diff
changeset
|
603 |
as default value |
b03cc2416cd5
[config] dumb implementation of default_instance_id on no app config since it's referenced
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3539
diff
changeset
|
604 |
""" |
b03cc2416cd5
[config] dumb implementation of default_instance_id on no app config since it's referenced
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3539
diff
changeset
|
605 |
return None |
1446 | 606 |
|
0 | 607 |
class CubicWebConfiguration(CubicWebNoAppConfiguration): |
608 |
"""base class for cubicweb server and web configurations""" |
|
1446 | 609 |
|
3638
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
610 |
INSTANCES_DATA_DIR = None |
0 | 611 |
if CubicWebNoAppConfiguration.mode == 'test': |
612 |
root = os.environ['APYCOT_ROOT'] |
|
613 |
REGISTRY_DIR = '%s/etc/cubicweb.d/' % root |
|
3115
29262ba01464
minimal steps to have cw running on windows
Aurélien Campéas
parents:
3059
diff
changeset
|
614 |
RUNTIME_DIR = tempfile.gettempdir() |
0 | 615 |
MIGRATION_DIR = '%s/local/share/cubicweb/migration/' % root |
616 |
if not exists(REGISTRY_DIR): |
|
617 |
os.makedirs(REGISTRY_DIR) |
|
3638
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
618 |
else: |
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
619 |
if CubicWebNoAppConfiguration.mode == 'user': |
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
620 |
REGISTRY_DIR = expanduser('~/etc/cubicweb.d/') |
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
621 |
RUNTIME_DIR = tempfile.gettempdir() |
3640 | 622 |
INSTANCES_DATA_DIR = REGISTRY_DIR |
3638
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
623 |
else: #mode = 'system' |
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
624 |
REGISTRY_DIR = '/etc/cubicweb.d/' |
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
625 |
RUNTIME_DIR = '/var/run/cubicweb/' |
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
626 |
INSTANCES_DATA_DIR = '/var/lib/cubicweb/instances/' |
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
627 |
if CWDEV: |
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
628 |
MIGRATION_DIR = join(CW_SOFTWARE_ROOT, 'misc', 'migration') |
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
629 |
else: |
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
630 |
MIGRATION_DIR = '/usr/share/cubicweb/migration/' |
0 | 631 |
|
632 |
# for some commands (creation...) we don't want to initialize gettext |
|
633 |
set_language = True |
|
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
634 |
# set this to true to avoid false error message while creating an instance |
0 | 635 |
creating = False |
2473
490f88fb99b6
new distinguish repairing/creating from regular start.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2449
diff
changeset
|
636 |
# set this to true to allow somethings which would'nt be possible |
490f88fb99b6
new distinguish repairing/creating from regular start.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2449
diff
changeset
|
637 |
repairing = False |
1446 | 638 |
|
0 | 639 |
options = CubicWebNoAppConfiguration.options + ( |
640 |
('log-file', |
|
641 |
{'type' : 'string', |
|
642 |
'default': Method('default_log_file'), |
|
643 |
'help': 'file where output logs should be written', |
|
644 |
'group': 'main', 'inputlevel': 2, |
|
645 |
}), |
|
646 |
# email configuration |
|
647 |
('smtp-host', |
|
648 |
{'type' : 'string', |
|
649 |
'default': 'mail', |
|
650 |
'help': 'hostname of the SMTP mail server', |
|
651 |
'group': 'email', 'inputlevel': 1, |
|
652 |
}), |
|
653 |
('smtp-port', |
|
654 |
{'type' : 'int', |
|
655 |
'default': 25, |
|
656 |
'help': 'listening port of the SMTP mail server', |
|
657 |
'group': 'email', 'inputlevel': 1, |
|
658 |
}), |
|
659 |
('sender-name', |
|
660 |
{'type' : 'string', |
|
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
661 |
'default': Method('default_instance_id'), |
0 | 662 |
'help': 'name used as HELO name for outgoing emails from the \ |
663 |
repository.', |
|
664 |
'group': 'email', 'inputlevel': 2, |
|
665 |
}), |
|
666 |
('sender-addr', |
|
667 |
{'type' : 'string', |
|
2351
dddee537e4d5
don't use internal address
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2267
diff
changeset
|
668 |
'default': 'cubicweb@mydomain.com', |
0 | 669 |
'help': 'email address used as HELO address for outgoing emails from \ |
670 |
the repository', |
|
671 |
'group': 'email', 'inputlevel': 1, |
|
672 |
}), |
|
673 |
) |
|
674 |
||
675 |
@classmethod |
|
676 |
def runtime_dir(cls): |
|
677 |
"""run time directory for pid file...""" |
|
2445
6f065b366d14
rename environment variables
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2351
diff
changeset
|
678 |
return env_path('CW_RUNTIME_DIR', cls.RUNTIME_DIR, 'run time') |
1446 | 679 |
|
0 | 680 |
@classmethod |
681 |
def registry_dir(cls): |
|
682 |
"""return the control directory""" |
|
2445
6f065b366d14
rename environment variables
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2351
diff
changeset
|
683 |
return env_path('CW_INSTANCES_DIR', cls.REGISTRY_DIR, 'registry') |
0 | 684 |
|
685 |
@classmethod |
|
686 |
def instance_data_dir(cls): |
|
687 |
"""return the instance data directory""" |
|
3638
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
688 |
return env_path('CW_INSTANCES_DATA_DIR', cls.INSTANCES_DATA_DIR, |
0 | 689 |
'additional data') |
1446 | 690 |
|
0 | 691 |
@classmethod |
692 |
def migration_scripts_dir(cls): |
|
693 |
"""cubicweb migration scripts directory""" |
|
2445
6f065b366d14
rename environment variables
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2351
diff
changeset
|
694 |
return env_path('CW_MIGRATION_DIR', cls.MIGRATION_DIR, 'migration') |
0 | 695 |
|
696 |
@classmethod |
|
697 |
def config_for(cls, appid, config=None): |
|
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
698 |
"""return a configuration instance for the given instance identifier |
0 | 699 |
""" |
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
700 |
config = config or guess_configuration(cls.instance_home(appid)) |
0 | 701 |
configcls = configuration_cls(config) |
702 |
return configcls(appid) |
|
1446 | 703 |
|
0 | 704 |
@classmethod |
705 |
def possible_configurations(cls, appid): |
|
706 |
"""return the name of possible configurations for the given |
|
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
707 |
instance id |
0 | 708 |
""" |
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
709 |
home = cls.instance_home(appid) |
0 | 710 |
return possible_configurations(home) |
1446 | 711 |
|
0 | 712 |
@classmethod |
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
713 |
def instance_home(cls, appid): |
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
714 |
"""return the home directory of the instance with the given |
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
715 |
instance id |
0 | 716 |
""" |
717 |
home = join(cls.registry_dir(), appid) |
|
718 |
if not exists(home): |
|
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
719 |
raise ConfigurationError('no such instance %s (check it exists with "cubicweb-ctl list")' % appid) |
0 | 720 |
return home |
721 |
||
722 |
MODES = ('common', 'repository', 'Any', 'web') |
|
723 |
MCOMPAT = {'all-in-one': MODES, |
|
724 |
'repository': ('common', 'repository', 'Any'), |
|
725 |
'twisted' : ('common', 'web'),} |
|
726 |
@classmethod |
|
727 |
def accept_mode(cls, mode): |
|
728 |
#assert mode in cls.MODES, mode |
|
729 |
return mode in cls.MCOMPAT[cls.name] |
|
1446 | 730 |
|
0 | 731 |
# default configuration methods ########################################### |
1446 | 732 |
|
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
733 |
def default_instance_id(self): |
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
734 |
"""return the instance identifier, useful for option which need this |
0 | 735 |
as default value |
736 |
""" |
|
737 |
return self.appid |
|
738 |
||
739 |
def default_log_file(self): |
|
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
740 |
"""return default path to the log file of the instance'server""" |
3638
648d6dbec630
system/user modes + CWDEV instead of installed/dev mixed modes. Fix behaviour when setting CW_MODE explicitly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3564
diff
changeset
|
741 |
if self.mode == 'user': |
3115
29262ba01464
minimal steps to have cw running on windows
Aurélien Campéas
parents:
3059
diff
changeset
|
742 |
basepath = join(tempfile.gettempdir(), '%s-%s' % (basename(self.appid), self.name)) |
0 | 743 |
path = basepath + '.log' |
744 |
i = 1 |
|
745 |
while exists(path) and i < 100: # arbitrary limit to avoid infinite loop |
|
746 |
try: |
|
747 |
file(path, 'a') |
|
748 |
break |
|
749 |
except IOError: |
|
750 |
path = '%s-%s.log' % (basepath, i) |
|
751 |
i += 1 |
|
752 |
return path |
|
753 |
return '/var/log/cubicweb/%s-%s.log' % (self.appid, self.name) |
|
1446 | 754 |
|
0 | 755 |
def default_pid_file(self): |
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
756 |
"""return default path to the pid file of the instance'server""" |
0 | 757 |
return join(self.runtime_dir(), '%s-%s.pid' % (self.appid, self.name)) |
1446 | 758 |
|
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
759 |
# instance methods used to get instance specific resources ############# |
1446 | 760 |
|
0 | 761 |
def __init__(self, appid): |
762 |
self.appid = appid |
|
763 |
CubicWebNoAppConfiguration.__init__(self) |
|
764 |
self._cubes = None |
|
765 |
self._site_loaded = set() |
|
766 |
self.load_file_configuration(self.main_config_file()) |
|
767 |
||
768 |
def adjust_sys_path(self): |
|
769 |
CubicWebNoAppConfiguration.adjust_sys_path(self) |
|
770 |
# adding apphome to python path is not usually necessary in production |
|
771 |
# environments, but necessary for tests |
|
772 |
if self.apphome and not self.apphome in sys.path: |
|
773 |
sys.path.insert(0, self.apphome) |
|
774 |
||
775 |
@property |
|
776 |
def apphome(self): |
|
777 |
return join(self.registry_dir(), self.appid) |
|
1446 | 778 |
|
0 | 779 |
@property |
780 |
def appdatahome(self): |
|
781 |
return join(self.instance_data_dir(), self.appid) |
|
1446 | 782 |
|
0 | 783 |
def init_cubes(self, cubes): |
1681
1586c0ed9a92
nicer assertion message
Graziella Toutoungis <graziella.toutoungis@logilab.fr>
parents:
1521
diff
changeset
|
784 |
assert self._cubes is None, self._cubes |
0 | 785 |
self._cubes = self.reorder_cubes(cubes) |
786 |
# load cubes'__init__.py file first |
|
787 |
for cube in cubes: |
|
788 |
__import__('cubes.%s' % cube) |
|
789 |
self.load_site_cubicweb() |
|
790 |
# reload config file in cases options are defined in cubes __init__ |
|
791 |
# or site_cubicweb files |
|
792 |
self.load_file_configuration(self.main_config_file()) |
|
793 |
# configuration initialization hook |
|
794 |
self.load_configuration() |
|
1446 | 795 |
|
0 | 796 |
def cubes(self): |
797 |
"""return the list of cubes used by this instance |
|
798 |
||
799 |
result is ordered from the top level cubes to inner dependencies |
|
800 |
cubes |
|
801 |
""" |
|
802 |
assert self._cubes is not None |
|
803 |
return self._cubes |
|
1446 | 804 |
|
0 | 805 |
def cubes_path(self): |
806 |
"""return the list of path to cubes used by this instance, from outer |
|
807 |
most to inner most cubes |
|
808 |
""" |
|
809 |
return [self.cube_dir(p) for p in self.cubes()] |
|
810 |
||
811 |
def add_cubes(self, cubes): |
|
812 |
"""add given cubes to the list of used cubes""" |
|
813 |
if not isinstance(cubes, list): |
|
814 |
cubes = list(cubes) |
|
815 |
self._cubes = self.reorder_cubes(list(self._cubes) + cubes) |
|
1446 | 816 |
|
0 | 817 |
def main_config_file(self): |
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
818 |
"""return instance's control configuration file""" |
0 | 819 |
return join(self.apphome, '%s.conf' % self.name) |
1446 | 820 |
|
0 | 821 |
def save(self): |
822 |
"""write down current configuration""" |
|
823 |
self.generate_config(open(self.main_config_file(), 'w')) |
|
824 |
||
825 |
@cached |
|
826 |
def instance_md5_version(self): |
|
827 |
import md5 |
|
828 |
infos = [] |
|
829 |
for pkg in self.cubes(): |
|
830 |
version = self.cube_version(pkg) |
|
831 |
infos.append('%s-%s' % (pkg, version)) |
|
832 |
return md5.new(';'.join(infos)).hexdigest() |
|
1446 | 833 |
|
0 | 834 |
def load_site_cubicweb(self): |
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
835 |
"""load instance's specific site_cubicweb file""" |
0 | 836 |
for path in reversed([self.apphome] + self.cubes_path()): |
837 |
sitefile = join(path, 'site_cubicweb.py') |
|
838 |
if exists(sitefile) and not sitefile in self._site_loaded: |
|
839 |
self._load_site_cubicweb(sitefile) |
|
840 |
self._site_loaded.add(sitefile) |
|
841 |
else: |
|
842 |
sitefile = join(path, 'site_erudi.py') |
|
843 |
if exists(sitefile) and not sitefile in self._site_loaded: |
|
844 |
self._load_site_cubicweb(sitefile) |
|
845 |
self._site_loaded.add(sitefile) |
|
846 |
self.warning('site_erudi.py is deprecated, should be renamed to site_cubicweb.py') |
|
1446 | 847 |
|
0 | 848 |
def _load_site_cubicweb(self, sitefile): |
2220
64aace08ae2f
add __file__ to context before loading site_cubicweb.py
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
849 |
context = {'__file__': sitefile} |
0 | 850 |
execfile(sitefile, context, context) |
851 |
self.info('%s loaded', sitefile) |
|
852 |
# cube specific options |
|
853 |
if context.get('options'): |
|
854 |
self.register_options(context['options']) |
|
855 |
self.load_defaults() |
|
1446 | 856 |
|
0 | 857 |
def load_configuration(self): |
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
858 |
"""load instance's configuration files""" |
0 | 859 |
super(CubicWebConfiguration, self).load_configuration() |
860 |
if self.apphome and self.set_language: |
|
861 |
# init gettext |
|
862 |
self._set_language() |
|
1446 | 863 |
|
0 | 864 |
def init_log(self, logthreshold=None, debug=False, force=False): |
865 |
"""init the log service""" |
|
866 |
if not force and hasattr(self, '_logging_initialized'): |
|
867 |
return |
|
868 |
self._logging_initialized = True |
|
869 |
CubicWebNoAppConfiguration.init_log(self, logthreshold, debug, |
|
2654
6512522860aa
[twisted] don't use twistd anymore, all-in-one.py file is needed anymore
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2613
diff
changeset
|
870 |
logfile=self.get('log-file')) |
0 | 871 |
# read a config file if it exists |
872 |
logconfig = join(self.apphome, 'logging.conf') |
|
873 |
if exists(logconfig): |
|
874 |
logging.fileConfig(logconfig) |
|
875 |
||
876 |
def available_languages(self, *args): |
|
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
877 |
"""return available translation for an instance, by looking for |
0 | 878 |
compiled catalog |
879 |
||
880 |
take *args to be usable as a vocabulary method |
|
881 |
""" |
|
882 |
from glob import glob |
|
883 |
yield 'en' # ensure 'en' is yielded even if no .mo found |
|
884 |
for path in glob(join(self.apphome, 'i18n', |
|
3118 | 885 |
'*', 'LC_MESSAGES')): |
886 |
lang = path.split(os.sep)[-2] |
|
0 | 887 |
if lang != 'en': |
888 |
yield lang |
|
1446 | 889 |
|
0 | 890 |
def _set_language(self): |
891 |
"""set language for gettext""" |
|
892 |
from gettext import translation |
|
893 |
path = join(self.apphome, 'i18n') |
|
894 |
for language in self.available_languages(): |
|
895 |
self.info("loading language %s", language) |
|
896 |
try: |
|
897 |
tr = translation('cubicweb', path, languages=[language]) |
|
3275
5247789df541
[gettext] provide GNU contexts to avoid translations ambiguities
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3270
diff
changeset
|
898 |
self.translations[language] = (tr.ugettext, tr.upgettext) |
0 | 899 |
except (ImportError, AttributeError, IOError): |
900 |
self.exception('localisation support error for language %s', |
|
1446 | 901 |
language) |
902 |
||
0 | 903 |
def vregistry_path(self): |
904 |
"""return a list of files or directories where the registry will look |
|
905 |
for application objects |
|
906 |
""" |
|
907 |
templpath = list(reversed(self.cubes_path())) |
|
908 |
if self.apphome: # may be unset in tests |
|
909 |
templpath.append(self.apphome) |
|
910 |
return self.build_vregistry_path(templpath) |
|
911 |
||
912 |
def set_sources_mode(self, sources): |
|
913 |
if not 'all' in sources: |
|
914 |
print 'warning: ignoring specified sources, requires a repository '\ |
|
915 |
'configuration' |
|
1446 | 916 |
|
0 | 917 |
def migration_handler(self): |
918 |
"""return a migration handler instance""" |
|
919 |
from cubicweb.common.migration import MigrationHelper |
|
920 |
return MigrationHelper(self, verbosity=self.verbosity) |
|
921 |
||
922 |
def i18ncompile(self, langs=None): |
|
923 |
from cubicweb.common import i18n |
|
924 |
if langs is None: |
|
925 |
langs = self.available_languages() |
|
926 |
i18ndir = join(self.apphome, 'i18n') |
|
927 |
if not exists(i18ndir): |
|
928 |
create_dir(i18ndir) |
|
929 |
sourcedirs = [join(path, 'i18n') for path in self.cubes_path()] |
|
930 |
sourcedirs.append(self.i18n_lib_dir()) |
|
931 |
return i18n.compile_i18n_catalogs(sourcedirs, i18ndir, langs) |
|
932 |
||
2221
d9b85a7b0bdd
create sendmails method on cwconfig, use it in SendMailOp
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2220
diff
changeset
|
933 |
def sendmails(self, msgs): |
d9b85a7b0bdd
create sendmails method on cwconfig, use it in SendMailOp
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2220
diff
changeset
|
934 |
"""msgs: list of 2-uple (message object, recipients)""" |
d9b85a7b0bdd
create sendmails method on cwconfig, use it in SendMailOp
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2220
diff
changeset
|
935 |
server, port = self['smtp-host'], self['smtp-port'] |
d9b85a7b0bdd
create sendmails method on cwconfig, use it in SendMailOp
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2220
diff
changeset
|
936 |
SMTP_LOCK.acquire() |
d9b85a7b0bdd
create sendmails method on cwconfig, use it in SendMailOp
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2220
diff
changeset
|
937 |
try: |
d9b85a7b0bdd
create sendmails method on cwconfig, use it in SendMailOp
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2220
diff
changeset
|
938 |
try: |
d9b85a7b0bdd
create sendmails method on cwconfig, use it in SendMailOp
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2220
diff
changeset
|
939 |
smtp = SMTP(server, port) |
d9b85a7b0bdd
create sendmails method on cwconfig, use it in SendMailOp
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2220
diff
changeset
|
940 |
except Exception, ex: |
d9b85a7b0bdd
create sendmails method on cwconfig, use it in SendMailOp
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2220
diff
changeset
|
941 |
self.exception("can't connect to smtp server %s:%s (%s)", |
d9b85a7b0bdd
create sendmails method on cwconfig, use it in SendMailOp
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2220
diff
changeset
|
942 |
server, port, ex) |
d9b85a7b0bdd
create sendmails method on cwconfig, use it in SendMailOp
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2220
diff
changeset
|
943 |
return |
d9b85a7b0bdd
create sendmails method on cwconfig, use it in SendMailOp
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2220
diff
changeset
|
944 |
heloaddr = '%s <%s>' % (self['sender-name'], self['sender-addr']) |
d9b85a7b0bdd
create sendmails method on cwconfig, use it in SendMailOp
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2220
diff
changeset
|
945 |
for msg, recipients in msgs: |
d9b85a7b0bdd
create sendmails method on cwconfig, use it in SendMailOp
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2220
diff
changeset
|
946 |
try: |
d9b85a7b0bdd
create sendmails method on cwconfig, use it in SendMailOp
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2220
diff
changeset
|
947 |
smtp.sendmail(heloaddr, recipients, msg.as_string()) |
d9b85a7b0bdd
create sendmails method on cwconfig, use it in SendMailOp
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2220
diff
changeset
|
948 |
except Exception, ex: |
d9b85a7b0bdd
create sendmails method on cwconfig, use it in SendMailOp
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2220
diff
changeset
|
949 |
self.exception("error sending mail to %s (%s)", |
d9b85a7b0bdd
create sendmails method on cwconfig, use it in SendMailOp
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2220
diff
changeset
|
950 |
recipients, ex) |
d9b85a7b0bdd
create sendmails method on cwconfig, use it in SendMailOp
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2220
diff
changeset
|
951 |
smtp.close() |
d9b85a7b0bdd
create sendmails method on cwconfig, use it in SendMailOp
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2220
diff
changeset
|
952 |
finally: |
d9b85a7b0bdd
create sendmails method on cwconfig, use it in SendMailOp
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2220
diff
changeset
|
953 |
SMTP_LOCK.release() |
d9b85a7b0bdd
create sendmails method on cwconfig, use it in SendMailOp
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2220
diff
changeset
|
954 |
|
180
8bcebdb5f55d
code moved to logilab.common.logging_ext
Sylvain Thenault <sylvain.thenault@logilab.fr>
parents:
140
diff
changeset
|
955 |
set_log_methods(CubicWebConfiguration, logging.getLogger('cubicweb.configuration')) |
1446 | 956 |
|
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
957 |
# alias to get a configuration instance from an instance id |
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
958 |
instance_configuration = CubicWebConfiguration.config_for |
2613
5e19c2bb370e
R [all] logilab.common 0.44 provides only deprecated
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2476
diff
changeset
|
959 |
application_configuration = deprecated('use instance_configuration')(instance_configuration) |