-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdbhandle.py
75 lines (59 loc) · 2.23 KB
/
dbhandle.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
import click
import subprocess
import pymongo
import sys
@click.command()
@click.option('--run/--no-run', default=None, help="run mongod with `--dbpath`")
@click.option('--info/--no-info', default=False, help="the names of the databases")
@click.option('--create', default=None, help="create a database, specify a name")
@click.option('--delete', default=None, help="delete a database, specify a name")
@click.option('--shutdown/--no-shutdown', default=None, help='shutdown the database server using `--dbpath`')
@click.option('--dbpath', default=None, help='specify the dbpath to run or remove')
def handle(run, info, create, delete, shutdown, dbpath):
if run:
dbrun(dbpath)
client = pymongo.MongoClient('localhost', 27017)
if create:
dbcreate(client, create)
if info:
dbinfo(client)
if delete:
dbdelete(client, delete)
if shutdown:
dbshutdown(dbpath)
def dbrun(dbpath):
command = ['mongod']
if dbpath:
command.append('--dbpath')
command.append(dbpath)
subprocess.Popen(command)
def dbcreate(client, dbname):
db = client[dbname]
collection = db['setup-collection']
collection.insert({'setup-data' : True})
def dbinfo(client):
click.echo('list of databases')
for name in client.database_names():
click.echo('database: {0}'.format(name))
def dbdelete(client, dbname):
if click.confirm('Do you want to delete the {0} database?'.format(dbname)):
client.drop_database(dbname)
click.echo('deleted the {0} database'.format(dbname))
def dbsetup():
#Add some test data to the database
pass
def dbshutdown(dbpath):
if "linux" in sys.platform or "darwin" in sys.platform:
command = ['mongo']
command.append('--eval')
command.append('db.getSiblingDB(\'admin\').shutdownServer()')
subprocess.call(command)
else:
click.echo('your {0} platform is not supported.'.format(sys.platform))
if click.confirm('Try the mongo shell option anyway?'):
command = ['mongo']
command.append('--eval')
command.append('db.getSiblingDB(\'admin\').shutdownServer()')
subprocess.call(command)
if __name__ == "__main__":
handle()