author | Sylvain Thénault <sylvain.thenault@logilab.fr> |
Tue, 04 Aug 2009 18:46:59 +0200 | |
changeset 2686 | c700ace6ebfd |
parent 2682 | 0188a4a02403 |
child 2711 | 7aee3bd7a704 |
permissions | -rw-r--r-- |
0 | 1 |
"""cubicweb-ctl commands and command handlers specific to the server.serverconfig |
2 |
||
3 |
:organization: Logilab |
|
1977
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1912
diff
changeset
|
4 |
:copyright: 2001-2009 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:
1912
diff
changeset
|
6 |
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses |
0 | 7 |
""" |
2493
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
8 |
__docformat__ = 'restructuredtext en' |
0 | 9 |
|
1912
2b9432262240
[server] provide a new reset-admin-pwd command
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1682
diff
changeset
|
10 |
import sys |
0 | 11 |
import os |
12 |
||
2107
6c4a4c514ac2
add source to sources configuration when adding a cube defining a source
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2106
diff
changeset
|
13 |
from logilab.common.configuration import Configuration |
1132 | 14 |
from logilab.common.clcommands import register_commands, cmd_run, pop_arg |
2615
1ea41b7c0836
F [dialog] offer to create backup. refactor to use l.c.shellutils.ASK
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2507
diff
changeset
|
15 |
from logilab.common.shellutils import ASK |
0 | 16 |
|
2395
e3093fc12a00
[cw-ctl] improve dialog messages
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2394
diff
changeset
|
17 |
from cubicweb import AuthenticationError, ExecutionError, ConfigurationError, underline_title |
2615
1ea41b7c0836
F [dialog] offer to create backup. refactor to use l.c.shellutils.ASK
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2507
diff
changeset
|
18 |
from cubicweb.toolsutils import Command, CommandHandler |
2105
92ea410806fe
refactor sources configuration, add source to sources when using a cube defining
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1980
diff
changeset
|
19 |
from cubicweb.server import SOURCE_TYPES |
92ea410806fe
refactor sources configuration, add source to sources when using a cube defining
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1980
diff
changeset
|
20 |
from cubicweb.server.utils import ask_source_config |
2107
6c4a4c514ac2
add source to sources configuration when adding a cube defining a source
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2106
diff
changeset
|
21 |
from cubicweb.server.serverconfig import USER_OPTIONS, ServerConfiguration |
0 | 22 |
|
23 |
# utility functions ########################################################### |
|
24 |
||
136
ff51a18c66a3
ask less questions on instance creation
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
0
diff
changeset
|
25 |
def source_cnx(source, dbname=None, special_privs=False, verbose=True): |
0 | 26 |
"""open and return a connection to the system database defined in the |
27 |
given server.serverconfig |
|
28 |
""" |
|
29 |
from getpass import getpass |
|
30 |
from logilab.common.db import get_connection |
|
31 |
dbhost = source['db-host'] |
|
32 |
if dbname is None: |
|
33 |
dbname = source['db-name'] |
|
34 |
driver = source['db-driver'] |
|
2394
92bba46b853f
[cw-ctl] improve dialog messages
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2107
diff
changeset
|
35 |
print '-> connecting to %s database %s@%s' % (driver, dbname, dbhost or 'localhost'), |
136
ff51a18c66a3
ask less questions on instance creation
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
0
diff
changeset
|
36 |
if not verbose or (not special_privs and source.get('db-user')): |
0 | 37 |
user = source['db-user'] |
38 |
print 'as', user |
|
39 |
if source.get('db-password'): |
|
40 |
password = source['db-password'] |
|
41 |
else: |
|
42 |
password = getpass('password: ') |
|
43 |
else: |
|
44 |
print |
|
45 |
if special_privs: |
|
46 |
print 'WARNING' |
|
47 |
print 'the user will need the following special access rights on the database:' |
|
48 |
print special_privs |
|
49 |
print |
|
50 |
default_user = source.get('db-user', os.environ.get('USER', '')) |
|
2395
e3093fc12a00
[cw-ctl] improve dialog messages
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2394
diff
changeset
|
51 |
user = raw_input('Connect as user ? [%r]: ' % default_user) |
0 | 52 |
user = user or default_user |
53 |
if user == source.get('db-user') and source.get('db-password'): |
|
54 |
password = source['db-password'] |
|
55 |
else: |
|
56 |
password = getpass('password: ') |
|
57 |
return get_connection(driver, dbhost, dbname, user, password=password, |
|
58 |
port=source.get('db-port')) |
|
59 |
||
136
ff51a18c66a3
ask less questions on instance creation
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
0
diff
changeset
|
60 |
def system_source_cnx(source, dbms_system_base=False, |
ff51a18c66a3
ask less questions on instance creation
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
0
diff
changeset
|
61 |
special_privs='CREATE/DROP DATABASE', verbose=True): |
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
62 |
"""shortcut to get a connextion to the instance system database |
0 | 63 |
defined in the given config. If <dbms_system_base> is True, |
64 |
connect to the dbms system database instead (for task such as |
|
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
65 |
create/drop the instance database) |
0 | 66 |
""" |
67 |
if dbms_system_base: |
|
68 |
from logilab.common.adbh import get_adv_func_helper |
|
69 |
system_db = get_adv_func_helper(source['db-driver']).system_database() |
|
136
ff51a18c66a3
ask less questions on instance creation
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
0
diff
changeset
|
70 |
return source_cnx(source, system_db, special_privs=special_privs, verbose=verbose) |
ff51a18c66a3
ask less questions on instance creation
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
0
diff
changeset
|
71 |
return source_cnx(source, special_privs=special_privs, verbose=verbose) |
0 | 72 |
|
136
ff51a18c66a3
ask less questions on instance creation
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
0
diff
changeset
|
73 |
def _db_sys_cnx(source, what, db=None, user=None, verbose=True): |
0 | 74 |
"""return a connection on the RDMS system table (to create/drop a user |
75 |
or a database |
|
76 |
""" |
|
2417
18a14c23413c
should ensure lgc is configured to not use mx to avoid error if backend module is missing mx support
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2107
diff
changeset
|
77 |
import logilab.common as lgp |
0 | 78 |
from logilab.common.adbh import get_adv_func_helper |
2417
18a14c23413c
should ensure lgc is configured to not use mx to avoid error if backend module is missing mx support
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2107
diff
changeset
|
79 |
lgp.USE_MX_DATETIME = False |
0 | 80 |
special_privs = '' |
81 |
driver = source['db-driver'] |
|
82 |
helper = get_adv_func_helper(driver) |
|
83 |
if user is not None and helper.users_support: |
|
84 |
special_privs += '%s USER' % what |
|
85 |
if db is not None: |
|
86 |
special_privs += ' %s DATABASE' % what |
|
87 |
# connect on the dbms system base to create our base |
|
136
ff51a18c66a3
ask less questions on instance creation
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
0
diff
changeset
|
88 |
cnx = system_source_cnx(source, True, special_privs=special_privs, verbose=verbose) |
0 | 89 |
# disable autocommit (isolation_level(1)) because DROP and |
90 |
# CREATE DATABASE can't be executed in a transaction |
|
91 |
try: |
|
92 |
cnx.set_isolation_level(0) |
|
93 |
except AttributeError: |
|
94 |
# set_isolation_level() is psycopg specific |
|
95 |
pass |
|
96 |
return cnx |
|
1469 | 97 |
|
0 | 98 |
def repo_cnx(config): |
99 |
"""return a in-memory repository and a db api connection it""" |
|
100 |
from cubicweb.dbapi import in_memory_cnx |
|
101 |
from cubicweb.server.utils import manager_userpasswd |
|
102 |
try: |
|
103 |
login = config.sources()['admin']['login'] |
|
104 |
pwd = config.sources()['admin']['password'] |
|
105 |
except KeyError: |
|
106 |
login, pwd = manager_userpasswd() |
|
107 |
while True: |
|
108 |
try: |
|
109 |
return in_memory_cnx(config, login, pwd) |
|
110 |
except AuthenticationError: |
|
2394
92bba46b853f
[cw-ctl] improve dialog messages
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2107
diff
changeset
|
111 |
print '-> Error: wrong user/password.' |
1682
36bd5cba09de
must reset cubes before next authentication
Graziella Toutoungis <graziella.toutoungis@logilab.fr>
parents:
1469
diff
changeset
|
112 |
# reset cubes else we'll have an assertion error on next retry |
36bd5cba09de
must reset cubes before next authentication
Graziella Toutoungis <graziella.toutoungis@logilab.fr>
parents:
1469
diff
changeset
|
113 |
config._cubes = None |
0 | 114 |
login, pwd = manager_userpasswd() |
1469 | 115 |
|
0 | 116 |
# repository specific command handlers ######################################## |
117 |
||
118 |
class RepositoryCreateHandler(CommandHandler): |
|
119 |
cmdname = 'create' |
|
120 |
cfgname = 'repository' |
|
121 |
||
122 |
def bootstrap(self, cubes, inputlevel=0): |
|
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
123 |
"""create an instance by copying files from the given cube and by |
0 | 124 |
asking information necessary to build required configuration files |
125 |
""" |
|
126 |
config = self.config |
|
2395
e3093fc12a00
[cw-ctl] improve dialog messages
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2394
diff
changeset
|
127 |
print underline_title('Configuring the repository') |
0 | 128 |
config.input_config('email', inputlevel) |
129 |
if config.pyro_enabled(): |
|
130 |
config.input_config('pyro-server', inputlevel) |
|
2395
e3093fc12a00
[cw-ctl] improve dialog messages
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2394
diff
changeset
|
131 |
print '\n'+underline_title('Configuring the sources') |
0 | 132 |
sourcesfile = config.sources_file() |
133 |
sconfig = Configuration(options=SOURCE_TYPES['native'].options) |
|
134 |
sconfig.adapter = 'native' |
|
135 |
sconfig.input_config(inputlevel=inputlevel) |
|
136 |
sourcescfg = {'system': sconfig} |
|
2105
92ea410806fe
refactor sources configuration, add source to sources when using a cube defining
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1980
diff
changeset
|
137 |
for cube in cubes: |
92ea410806fe
refactor sources configuration, add source to sources when using a cube defining
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1980
diff
changeset
|
138 |
# if a source is named as the cube containing it, we need the |
92ea410806fe
refactor sources configuration, add source to sources when using a cube defining
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1980
diff
changeset
|
139 |
# source to use the cube, so add it. |
92ea410806fe
refactor sources configuration, add source to sources when using a cube defining
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1980
diff
changeset
|
140 |
if cube in SOURCE_TYPES: |
92ea410806fe
refactor sources configuration, add source to sources when using a cube defining
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1980
diff
changeset
|
141 |
sourcescfg[cube] = ask_source_config(cube, inputlevel) |
2395
e3093fc12a00
[cw-ctl] improve dialog messages
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2394
diff
changeset
|
142 |
print |
2615
1ea41b7c0836
F [dialog] offer to create backup. refactor to use l.c.shellutils.ASK
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2507
diff
changeset
|
143 |
while ASK.confirm('Enter another source ?', default_is_yes=False): |
2105
92ea410806fe
refactor sources configuration, add source to sources when using a cube defining
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1980
diff
changeset
|
144 |
available = sorted(stype for stype in SOURCE_TYPES |
92ea410806fe
refactor sources configuration, add source to sources when using a cube defining
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1980
diff
changeset
|
145 |
if not stype in cubes) |
92ea410806fe
refactor sources configuration, add source to sources when using a cube defining
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1980
diff
changeset
|
146 |
while True: |
92ea410806fe
refactor sources configuration, add source to sources when using a cube defining
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1980
diff
changeset
|
147 |
sourcetype = raw_input('source type (%s): ' % ', '.join(available)) |
92ea410806fe
refactor sources configuration, add source to sources when using a cube defining
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1980
diff
changeset
|
148 |
if sourcetype in available: |
92ea410806fe
refactor sources configuration, add source to sources when using a cube defining
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1980
diff
changeset
|
149 |
break |
2394
92bba46b853f
[cw-ctl] improve dialog messages
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2107
diff
changeset
|
150 |
print '-> unknown source type, use one of the available types.' |
2105
92ea410806fe
refactor sources configuration, add source to sources when using a cube defining
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1980
diff
changeset
|
151 |
while True: |
92ea410806fe
refactor sources configuration, add source to sources when using a cube defining
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1980
diff
changeset
|
152 |
sourceuri = raw_input('source uri: ').strip() |
2106
2295f2aba61d
check not using "admin" as uri (reserved)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2105
diff
changeset
|
153 |
if sourceuri != 'admin' and sourceuri not in sourcescfg: |
2105
92ea410806fe
refactor sources configuration, add source to sources when using a cube defining
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1980
diff
changeset
|
154 |
break |
2394
92bba46b853f
[cw-ctl] improve dialog messages
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2107
diff
changeset
|
155 |
print '-> uri already used, choose another one.' |
2105
92ea410806fe
refactor sources configuration, add source to sources when using a cube defining
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1980
diff
changeset
|
156 |
sourcescfg[sourceuri] = ask_source_config(sourcetype) |
92ea410806fe
refactor sources configuration, add source to sources when using a cube defining
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1980
diff
changeset
|
157 |
sourcemodule = SOURCE_TYPES[sourcetype].module |
92ea410806fe
refactor sources configuration, add source to sources when using a cube defining
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1980
diff
changeset
|
158 |
if not sourcemodule.startswith('cubicweb.'): |
92ea410806fe
refactor sources configuration, add source to sources when using a cube defining
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1980
diff
changeset
|
159 |
# module names look like cubes.mycube.themodule |
92ea410806fe
refactor sources configuration, add source to sources when using a cube defining
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1980
diff
changeset
|
160 |
sourcecube = SOURCE_TYPES[sourcetype].module.split('.', 2)[1] |
92ea410806fe
refactor sources configuration, add source to sources when using a cube defining
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1980
diff
changeset
|
161 |
# if the source adapter is coming from an external component, |
92ea410806fe
refactor sources configuration, add source to sources when using a cube defining
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1980
diff
changeset
|
162 |
# ensure it's specified in used cubes |
92ea410806fe
refactor sources configuration, add source to sources when using a cube defining
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1980
diff
changeset
|
163 |
if not sourcecube in cubes: |
92ea410806fe
refactor sources configuration, add source to sources when using a cube defining
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1980
diff
changeset
|
164 |
cubes.append(sourcecube) |
0 | 165 |
sconfig = Configuration(options=USER_OPTIONS) |
166 |
sconfig.input_config(inputlevel=inputlevel) |
|
167 |
sourcescfg['admin'] = sconfig |
|
2105
92ea410806fe
refactor sources configuration, add source to sources when using a cube defining
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1980
diff
changeset
|
168 |
config.write_sources_file(sourcescfg) |
0 | 169 |
# remember selected cubes for later initialization of the database |
170 |
config.write_bootstrap_cubes_file(cubes) |
|
1469 | 171 |
|
0 | 172 |
def postcreate(self): |
2615
1ea41b7c0836
F [dialog] offer to create backup. refactor to use l.c.shellutils.ASK
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2507
diff
changeset
|
173 |
if ASK.confirm('Run db-create to create the system database ?'): |
136
ff51a18c66a3
ask less questions on instance creation
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
0
diff
changeset
|
174 |
verbosity = (self.config.mode == 'installed') and 'y' or 'n' |
ff51a18c66a3
ask less questions on instance creation
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
0
diff
changeset
|
175 |
cmd_run('db-create', self.config.appid, '--verbose=%s' % verbosity) |
0 | 176 |
else: |
2395
e3093fc12a00
[cw-ctl] improve dialog messages
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2394
diff
changeset
|
177 |
print ('-> nevermind, you can do it later with ' |
e3093fc12a00
[cw-ctl] improve dialog messages
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2394
diff
changeset
|
178 |
'"cubicweb-ctl db-create %s".' % self.config.appid) |
1469 | 179 |
|
0 | 180 |
|
181 |
class RepositoryDeleteHandler(CommandHandler): |
|
182 |
cmdname = 'delete' |
|
183 |
cfgname = 'repository' |
|
184 |
||
185 |
def cleanup(self): |
|
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
186 |
"""remove instance's configuration and database""" |
0 | 187 |
from logilab.common.adbh import get_adv_func_helper |
188 |
source = self.config.sources()['system'] |
|
189 |
dbname = source['db-name'] |
|
190 |
helper = get_adv_func_helper(source['db-driver']) |
|
2615
1ea41b7c0836
F [dialog] offer to create backup. refactor to use l.c.shellutils.ASK
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2507
diff
changeset
|
191 |
if ASK.confirm('Delete database %s ?' % dbname): |
0 | 192 |
user = source['db-user'] or None |
193 |
cnx = _db_sys_cnx(source, 'DROP DATABASE', user=user) |
|
194 |
cursor = cnx.cursor() |
|
195 |
try: |
|
196 |
cursor.execute('DROP DATABASE %s' % dbname) |
|
2394
92bba46b853f
[cw-ctl] improve dialog messages
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2107
diff
changeset
|
197 |
print '-> database %s dropped.' % dbname |
0 | 198 |
# XXX should check we are not connected as user |
199 |
if user and helper.users_support and \ |
|
2615
1ea41b7c0836
F [dialog] offer to create backup. refactor to use l.c.shellutils.ASK
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2507
diff
changeset
|
200 |
ASK.confirm('Delete user %s ?' % user, default_is_yes=False): |
0 | 201 |
cursor.execute('DROP USER %s' % user) |
2394
92bba46b853f
[cw-ctl] improve dialog messages
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2107
diff
changeset
|
202 |
print '-> user %s dropped.' % user |
0 | 203 |
cnx.commit() |
204 |
except: |
|
205 |
cnx.rollback() |
|
206 |
raise |
|
207 |
||
1469 | 208 |
|
0 | 209 |
class RepositoryStartHandler(CommandHandler): |
210 |
cmdname = 'start' |
|
211 |
cfgname = 'repository' |
|
212 |
||
213 |
def start_command(self, ctlconf, debug): |
|
214 |
command = ['cubicweb-ctl start-repository '] |
|
215 |
if debug: |
|
216 |
command.append('--debug') |
|
217 |
command.append(self.config.appid) |
|
218 |
return ' '.join(command) |
|
1469 | 219 |
|
0 | 220 |
|
221 |
class RepositoryStopHandler(CommandHandler): |
|
222 |
cmdname = 'stop' |
|
223 |
cfgname = 'repository' |
|
224 |
||
225 |
def poststop(self): |
|
226 |
"""if pyro is enabled, ensure the repository is correctly |
|
227 |
unregistered |
|
228 |
""" |
|
229 |
if self.config.pyro_enabled(): |
|
230 |
from cubicweb.server.repository import pyro_unregister |
|
231 |
pyro_unregister(self.config) |
|
1469 | 232 |
|
0 | 233 |
|
234 |
# repository specific commands ################################################ |
|
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
235 |
class CreateInstanceDBCommand(Command): |
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
236 |
"""Create the system database of an instance (run after 'create'). |
1469 | 237 |
|
0 | 238 |
You will be prompted for a login / password to use to connect to |
239 |
the system database. The given user should have almost all rights |
|
240 |
on the database (ie a super user on the dbms allowed to create |
|
241 |
database, users, languages...). |
|
242 |
||
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
243 |
<instance> |
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
244 |
the identifier of the instance to initialize. |
0 | 245 |
""" |
246 |
name = 'db-create' |
|
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
247 |
arguments = '<instance>' |
1469 | 248 |
|
0 | 249 |
options = ( |
2493
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
250 |
('create-db', |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
251 |
{'short': 'c', 'type': 'yn', 'metavar': '<y or n>', |
0 | 252 |
'default': True, |
253 |
'help': 'create the database (yes by default)'}), |
|
2493
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
254 |
('verbose', |
136
ff51a18c66a3
ask less questions on instance creation
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
0
diff
changeset
|
255 |
{'short': 'v', 'type' : 'yn', 'metavar': '<verbose>', |
ff51a18c66a3
ask less questions on instance creation
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
0
diff
changeset
|
256 |
'default': 'n', |
ff51a18c66a3
ask less questions on instance creation
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
0
diff
changeset
|
257 |
'help': 'verbose mode: will ask all possible configuration questions', |
ff51a18c66a3
ask less questions on instance creation
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
0
diff
changeset
|
258 |
} |
ff51a18c66a3
ask less questions on instance creation
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
0
diff
changeset
|
259 |
), |
0 | 260 |
) |
261 |
def run(self, args): |
|
262 |
"""run the command with its specific arguments""" |
|
263 |
from logilab.common.adbh import get_adv_func_helper |
|
264 |
from indexer import get_indexer |
|
136
ff51a18c66a3
ask less questions on instance creation
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
0
diff
changeset
|
265 |
verbose = self.get('verbose') |
2493
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
266 |
appid = pop_arg(args, msg='No instance specified !') |
0 | 267 |
config = ServerConfiguration.config_for(appid) |
268 |
create_db = self.config.create_db |
|
269 |
source = config.sources()['system'] |
|
270 |
driver = source['db-driver'] |
|
271 |
helper = get_adv_func_helper(driver) |
|
272 |
if create_db: |
|
2493
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
273 |
print '\n'+underline_title('Creating the system database') |
0 | 274 |
# connect on the dbms system base to create our base |
136
ff51a18c66a3
ask less questions on instance creation
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
0
diff
changeset
|
275 |
dbcnx = _db_sys_cnx(source, 'CREATE DATABASE and / or USER', verbose=verbose) |
0 | 276 |
cursor = dbcnx.cursor() |
277 |
try: |
|
278 |
if helper.users_support: |
|
279 |
user = source['db-user'] |
|
280 |
if not helper.user_exists(cursor, user) and \ |
|
2615
1ea41b7c0836
F [dialog] offer to create backup. refactor to use l.c.shellutils.ASK
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2507
diff
changeset
|
281 |
ASK.confirm('Create db user %s ?' % user, default_is_yes=False): |
0 | 282 |
helper.create_user(source['db-user'], source['db-password']) |
2394
92bba46b853f
[cw-ctl] improve dialog messages
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2107
diff
changeset
|
283 |
print '-> user %s created.' % user |
0 | 284 |
dbname = source['db-name'] |
285 |
if dbname in helper.list_databases(cursor): |
|
2615
1ea41b7c0836
F [dialog] offer to create backup. refactor to use l.c.shellutils.ASK
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2507
diff
changeset
|
286 |
if ASK.confirm('Database %s already exists -- do you want to drop it ?' % dbname): |
0 | 287 |
cursor.execute('DROP DATABASE %s' % dbname) |
288 |
else: |
|
289 |
return |
|
290 |
if dbcnx.logged_user != source['db-user']: |
|
291 |
helper.create_database(cursor, dbname, source['db-user'], |
|
292 |
source['db-encoding']) |
|
293 |
else: |
|
294 |
helper.create_database(cursor, dbname, |
|
295 |
encoding=source['db-encoding']) |
|
296 |
dbcnx.commit() |
|
2394
92bba46b853f
[cw-ctl] improve dialog messages
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2107
diff
changeset
|
297 |
print '-> database %s created.' % source['db-name'] |
0 | 298 |
except: |
299 |
dbcnx.rollback() |
|
300 |
raise |
|
1469 | 301 |
cnx = system_source_cnx(source, special_privs='LANGUAGE C', verbose=verbose) |
0 | 302 |
cursor = cnx.cursor() |
303 |
indexer = get_indexer(driver) |
|
304 |
indexer.init_extensions(cursor) |
|
1469 | 305 |
# postgres specific stuff |
0 | 306 |
if driver == 'postgres': |
307 |
# install plpythonu/plpgsql language if not installed by the cube |
|
308 |
for extlang in ('plpythonu', 'plpgsql'): |
|
309 |
helper.create_language(cursor, extlang) |
|
310 |
cursor.close() |
|
311 |
cnx.commit() |
|
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
312 |
print '-> database for instance %s created and necessary extensions installed.' % appid |
0 | 313 |
print |
2615
1ea41b7c0836
F [dialog] offer to create backup. refactor to use l.c.shellutils.ASK
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2507
diff
changeset
|
314 |
if ASK.confirm('Run db-init to initialize the system database ?'): |
0 | 315 |
cmd_run('db-init', config.appid) |
316 |
else: |
|
2395
e3093fc12a00
[cw-ctl] improve dialog messages
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2394
diff
changeset
|
317 |
print ('-> nevermind, you can do it later with ' |
e3093fc12a00
[cw-ctl] improve dialog messages
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2394
diff
changeset
|
318 |
'"cubicweb-ctl db-init %s".' % self.config.appid) |
0 | 319 |
|
1469 | 320 |
|
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
321 |
class InitInstanceCommand(Command): |
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
322 |
"""Initialize the system database of an instance (run after 'db-create'). |
1469 | 323 |
|
0 | 324 |
You will be prompted for a login / password to use to connect to |
325 |
the system database. The given user should have the create tables, |
|
326 |
and grant permissions. |
|
327 |
||
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
328 |
<instance> |
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
329 |
the identifier of the instance to initialize. |
0 | 330 |
""" |
331 |
name = 'db-init' |
|
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
332 |
arguments = '<instance>' |
1469 | 333 |
|
0 | 334 |
options = ( |
2493
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
335 |
('drop', |
0 | 336 |
{'short': 'd', 'action': 'store_true', |
337 |
'default': False, |
|
338 |
'help': 'insert drop statements to remove previously existant \ |
|
339 |
tables, indexes... (no by default)'}), |
|
340 |
) |
|
341 |
||
342 |
def run(self, args): |
|
2493
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
343 |
print '\n'+underline_title('Initializing the system database') |
0 | 344 |
from cubicweb.server import init_repository |
2493
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
345 |
appid = pop_arg(args, msg='No instance specified !') |
0 | 346 |
config = ServerConfiguration.config_for(appid) |
347 |
init_repository(config, drop=self.config.drop) |
|
348 |
||
349 |
||
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
350 |
class GrantUserOnInstanceCommand(Command): |
0 | 351 |
"""Grant a database user on a repository system database. |
1469 | 352 |
|
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
353 |
<instance> |
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
354 |
the identifier of the instance |
0 | 355 |
<user> |
356 |
the database's user requiring grant access |
|
357 |
""" |
|
358 |
name = 'db-grant-user' |
|
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
359 |
arguments = '<instance> <user>' |
0 | 360 |
|
361 |
options = ( |
|
2493
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
362 |
('set-owner', |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
363 |
{'short': 'o', 'type' : 'yn', 'metavar' : '<yes or no>', |
0 | 364 |
'default' : False, |
365 |
'help': 'Set the user as tables owner if yes (no by default).'} |
|
366 |
), |
|
367 |
) |
|
368 |
def run(self, args): |
|
369 |
"""run the command with its specific arguments""" |
|
370 |
from cubicweb.server.sqlutils import sqlexec, sqlgrants |
|
2493
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
371 |
appid = pop_arg(args, 1, msg='No instance specified !') |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
372 |
user = pop_arg(args, msg='No user specified !') |
0 | 373 |
config = ServerConfiguration.config_for(appid) |
374 |
source = config.sources()['system'] |
|
375 |
set_owner = self.config.set_owner |
|
376 |
cnx = system_source_cnx(source, special_privs='GRANT') |
|
377 |
cursor = cnx.cursor() |
|
378 |
schema = config.load_schema() |
|
379 |
try: |
|
380 |
sqlexec(sqlgrants(schema, source['db-driver'], user, |
|
381 |
set_owner=set_owner), cursor) |
|
382 |
except Exception, ex: |
|
383 |
cnx.rollback() |
|
384 |
import traceback |
|
385 |
traceback.print_exc() |
|
2394
92bba46b853f
[cw-ctl] improve dialog messages
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2107
diff
changeset
|
386 |
print '-> an error occured:', ex |
0 | 387 |
else: |
388 |
cnx.commit() |
|
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
389 |
print '-> rights granted to %s on instance %s.' % (appid, user) |
0 | 390 |
|
1912
2b9432262240
[server] provide a new reset-admin-pwd command
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1682
diff
changeset
|
391 |
class ResetAdminPasswordCommand(Command): |
2b9432262240
[server] provide a new reset-admin-pwd command
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1682
diff
changeset
|
392 |
"""Reset the administrator password. |
2b9432262240
[server] provide a new reset-admin-pwd command
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1682
diff
changeset
|
393 |
|
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
394 |
<instance> |
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
395 |
the identifier of the instance |
1912
2b9432262240
[server] provide a new reset-admin-pwd command
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1682
diff
changeset
|
396 |
""" |
2b9432262240
[server] provide a new reset-admin-pwd command
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1682
diff
changeset
|
397 |
name = 'reset-admin-pwd' |
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
398 |
arguments = '<instance>' |
1912
2b9432262240
[server] provide a new reset-admin-pwd command
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1682
diff
changeset
|
399 |
|
2b9432262240
[server] provide a new reset-admin-pwd command
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1682
diff
changeset
|
400 |
def run(self, args): |
2b9432262240
[server] provide a new reset-admin-pwd command
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1682
diff
changeset
|
401 |
"""run the command with its specific arguments""" |
2b9432262240
[server] provide a new reset-admin-pwd command
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1682
diff
changeset
|
402 |
from cubicweb.server.sqlutils import sqlexec, SQL_PREFIX |
2b9432262240
[server] provide a new reset-admin-pwd command
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1682
diff
changeset
|
403 |
from cubicweb.server.utils import crypt_password, manager_userpasswd |
2493
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
404 |
appid = pop_arg(args, 1, msg='No instance specified !') |
1912
2b9432262240
[server] provide a new reset-admin-pwd command
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1682
diff
changeset
|
405 |
config = ServerConfiguration.config_for(appid) |
2105
92ea410806fe
refactor sources configuration, add source to sources when using a cube defining
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1980
diff
changeset
|
406 |
sourcescfg = config.read_sources_file() |
1912
2b9432262240
[server] provide a new reset-admin-pwd command
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1682
diff
changeset
|
407 |
try: |
2b9432262240
[server] provide a new reset-admin-pwd command
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1682
diff
changeset
|
408 |
adminlogin = sourcescfg['admin']['login'] |
2b9432262240
[server] provide a new reset-admin-pwd command
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1682
diff
changeset
|
409 |
except KeyError: |
2394
92bba46b853f
[cw-ctl] improve dialog messages
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2107
diff
changeset
|
410 |
print '-> Error: could not get cubicweb administrator login.' |
1912
2b9432262240
[server] provide a new reset-admin-pwd command
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1682
diff
changeset
|
411 |
sys.exit(1) |
2b9432262240
[server] provide a new reset-admin-pwd command
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1682
diff
changeset
|
412 |
cnx = source_cnx(sourcescfg['system']) |
2b9432262240
[server] provide a new reset-admin-pwd command
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1682
diff
changeset
|
413 |
cursor = cnx.cursor() |
2b9432262240
[server] provide a new reset-admin-pwd command
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1682
diff
changeset
|
414 |
_, passwd = manager_userpasswd(adminlogin, confirm=True, |
2b9432262240
[server] provide a new reset-admin-pwd command
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1682
diff
changeset
|
415 |
passwdmsg='new password for %s' % adminlogin) |
2b9432262240
[server] provide a new reset-admin-pwd command
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1682
diff
changeset
|
416 |
try: |
2b9432262240
[server] provide a new reset-admin-pwd command
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1682
diff
changeset
|
417 |
sqlexec("UPDATE %(sp)sCWUser SET %(sp)supassword='%(p)s' WHERE %(sp)slogin='%(l)s'" |
2b9432262240
[server] provide a new reset-admin-pwd command
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1682
diff
changeset
|
418 |
% {'sp': SQL_PREFIX, |
2b9432262240
[server] provide a new reset-admin-pwd command
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1682
diff
changeset
|
419 |
'p': crypt_password(passwd), 'l': adminlogin}, |
2b9432262240
[server] provide a new reset-admin-pwd command
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1682
diff
changeset
|
420 |
cursor, withpb=False) |
2b9432262240
[server] provide a new reset-admin-pwd command
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1682
diff
changeset
|
421 |
sconfig = Configuration(options=USER_OPTIONS) |
2b9432262240
[server] provide a new reset-admin-pwd command
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1682
diff
changeset
|
422 |
sconfig['login'] = adminlogin |
2b9432262240
[server] provide a new reset-admin-pwd command
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1682
diff
changeset
|
423 |
sconfig['password'] = passwd |
2b9432262240
[server] provide a new reset-admin-pwd command
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1682
diff
changeset
|
424 |
sourcescfg['admin'] = sconfig |
2105
92ea410806fe
refactor sources configuration, add source to sources when using a cube defining
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1980
diff
changeset
|
425 |
config.write_sources_file(sourcescfg) |
1912
2b9432262240
[server] provide a new reset-admin-pwd command
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1682
diff
changeset
|
426 |
except Exception, ex: |
2b9432262240
[server] provide a new reset-admin-pwd command
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1682
diff
changeset
|
427 |
cnx.rollback() |
2b9432262240
[server] provide a new reset-admin-pwd command
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1682
diff
changeset
|
428 |
import traceback |
2b9432262240
[server] provide a new reset-admin-pwd command
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1682
diff
changeset
|
429 |
traceback.print_exc() |
2394
92bba46b853f
[cw-ctl] improve dialog messages
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2107
diff
changeset
|
430 |
print '-> an error occured:', ex |
1912
2b9432262240
[server] provide a new reset-admin-pwd command
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1682
diff
changeset
|
431 |
else: |
2b9432262240
[server] provide a new reset-admin-pwd command
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1682
diff
changeset
|
432 |
cnx.commit() |
2394
92bba46b853f
[cw-ctl] improve dialog messages
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2107
diff
changeset
|
433 |
print '-> password reset, sources file regenerated.' |
0 | 434 |
|
1469 | 435 |
|
0 | 436 |
class StartRepositoryCommand(Command): |
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
437 |
"""Start an CubicWeb RQL server for a given instance. |
1469 | 438 |
|
0 | 439 |
The server will be accessible through pyro |
440 |
||
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
441 |
<instance> |
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
442 |
the identifier of the instance to initialize. |
0 | 443 |
""" |
444 |
name = 'start-repository' |
|
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
445 |
arguments = '<instance>' |
1469 | 446 |
|
0 | 447 |
options = ( |
2493
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
448 |
('debug', |
0 | 449 |
{'short': 'D', 'action' : 'store_true', |
450 |
'help': 'start server in debug mode.'}), |
|
451 |
) |
|
452 |
||
453 |
def run(self, args): |
|
454 |
from cubicweb.server.server import RepositoryServer |
|
2493
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
455 |
appid = pop_arg(args, msg='No instance specified !') |
0 | 456 |
config = ServerConfiguration.config_for(appid) |
457 |
debug = self.config.debug |
|
458 |
# create the server |
|
459 |
server = RepositoryServer(config, debug) |
|
460 |
# go ! (don't daemonize in debug mode) |
|
461 |
if not debug and server.daemonize(config['pid-file']) == -1: |
|
462 |
return |
|
463 |
uid = config['uid'] |
|
464 |
if uid is not None: |
|
465 |
try: |
|
466 |
uid = int(uid) |
|
467 |
except ValueError: |
|
468 |
from pwd import getpwnam |
|
469 |
uid = getpwnam(uid).pw_uid |
|
470 |
os.setuid(uid) |
|
471 |
server.install_sig_handlers() |
|
472 |
server.connect(config['host'], 0) |
|
473 |
server.run() |
|
474 |
||
475 |
||
476 |
def _remote_dump(host, appid, output, sudo=False): |
|
2493
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
477 |
# XXX generate unique/portable file name |
0 | 478 |
dmpcmd = 'cubicweb-ctl db-dump -o /tmp/%s.dump %s' % (appid, appid) |
479 |
if sudo: |
|
480 |
dmpcmd = 'sudo %s' % (dmpcmd) |
|
481 |
dmpcmd = 'ssh -t %s "%s"' % (host, dmpcmd) |
|
482 |
print dmpcmd |
|
483 |
if os.system(dmpcmd): |
|
484 |
raise ExecutionError('Error while dumping the database') |
|
485 |
if output is None: |
|
1016
26387b836099
use datetime instead of mx.DateTime
sylvain.thenault@logilab.fr
parents:
136
diff
changeset
|
486 |
from datetime import date |
26387b836099
use datetime instead of mx.DateTime
sylvain.thenault@logilab.fr
parents:
136
diff
changeset
|
487 |
date = date.today().strftime('%Y-%m-%d') |
0 | 488 |
output = '%s-%s.dump' % (appid, date) |
489 |
cmd = 'scp %s:/tmp/%s.dump %s' % (host, appid, output) |
|
490 |
print cmd |
|
491 |
if os.system(cmd): |
|
492 |
raise ExecutionError('Error while retrieving the dump') |
|
493 |
rmcmd = 'ssh -t %s "rm -f /tmp/%s.dump"' % (host, appid) |
|
494 |
print rmcmd |
|
2615
1ea41b7c0836
F [dialog] offer to create backup. refactor to use l.c.shellutils.ASK
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2507
diff
changeset
|
495 |
if os.system(rmcmd) and not ASK.confirm( |
2394
92bba46b853f
[cw-ctl] improve dialog messages
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2107
diff
changeset
|
496 |
'An error occured while deleting remote dump. Continue anyway?'): |
0 | 497 |
raise ExecutionError('Error while deleting remote dump') |
498 |
||
499 |
def _local_dump(appid, output): |
|
500 |
config = ServerConfiguration.config_for(appid) |
|
501 |
# schema=1 to avoid unnecessary schema loading |
|
2493
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
502 |
mih = config.migration_handler(connect=False, schema=1, verbosity=1) |
0 | 503 |
mih.backup_database(output, askconfirm=False) |
2493
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
504 |
mih.shutdown() |
0 | 505 |
|
2493
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
506 |
def _local_restore(appid, backupfile, drop, systemonly=True): |
0 | 507 |
config = ServerConfiguration.config_for(appid) |
2493
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
508 |
config.verbosity = 1 # else we won't be asked for confirmation on problems |
2507
45248d0ad8a0
don't check versions on db-restore
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2493
diff
changeset
|
509 |
config.repairing = 1 # don't check versions |
0 | 510 |
# schema=1 to avoid unnecessary schema loading |
2493
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
511 |
mih = config.migration_handler(connect=False, schema=1, verbosity=1) |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
512 |
mih.restore_database(backupfile, drop, systemonly, askconfirm=False) |
0 | 513 |
repo = mih.repo_connect() |
514 |
# version of the database |
|
515 |
dbversions = repo.get_versions() |
|
516 |
mih.shutdown() |
|
517 |
if not dbversions: |
|
518 |
print "bad or missing version information in the database, don't upgrade file system" |
|
519 |
return |
|
520 |
# version of installed software |
|
521 |
eversion = dbversions['cubicweb'] |
|
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
522 |
status = instance_status(config, eversion, dbversions) |
0 | 523 |
# * database version > installed software |
524 |
if status == 'needsoftupgrade': |
|
525 |
print "database is using some earlier version than installed software!" |
|
526 |
print "please upgrade your software and then upgrade the instance" |
|
527 |
print "using command 'cubicweb-ctl upgrade %s'" % config.appid |
|
528 |
return |
|
529 |
# * database version < installed software, an upgrade will be necessary |
|
530 |
# anyway, just rewrite vc.conf and warn user he has to upgrade |
|
531 |
if status == 'needapplupgrade': |
|
532 |
print "database is using some older version than installed software." |
|
533 |
print "You'll have to upgrade the instance using command" |
|
534 |
print "'cubicweb-ctl upgrade %s'" % config.appid |
|
535 |
return |
|
536 |
# * database version = installed software, database version = instance fs version |
|
537 |
# ok! |
|
538 |
||
539 |
||
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
540 |
def instance_status(config, cubicwebapplversion, vcconf): |
0 | 541 |
cubicwebversion = config.cubicweb_version() |
542 |
if cubicwebapplversion > cubicwebversion: |
|
543 |
return 'needsoftupgrade' |
|
544 |
if cubicwebapplversion < cubicwebversion: |
|
545 |
return 'needapplupgrade' |
|
546 |
for cube in config.cubes(): |
|
547 |
try: |
|
548 |
softversion = config.cube_version(cube) |
|
549 |
except ConfigurationError: |
|
2493
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
550 |
print '-> Error: no cube version information for %s, please check that the cube is installed.' % cube |
0 | 551 |
continue |
552 |
try: |
|
553 |
applversion = vcconf[cube] |
|
554 |
except KeyError: |
|
2493
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
555 |
print '-> Error: no cube version information for %s in version configuration.' % cube |
1469 | 556 |
continue |
0 | 557 |
if softversion == applversion: |
558 |
continue |
|
559 |
if softversion > applversion: |
|
560 |
return 'needsoftupgrade' |
|
561 |
elif softversion < applversion: |
|
562 |
return 'needapplupgrade' |
|
563 |
return None |
|
1469 | 564 |
|
0 | 565 |
|
566 |
class DBDumpCommand(Command): |
|
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
567 |
"""Backup the system database of an instance. |
1469 | 568 |
|
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
569 |
<instance> |
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
570 |
the identifier of the instance to backup |
0 | 571 |
format [[user@]host:]appname |
572 |
""" |
|
573 |
name = 'db-dump' |
|
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
574 |
arguments = '<instance>' |
0 | 575 |
|
576 |
options = ( |
|
2493
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
577 |
('output', |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
578 |
{'short': 'o', 'type' : 'string', 'metavar' : '<file>', |
0 | 579 |
'default' : None, |
580 |
'help': 'Specify the backup file where the backup will be stored.'} |
|
581 |
), |
|
582 |
('sudo', |
|
583 |
{'short': 's', 'action' : 'store_true', |
|
584 |
'default' : False, |
|
585 |
'help': 'Use sudo on the remote host.'} |
|
586 |
), |
|
587 |
) |
|
588 |
||
589 |
def run(self, args): |
|
2493
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
590 |
appid = pop_arg(args, 1, msg='No instance specified !') |
0 | 591 |
if ':' in appid: |
592 |
host, appid = appid.split(':') |
|
593 |
_remote_dump(host, appid, self.config.output, self.config.sudo) |
|
594 |
else: |
|
595 |
_local_dump(appid, self.config.output) |
|
596 |
||
597 |
||
598 |
class DBRestoreCommand(Command): |
|
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
599 |
"""Restore the system database of an instance. |
1469 | 600 |
|
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
601 |
<instance> |
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
602 |
the identifier of the instance to restore |
0 | 603 |
""" |
604 |
name = 'db-restore' |
|
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
605 |
arguments = '<instance> <backupfile>' |
0 | 606 |
|
607 |
options = ( |
|
2493
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
608 |
('no-drop', |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
609 |
{'short': 'n', 'action' : 'store_true', 'default' : False, |
0 | 610 |
'help': 'for some reason the database doesn\'t exist and so ' |
611 |
'should not be dropped.'} |
|
612 |
), |
|
2493
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
613 |
('restore-all', |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
614 |
{'short': 'r', 'action' : 'store_true', 'default' : False, |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
615 |
'help': 'restore everything, eg not only the system source database ' |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
616 |
'but also data for all sources supporting backup/restore and custom ' |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
617 |
'instance data. In that case, <backupfile> is expected to be the ' |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
618 |
'timestamp of the backup to restore, not a file'} |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
619 |
), |
0 | 620 |
) |
621 |
||
622 |
def run(self, args): |
|
2493
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
623 |
appid = pop_arg(args, 1, msg='No instance specified !') |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
624 |
backupfile = pop_arg(args, msg='No backup file or timestamp specified !') |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
625 |
_local_restore(appid, backupfile, |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
626 |
drop=not self.config.no_drop, |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
627 |
systemonly=not self.config.restore_all) |
0 | 628 |
|
629 |
||
630 |
class DBCopyCommand(Command): |
|
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
631 |
"""Copy the system database of an instance (backup and restore). |
1469 | 632 |
|
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
633 |
<src-instance> |
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
634 |
the identifier of the instance to backup |
0 | 635 |
format [[user@]host:]appname |
636 |
||
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
637 |
<dest-instance> |
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
638 |
the identifier of the instance to restore |
0 | 639 |
""" |
640 |
name = 'db-copy' |
|
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
641 |
arguments = '<src-instance> <dest-instance>' |
0 | 642 |
|
643 |
options = ( |
|
2493
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
644 |
('no-drop', |
1469 | 645 |
{'short': 'n', 'action' : 'store_true', |
0 | 646 |
'default' : False, |
647 |
'help': 'For some reason the database doesn\'t exist and so ' |
|
648 |
'should not be dropped.'} |
|
649 |
), |
|
2493
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
650 |
('keep-dump', |
0 | 651 |
{'short': 'k', 'action' : 'store_true', |
652 |
'default' : False, |
|
653 |
'help': 'Specify that the dump file should not be automatically removed.'} |
|
654 |
), |
|
655 |
('sudo', |
|
656 |
{'short': 's', 'action' : 'store_true', |
|
657 |
'default' : False, |
|
658 |
'help': 'Use sudo on the remote host.'} |
|
659 |
), |
|
660 |
) |
|
661 |
||
662 |
def run(self, args): |
|
663 |
import tempfile |
|
2493
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
664 |
srcappid = pop_arg(args, 1, msg='No source instance specified !') |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
665 |
destappid = pop_arg(args, msg='No destination instance specified !') |
2682
0188a4a02403
[F dbdump] dark and dirty fix for db-copy command
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2615
diff
changeset
|
666 |
# XXX -system necessary to match file name modified on source restore. |
0188a4a02403
[F dbdump] dark and dirty fix for db-copy command
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2615
diff
changeset
|
667 |
# should not have to expect this. |
0188a4a02403
[F dbdump] dark and dirty fix for db-copy command
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2615
diff
changeset
|
668 |
_, output = tempfile.mkstemp('-system.sql') |
0 | 669 |
if ':' in srcappid: |
670 |
host, srcappid = srcappid.split(':') |
|
671 |
_remote_dump(host, srcappid, output, self.config.sudo) |
|
672 |
else: |
|
673 |
_local_dump(srcappid, output) |
|
674 |
_local_restore(destappid, output, not self.config.no_drop) |
|
675 |
if self.config.keep_dump: |
|
2394
92bba46b853f
[cw-ctl] improve dialog messages
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2107
diff
changeset
|
676 |
print '-> you can get the dump file at', output |
0 | 677 |
else: |
678 |
os.remove(output) |
|
679 |
||
1469 | 680 |
|
0 | 681 |
class CheckRepositoryCommand(Command): |
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
682 |
"""Check integrity of the system database of an instance. |
1469 | 683 |
|
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
684 |
<instance> |
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
685 |
the identifier of the instance to check |
0 | 686 |
""" |
687 |
name = 'db-check' |
|
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
688 |
arguments = '<instance>' |
0 | 689 |
|
690 |
options = ( |
|
2493
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
691 |
('checks', |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
692 |
{'short': 'c', 'type' : 'csv', 'metavar' : '<check list>', |
0 | 693 |
'default' : ('entities', 'relations', 'metadata', 'schema', 'text_index'), |
694 |
'help': 'Comma separated list of check to run. By default run all \ |
|
695 |
checks, i.e. entities, relations, text_index and metadata.'} |
|
696 |
), |
|
1469 | 697 |
|
2493
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
698 |
('autofix', |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
699 |
{'short': 'a', 'type' : 'yn', 'metavar' : '<yes or no>', |
0 | 700 |
'default' : False, |
701 |
'help': 'Automatically correct integrity problems if this option \ |
|
702 |
is set to "y" or "yes", else only display them'} |
|
703 |
), |
|
2493
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
704 |
('reindex', |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
705 |
{'short': 'r', 'type' : 'yn', 'metavar' : '<yes or no>', |
0 | 706 |
'default' : False, |
707 |
'help': 're-indexes the database for full text search if this \ |
|
708 |
option is set to "y" or "yes" (may be long for large database).'} |
|
709 |
), |
|
2493
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
710 |
('force', |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
711 |
{'short': 'f', 'action' : 'store_true', |
2473
490f88fb99b6
new distinguish repairing/creating from regular start.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2461
diff
changeset
|
712 |
'default' : False, |
490f88fb99b6
new distinguish repairing/creating from regular start.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2461
diff
changeset
|
713 |
'help': 'don\'t check instance is up to date.'} |
490f88fb99b6
new distinguish repairing/creating from regular start.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2461
diff
changeset
|
714 |
), |
1469 | 715 |
|
0 | 716 |
) |
717 |
||
718 |
def run(self, args): |
|
719 |
from cubicweb.server.checkintegrity import check |
|
2493
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
720 |
appid = pop_arg(args, 1, msg='No instance specified !') |
0 | 721 |
config = ServerConfiguration.config_for(appid) |
2473
490f88fb99b6
new distinguish repairing/creating from regular start.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2461
diff
changeset
|
722 |
config.repairing = self.config.force |
0 | 723 |
repo, cnx = repo_cnx(config) |
724 |
check(repo, cnx, |
|
725 |
self.config.checks, self.config.reindex, self.config.autofix) |
|
726 |
||
727 |
||
728 |
class RebuildFTICommand(Command): |
|
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
729 |
"""Rebuild the full-text index of the system database of an instance. |
1469 | 730 |
|
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
731 |
<instance> |
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
732 |
the identifier of the instance to rebuild |
0 | 733 |
""" |
734 |
name = 'db-rebuild-fti' |
|
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
735 |
arguments = '<instance>' |
0 | 736 |
|
737 |
options = () |
|
738 |
||
739 |
def run(self, args): |
|
740 |
from cubicweb.server.checkintegrity import reindex_entities |
|
2493
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
741 |
appid = pop_arg(args, 1, msg='No instance specified !') |
0 | 742 |
config = ServerConfiguration.config_for(appid) |
743 |
repo, cnx = repo_cnx(config) |
|
744 |
session = repo._get_session(cnx.sessionid, setpool=True) |
|
745 |
reindex_entities(repo.schema, session) |
|
746 |
cnx.commit() |
|
747 |
||
1469 | 748 |
|
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
749 |
class SynchronizeInstanceSchemaCommand(Command): |
0 | 750 |
"""Synchronize persistent schema with cube schema. |
1469 | 751 |
|
0 | 752 |
Will synchronize common stuff between the cube schema and the |
753 |
actual persistent schema, but will not add/remove any entity or relation. |
|
754 |
||
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
755 |
<instance> |
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
756 |
the identifier of the instance to synchronize. |
0 | 757 |
""" |
758 |
name = 'schema-sync' |
|
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
759 |
arguments = '<instance>' |
0 | 760 |
|
761 |
def run(self, args): |
|
2493
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
762 |
appid = pop_arg(args, msg='No instance specified !') |
0 | 763 |
config = ServerConfiguration.config_for(appid) |
764 |
mih = config.migration_handler() |
|
765 |
mih.cmd_synchronize_schema() |
|
766 |
||
767 |
||
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
768 |
register_commands( (CreateInstanceDBCommand, |
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
769 |
InitInstanceCommand, |
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
770 |
GrantUserOnInstanceCommand, |
1912
2b9432262240
[server] provide a new reset-admin-pwd command
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1682
diff
changeset
|
771 |
ResetAdminPasswordCommand, |
0 | 772 |
StartRepositoryCommand, |
773 |
DBDumpCommand, |
|
774 |
DBRestoreCommand, |
|
775 |
DBCopyCommand, |
|
776 |
CheckRepositoryCommand, |
|
777 |
RebuildFTICommand, |
|
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2473
diff
changeset
|
778 |
SynchronizeInstanceSchemaCommand, |
0 | 779 |
) ) |