PEP8 formatting
This commit is contained in:
@@ -9,7 +9,6 @@ from algoliasearch import algoliasearch
|
|||||||
from zencoder import Zencoder
|
from zencoder import Zencoder
|
||||||
from flask import g
|
from flask import g
|
||||||
from flask import request
|
from flask import request
|
||||||
from flask import url_for
|
|
||||||
from flask import abort
|
from flask import abort
|
||||||
from eve import Eve
|
from eve import Eve
|
||||||
|
|
||||||
@@ -193,6 +192,7 @@ def before_inserting_nodes(items):
|
|||||||
if project:
|
if project:
|
||||||
item['project'] = project['_id']
|
item['project'] = project['_id']
|
||||||
|
|
||||||
|
|
||||||
def after_inserting_nodes(items):
|
def after_inserting_nodes(items):
|
||||||
for item in items:
|
for item in items:
|
||||||
context_object_id = item['parent']
|
context_object_id = item['parent']
|
||||||
@@ -289,10 +289,12 @@ def project_node_type_has_method(response):
|
|||||||
# Check permissions and append the allowed_methods to the node_type
|
# Check permissions and append the allowed_methods to the node_type
|
||||||
check_permissions(node_type, 'GET', append_allowed_methods=True)
|
check_permissions(node_type, 'GET', append_allowed_methods=True)
|
||||||
|
|
||||||
|
|
||||||
def before_returning_item_notifications(response):
|
def before_returning_item_notifications(response):
|
||||||
if request.args.get('parse'):
|
if request.args.get('parse'):
|
||||||
notification_parse(response)
|
notification_parse(response)
|
||||||
|
|
||||||
|
|
||||||
def before_returning_resource_notifications(response):
|
def before_returning_resource_notifications(response):
|
||||||
for item in response['_items']:
|
for item in response['_items']:
|
||||||
if request.args.get('parse'):
|
if request.args.get('parse'):
|
||||||
|
@@ -7,6 +7,7 @@ from application import app
|
|||||||
|
|
||||||
encoding = Blueprint('encoding', __name__)
|
encoding = Blueprint('encoding', __name__)
|
||||||
|
|
||||||
|
|
||||||
@encoding.route('/zencoder/notifications', methods=['POST'])
|
@encoding.route('/zencoder/notifications', methods=['POST'])
|
||||||
def zencoder_notifications():
|
def zencoder_notifications():
|
||||||
if app.config['ENCODING_BACKEND'] == 'zencoder':
|
if app.config['ENCODING_BACKEND'] == 'zencoder':
|
||||||
|
@@ -2,6 +2,7 @@ from flask import g
|
|||||||
from eve.methods.post import post_internal
|
from eve.methods.post import post_internal
|
||||||
from application import app
|
from application import app
|
||||||
|
|
||||||
|
|
||||||
def notification_parse(notification):
|
def notification_parse(notification):
|
||||||
# notification = dict(a='n')
|
# notification = dict(a='n')
|
||||||
# TODO: finish fixing this
|
# TODO: finish fixing this
|
||||||
|
@@ -31,8 +31,8 @@ def check_permissions(resource, method, append_allowed_methods=False):
|
|||||||
# from there
|
# from there
|
||||||
computed_permissions = resource['node_type']['permissions']
|
computed_permissions = resource['node_type']['permissions']
|
||||||
else:
|
else:
|
||||||
# If the node_type is referenced with an ObjectID (was not embedded on
|
# If the node_type is referenced with an ObjectID (was not embedded
|
||||||
# request) query for if from the database and get the permissions
|
# on request) query for if from the database and get the permissions
|
||||||
|
|
||||||
# node_types_collection = app.data.driver.db['node_types']
|
# node_types_collection = app.data.driver.db['node_types']
|
||||||
# node_type = node_types_collection.find_one(resource['node_type'])
|
# node_type = node_types_collection.find_one(resource['node_type'])
|
||||||
|
Reference in New Issue
Block a user