-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathiblog.py
More file actions
115 lines (91 loc) · 2.96 KB
/
iblog.py
File metadata and controls
115 lines (91 loc) · 2.96 KB
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
110
111
112
113
114
115
import os
import sys
import click
from app import create_app, db
from app.models import User, Role, Post
from flask_migrate import Migrate, upgrade
from flask_login import login_required
from dotenv import load_dotenv
load_dotenv()
app = create_app(os.getenv("FLASK_CONFIG", "default"))
COV = None
if os.environ.get("IBLOG_COVERAGE"):
import coverage
COV = coverage.coverage(branch=True, include="app/*")
COV.start()
# adds flask db command with several subcommands
migrate = Migrate(app, db)
@app.shell_context_processor
def make_shell_context():
"""
adding objects to the import list
they will be available on the flask shell, no explicit imports needed
"""
return dict(db=db, User=User, Role=Role, Post=Post)
# @app.cli.command()
# def test():
# """Run the unit tests."""
# import unittest
# tests = unittest.TestLoader().discover("tests")
# unittest.TextTestRunner(verbosity=2).run(tests)
@app.cli.command()
def deploy():
"""Run deployment tasks"""
# migrate database to latest revision
db.create_all()
upgrade()
# create or update user roles
Role.insert_roles()
# ensure all users are following themselves
User.add_self_follows()
@app.cli.command()
@click.option(
"--coverage/--no-coverage", default=False, help="Run tests under code coverage"
)
def test(coverage):
"""Run the unit tests."""
if coverage and not os.environ.get("IBLOG_COVERAGE"):
os.environ["IBLOG_COVERAGE"] = "1"
# restart the script with new option
os.execv(sys.executable, [sys.executable] + sys.argv)
import unittest
tests = unittest.TestLoader().discover("tests")
unittest.TextTestRunner(verbosity=2).run(tests)
if COV:
COV.stop()
COV.save()
print("Coverage Summary:")
COV.report()
basedir = os.path.abspath(os.path.dirname(__file__))
covdir = os.path.join(basedir, "tmp/coverage")
COV.html_report(directory=covdir)
print("HTML version: file://%s/index.html" % covdir)
COV.erase()
@app.cli.command()
@click.option(
"--length",
default=25,
help="Number of functions to include in the profiler report.",
)
@click.option(
"--profile-dir", default=None, help="Directory where profiler data files are saved."
)
def profile(length, profile_dir):
"""Start the application under the code profiler."""
from werkzeug.middleware.profiler import ProfilerMiddleware
app.wsgi_app = ProfilerMiddleware(
app.wsgi_app, restrictions=[length], profile_dir=profile_dir
)
# TODO: this might be a security issue
if os.environ.get("FLASK_RUN_FROM_CLI"):
os.environ.pop("FLASK_RUN_FROM_CLI")
app.run(debug=False)
@app.route("/secret")
@login_required
def secret():
"""If the user is not authenticated flask_login will
intercept the request and send the user to the login page
"""
return "Only authenticated users are allowed!"
if __name__ == "__main__":
app.run("0.0.0.0")