-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanage.py
executable file
·109 lines (84 loc) · 2.76 KB
/
manage.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
#!/usr/bin/env python
import os
import csv
import random
import datetime
from flask.ext.script import Manager, Server
from flask.ext.migrate import MigrateCommand
from flask.ext.script.commands import ShowUrls, Clean
from toolshed.models import AdminAccount, Project, ProjectLog
from toolshed.updater import update_projects, update_projects_score
from toolshed import create_app, db, models
from toolshed.importer import create_project
HERE = os.path.abspath(os.path.dirname(__file__))
TEST_PATH = os.path.join(HERE, 'tests')
app = create_app()
manager = Manager(app)
manager.add_command('server', Server())
manager.add_command('db', MigrateCommand)
manager.add_command('show-urls', ShowUrls())
manager.add_command('clean', Clean())
@manager.shell
def make_shell_context():
""" Creates a python REPL with several default imports
in the context of the app
"""
return dict(app=app, db=db, models=models)
@manager.command
def createdb():
"""Creates the database with all model tables.
Migrations are preferred.
"""
db.create_all()
@manager.command
def test():
"""Run tests."""
import pytest
exit_code = pytest.main([TEST_PATH, '--verbose'])
@manager.command
def create_admin():
"""Seed the admin interface with an awfully insecure user/pass."""
admin = AdminAccount(admin_name="joel",
password="password")
db.session.add(admin)
db.session.commit()
@manager.command
def update():
projects = Project.query.all()
update_projects(projects)
return "Projects updated."
@manager.command
def update_score():
projects = Project.query.all()
update_projects_score(projects)
return "Scores updated."
@manager.command
def fake_some_logs():
projects = Project.query.all()
for project in projects:
for _ in range(0, random.randrange(2, 7)):
log = ProjectLog()
log.previous_score = random.uniform(0, 1)
rand_date = random.choice(range(10, 30))
log.log_date = datetime.date(2015, 3, rand_date)
log.project_id = project.id
db.session.add(log)
db.session.commit()
@manager.command
def seed_db(file):
""" Takes a csv file as an argument, adds the listed urls to the database.
"""
with open(file) as csvfile:
reader = csv.reader(csvfile)
for row in reader:
proj_list = []
for url in row:
proj_list.append(url)
project = create_project(pypi_url=str(proj_list[0]),
github_url=str(proj_list[1]),
bitbucket_url=str(proj_list[2]))
if project:
db.session.add(project)
db.session.commit()
if __name__ == '__main__':
manager.run()