author | Sylvain Thénault <sylvain.thenault@logilab.fr> |
Wed, 17 Feb 2010 20:22:12 +0100 | |
branch | stable |
changeset 4619 | f4254586e867 |
parent 4252 | 6c4f109c2b03 |
child 4688 | 6ea3a3b21c6a |
permissions | -rw-r--r-- |
0 | 1 |
"""cubicweb on appengine plugins for cubicweb-ctl |
2 |
||
3 |
:organization: Logilab |
|
4212
ab6573088b4a
update copyright: welcome 2010
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3273
diff
changeset
|
4 |
:copyright: 2008-2010 LOGILAB S.A. (Paris, FRANCE), license is LGPL v2. |
0 | 5 |
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr |
1977
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1802
diff
changeset
|
6 |
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses |
0 | 7 |
""" |
8 |
__docformat__ = "restructuredtext en" |
|
9 |
||
1132 | 10 |
from os.path import exists, join, split, basename, normpath, abspath |
11 |
from logilab.common.clcommands import register_commands |
|
0 | 12 |
|
1138
22f634977c95
make pylint happy, fix some bugs on the way
sylvain.thenault@logilab.fr
parents:
1133
diff
changeset
|
13 |
from cubicweb import CW_SOFTWARE_ROOT, BadCommandUsage |
22f634977c95
make pylint happy, fix some bugs on the way
sylvain.thenault@logilab.fr
parents:
1133
diff
changeset
|
14 |
from cubicweb.toolsutils import (Command, copy_skeleton, create_symlink, |
22f634977c95
make pylint happy, fix some bugs on the way
sylvain.thenault@logilab.fr
parents:
1133
diff
changeset
|
15 |
create_dir) |
0 | 16 |
from cubicweb.cwconfig import CubicWebConfiguration |
17 |
||
18 |
from logilab import common as lgc |
|
19 |
from logilab import constraint as lgcstr |
|
20 |
from logilab import mtconverter as lgmtc |
|
3273 | 21 |
import rql, yams, yapps, simplejson, docutils, roman |
0 | 22 |
|
3270
ae43a0ddc1d9
warning -> critical, also allow goa to work without vobject
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
3240
diff
changeset
|
23 |
SLINK_DIRECTORIES = [ |
0 | 24 |
(lgc.__path__[0], 'logilab/common'), |
25 |
(lgmtc.__path__[0], 'logilab/mtconverter'), |
|
26 |
(lgcstr.__path__[0], 'logilab/constraint'), |
|
27 |
(rql.__path__[0], 'rql'), |
|
28 |
(simplejson.__path__[0], 'simplejson'), |
|
29 |
(yams.__path__[0], 'yams'), |
|
30 |
(yapps.__path__[0], 'yapps'), |
|
31 |
(docutils.__path__[0], 'docutils'), |
|
32 |
(roman.__file__.replace('.pyc', '.py'), 'roman.py'), |
|
33 |
||
34 |
(join(CW_SOFTWARE_ROOT, 'embedded', 'mx'), 'mx'), |
|
35 |
('/usr/share/fckeditor/', 'fckeditor'), |
|
36 |
||
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1432
diff
changeset
|
37 |
(join(CW_SOFTWARE_ROOT, 'web', 'data'), join('cubes', 'shared', 'data')), |
0 | 38 |
(join(CW_SOFTWARE_ROOT, 'web', 'wdoc'), join('cubes', 'shared', 'wdoc')), |
39 |
(join(CW_SOFTWARE_ROOT, 'i18n'), join('cubes', 'shared', 'i18n')), |
|
40 |
(join(CW_SOFTWARE_ROOT, 'goa', 'tools'), 'tools'), |
|
41 |
(join(CW_SOFTWARE_ROOT, 'goa', 'bin'), 'bin'), |
|
3270
ae43a0ddc1d9
warning -> critical, also allow goa to work without vobject
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
3240
diff
changeset
|
42 |
] |
ae43a0ddc1d9
warning -> critical, also allow goa to work without vobject
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
3240
diff
changeset
|
43 |
|
ae43a0ddc1d9
warning -> critical, also allow goa to work without vobject
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
3240
diff
changeset
|
44 |
try: |
ae43a0ddc1d9
warning -> critical, also allow goa to work without vobject
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
3240
diff
changeset
|
45 |
import dateutil |
ae43a0ddc1d9
warning -> critical, also allow goa to work without vobject
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
3240
diff
changeset
|
46 |
import vobject |
ae43a0ddc1d9
warning -> critical, also allow goa to work without vobject
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
3240
diff
changeset
|
47 |
SLINK_DIRECTORIES.extend([ (dateutil.__path__[0], 'dateutil'), |
ae43a0ddc1d9
warning -> critical, also allow goa to work without vobject
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
3240
diff
changeset
|
48 |
(vobject.__path__[0], 'vobject') ] ) |
ae43a0ddc1d9
warning -> critical, also allow goa to work without vobject
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
3240
diff
changeset
|
49 |
except ImportError: |
ae43a0ddc1d9
warning -> critical, also allow goa to work without vobject
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
3240
diff
changeset
|
50 |
pass |
0 | 51 |
|
52 |
COPY_CW_FILES = ( |
|
53 |
'__init__.py', |
|
54 |
'__pkginfo__.py', |
|
55 |
'_exceptions.py', |
|
812 | 56 |
'appobject.py', |
0 | 57 |
'dbapi.py', |
58 |
'cwvreg.py', |
|
59 |
'cwconfig.py', |
|
713
5adb6d8e5fa7
update imports of "cubicweb.common.entity" and use the new module path "cubicweb.entity"
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
692
diff
changeset
|
60 |
'entity.py', |
0 | 61 |
'interfaces.py', |
4021
280c910c8710
move i18n / migration modules from cw.common to cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3293
diff
changeset
|
62 |
'i18n.py', |
4023
eae23c40627a
drop common subpackage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4021
diff
changeset
|
63 |
'mail.py', |
4021
280c910c8710
move i18n / migration modules from cw.common to cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3293
diff
changeset
|
64 |
'migration.py', |
4023
eae23c40627a
drop common subpackage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4021
diff
changeset
|
65 |
'mixins.py', |
eae23c40627a
drop common subpackage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4021
diff
changeset
|
66 |
'mttransforms.py', |
3240
8604a15995d1
refactor so that rql rewriter may be used outside the server. Enhance it to be usable for RRQLExpression as well
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
67 |
'rqlrewrite.py', |
0 | 68 |
'rset.py', |
69 |
'schema.py', |
|
70 |
'schemaviewer.py', |
|
692
800592b8d39b
replace deprecated cubicweb.common.selectors by its new module path (cubicweb.selectors)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
11
diff
changeset
|
71 |
'selectors.py', |
4023
eae23c40627a
drop common subpackage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4021
diff
changeset
|
72 |
'uilib.py', |
812 | 73 |
'utils.py', |
0 | 74 |
'vregistry.py', |
812 | 75 |
'view.py', |
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1432
diff
changeset
|
76 |
|
812 | 77 |
'ext/html4zope.py', |
78 |
'ext/rest.py', |
|
0 | 79 |
|
80 |
'server/hookhelper.py', |
|
81 |
'server/hooksmanager.py', |
|
82 |
'server/hooks.py', |
|
83 |
'server/migractions.py', |
|
84 |
'server/pool.py', |
|
85 |
'server/querier.py', |
|
86 |
'server/repository.py', |
|
87 |
'server/securityhooks.py', |
|
88 |
'server/session.py', |
|
89 |
'server/serverconfig.py', |
|
90 |
'server/ssplanner.py', |
|
91 |
'server/utils.py', |
|
92 |
'server/sources/__init__.py', |
|
93 |
||
94 |
'entities/__init__.py', |
|
95 |
'entities/authobjs.py', |
|
96 |
'entities/lib.py', |
|
97 |
'entities/schemaobjs.py', |
|
11
db9c539e0b1b
Add module wfobjs to enable workflow in gae.
Sandrine Ribeau <sandrine.ribeau@logilab.fr>
parents:
3
diff
changeset
|
98 |
'entities/wfobjs.py', |
0 | 99 |
|
100 |
'sobjects/__init__.py', |
|
101 |
'sobjects/notification.py', |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1432
diff
changeset
|
102 |
|
0 | 103 |
# XXX would be necessary for goa.testlib but require more stuff to be added |
104 |
# such as server.serverconfig and so on (check devtools.__init__) |
|
105 |
# 'devtools/__init__.py', |
|
106 |
# 'devtools/fake.py', |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1432
diff
changeset
|
107 |
|
0 | 108 |
'web/__init__.py', |
109 |
'web/_exceptions.py', |
|
110 |
'web/action.py', |
|
111 |
'web/application.py', |
|
112 |
'web/box.py', |
|
113 |
'web/component.py', |
|
114 |
'web/controller.py', |
|
115 |
'web/form.py', |
|
116 |
'web/htmlwidgets.py', |
|
117 |
'web/httpcache.py', |
|
118 |
'web/request.py', |
|
119 |
'web/webconfig.py', |
|
120 |
||
121 |
'web/views/__init__.py', |
|
122 |
'web/views/actions.py', |
|
123 |
'web/views/basecomponents.py', |
|
124 |
'web/views/basecontrollers.py', |
|
125 |
'web/views/baseforms.py', |
|
126 |
'web/views/basetemplates.py', |
|
127 |
'web/views/baseviews.py', |
|
128 |
'web/views/boxes.py', |
|
129 |
'web/views/calendar.py', |
|
130 |
'web/views/error.py', |
|
131 |
'web/views/editcontroller.py', |
|
132 |
'web/views/ibreadcrumbs.py', |
|
133 |
'web/views/idownloadable.py', |
|
134 |
'web/views/magicsearch.py', |
|
135 |
'web/views/management.py', |
|
136 |
'web/views/navigation.py', |
|
137 |
'web/views/startup.py', |
|
11
db9c539e0b1b
Add module wfobjs to enable workflow in gae.
Sandrine Ribeau <sandrine.ribeau@logilab.fr>
parents:
3
diff
changeset
|
138 |
'web/views/vcard.py', |
0 | 139 |
'web/views/wdoc.py', |
140 |
'web/views/urlpublishing.py', |
|
141 |
'web/views/urlrewrite.py', |
|
142 |
'web/views/xbel.py', |
|
143 |
||
144 |
'wsgi/__init__.py', |
|
145 |
'wsgi/handler.py', |
|
146 |
'wsgi/request.py', |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1432
diff
changeset
|
147 |
|
0 | 148 |
'goa/__init__.py', |
149 |
'goa/db.py', |
|
150 |
'goa/dbinit.py', |
|
151 |
'goa/dbmyams.py', |
|
152 |
'goa/goaconfig.py', |
|
153 |
'goa/goavreg.py', |
|
154 |
'goa/gaesource.py', |
|
155 |
'goa/rqlinterpreter.py', |
|
156 |
'goa/appobjects/__init__.py', |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1432
diff
changeset
|
157 |
'goa/appobjects/components.py', |
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1432
diff
changeset
|
158 |
'goa/appobjects/dbmgmt.py', |
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1432
diff
changeset
|
159 |
'goa/appobjects/gauthservice.py', |
0 | 160 |
'goa/appobjects/sessions.py', |
161 |
||
162 |
'schemas/bootstrap.py', |
|
163 |
'schemas/base.py', |
|
164 |
) |
|
165 |
||
166 |
OVERRIDEN_FILES = ( |
|
167 |
('toolsutils.py', 'toolsutils.py'), |
|
4023
eae23c40627a
drop common subpackage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4021
diff
changeset
|
168 |
('mttransforms.py', 'mttransforms.py'), |
0 | 169 |
('server__init__.py', 'server/__init__.py'), |
170 |
('rqlannotation.py', 'server/rqlannotation.py'), |
|
171 |
) |
|
172 |
||
173 |
||
174 |
def create_init_file(pkgdir, pkgname): |
|
175 |
open(join(pkgdir, '__init__.py'), 'w').write('"""%s pkg"""' % pkgname) |
|
176 |
||
177 |
||
178 |
class NewGoogleAppCommand(Command): |
|
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
179 |
"""Create a new google appengine instance. |
0 | 180 |
|
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
181 |
<instance directory> |
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
182 |
the path to the appengine instance directory |
0 | 183 |
""" |
184 |
name = 'newgapp' |
|
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
185 |
arguments = '<instance directory>' |
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1432
diff
changeset
|
186 |
|
0 | 187 |
def run(self, args): |
188 |
if len(args) != 1: |
|
189 |
raise BadCommandUsage("exactly one argument is expected") |
|
190 |
appldir, = args |
|
191 |
appldir = normpath(abspath(appldir)) |
|
192 |
appid = basename(appldir) |
|
193 |
context = {'appname': appid} |
|
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
194 |
# goa instance'skeleton |
0 | 195 |
copy_skeleton(join(CW_SOFTWARE_ROOT, 'goa', 'skel'), |
196 |
appldir, context, askconfirm=True) |
|
197 |
# cubicweb core dependancies |
|
198 |
for directory, subdirectory in SLINK_DIRECTORIES: |
|
199 |
subdirectory = join(appldir, subdirectory) |
|
200 |
if not exists(split(subdirectory)[0]): |
|
201 |
create_dir(split(subdirectory)[0]) |
|
202 |
create_symlink(directory, join(appldir, subdirectory)) |
|
203 |
create_init_file(join(appldir, 'logilab'), 'logilab') |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1432
diff
changeset
|
204 |
# copy supported part of cubicweb |
0 | 205 |
create_dir(join(appldir, 'cubicweb')) |
206 |
for fpath in COPY_CW_FILES: |
|
207 |
target = join(appldir, 'cubicweb', fpath) |
|
208 |
if not exists(split(target)[0]): |
|
209 |
create_dir(split(target)[0]) |
|
210 |
create_symlink(join(CW_SOFTWARE_ROOT, fpath), target) |
|
211 |
# overriden files |
|
212 |
for fpath, subfpath in OVERRIDEN_FILES: |
|
213 |
create_symlink(join(CW_SOFTWARE_ROOT, 'goa', 'overrides', fpath), |
|
214 |
join(appldir, 'cubicweb', subfpath)) |
|
215 |
# link every supported components |
|
3
512e9bd0685a
Renaming error in symlink creation for GOA.
Sandrine Ribeau <sandrine.ribeau@logilab.fr>
parents:
0
diff
changeset
|
216 |
packagesdir = join(appldir, 'cubes') |
11
db9c539e0b1b
Add module wfobjs to enable workflow in gae.
Sandrine Ribeau <sandrine.ribeau@logilab.fr>
parents:
3
diff
changeset
|
217 |
create_init_file(join(appldir, 'cubes'), 'cubes') |
1015
b5fdad9208f8
search for cubes in a list of directories
sylvain.thenault@logilab.fr
parents:
11
diff
changeset
|
218 |
for include in ('addressbook','basket', 'blog','folder', |
b5fdad9208f8
search for cubes in a list of directories
sylvain.thenault@logilab.fr
parents:
11
diff
changeset
|
219 |
'tag', 'comment', 'file', 'link', |
3
512e9bd0685a
Renaming error in symlink creation for GOA.
Sandrine Ribeau <sandrine.ribeau@logilab.fr>
parents:
0
diff
changeset
|
220 |
'mailinglist', 'person', 'task', 'zone', |
0 | 221 |
): |
1015
b5fdad9208f8
search for cubes in a list of directories
sylvain.thenault@logilab.fr
parents:
11
diff
changeset
|
222 |
create_symlink(CubicWebConfiguration.cube_dir(include), |
b5fdad9208f8
search for cubes in a list of directories
sylvain.thenault@logilab.fr
parents:
11
diff
changeset
|
223 |
join(packagesdir, include)) |
0 | 224 |
# generate sample config |
225 |
from cubicweb.goa.goaconfig import GAEConfiguration |
|
4021
280c910c8710
move i18n / migration modules from cw.common to cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3293
diff
changeset
|
226 |
from cubicweb.migration import MigrationHelper |
0 | 227 |
config = GAEConfiguration(appid, appldir) |
228 |
if exists(config.main_config_file()): |
|
229 |
mih = MigrationHelper(config) |
|
230 |
mih.rewrite_configuration() |
|
231 |
else: |
|
232 |
config.save() |
|
233 |
||
234 |
||
235 |
register_commands((NewGoogleAppCommand, |
|
236 |
)) |