Merge remote-tracking branch 'gsoc2016/Subtitle-1'
[mediagoblin.git] / mediagoblin / plugins / api / views.py
CommitLineData
a062149e
JW
1# GNU MediaGoblin -- federated, autonomous media hosting
2# Copyright (C) 2011, 2012 MediaGoblin contributors. See AUTHORS.
3#
4# This program is free software: you can redistribute it and/or modify
5# it under the terms of the GNU Affero General Public License as published by
6# the Free Software Foundation, either version 3 of the License, or
7# (at your option) any later version.
8#
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU Affero General Public License for more details.
13#
14# You should have received a copy of the GNU Affero General Public License
15# along with this program. If not, see <http://www.gnu.org/licenses/>.
16
17import json
4504dbba 18import logging
4504dbba 19
e49b7e02
BP
20import six
21
131b7495 22from werkzeug.exceptions import BadRequest
74af60bb 23from werkzeug.wrappers import Response
a062149e 24
131b7495 25from mediagoblin.tools.translate import pass_to_ugettext as _
1c694fbe 26from mediagoblin.tools.response import json_response
4504dbba 27from mediagoblin.decorators import require_active_login
4504dbba 28from mediagoblin.meddleware.csrf import csrf_exempt
54b4b28f 29from mediagoblin.media_types import FileTypeNotSupported
04e08d42 30from mediagoblin.plugins.api.tools import api_auth, get_entry_serializable
131b7495
CAW
31from mediagoblin.submit.lib import \
32 check_file_field, submit_media, get_upload_file_limits, \
33 FileUploadLimit, UserUploadLimit, UserPastUploadLimit
a062149e 34
4504dbba
JW
35_log = logging.getLogger(__name__)
36
37
38@csrf_exempt
39@api_auth
40@require_active_login
41def post_entry(request):
42 _log.debug('Posting entry')
09e528ac
JW
43
44 if request.method == 'OPTIONS':
45 return json_response({'status': 200})
46
4504dbba 47 if request.method != 'POST':
09e528ac 48 _log.debug('Must POST against post_entry')
cfa92229 49 raise BadRequest()
4504dbba 50
2ef2f46e 51 if not check_file_field(request, 'file'):
09e528ac 52 _log.debug('File field not found')
cfa92229 53 raise BadRequest()
4504dbba 54
131b7495
CAW
55 callback_url = request.form.get('callback_url')
56 if callback_url:
e49b7e02 57 callback_url = six.text_type(callback_url)
131b7495
CAW
58 try:
59 entry = submit_media(
60 mg_app=request.app, user=request.user,
61 submitted_file=request.files['file'],
62 filename=request.files['file'].filename,
e49b7e02
BP
63 title=six.text_type(request.form.get('title')),
64 description=six.text_type(request.form.get('description')),
65 license=six.text_type(request.form.get('license', '')),
f6bad0eb 66 tags_string=six.text_type(request.form.get('tags', '')),
131b7495
CAW
67 callback_url=callback_url)
68
69 return json_response(get_entry_serializable(entry, request.urlgen))
70
71 # Handle upload limit issues
72 except FileUploadLimit:
73 raise BadRequest(
74 _(u'Sorry, the file size is too big.'))
75 except UserUploadLimit:
76 raise BadRequest(
77 _('Sorry, uploading this file will put you over your'
78 ' upload limit.'))
79 except UserPastUploadLimit:
80 raise BadRequest(
81 _('Sorry, you have reached your upload limit.'))
54b4b28f
BB
82 except FileTypeNotSupported as e:
83 raise BadRequest(e)
4504dbba 84
a062149e
JW
85
86@api_auth
78fa73bc 87@require_active_login
a062149e 88def api_test(request):
a062149e
JW
89 user_data = {
90 'username': request.user.username,
91 'email': request.user.email}
92
74af60bb
SS
93 # TODO: This is the *only* thing using Response() here, should that
94 # not simply use json_response()?
6fa97824 95 return Response(json.dumps(user_data, sort_keys=True))
42c83752
JW
96
97
98def get_entries(request):
99 entries = request.db.MediaEntry.query
100
c92aa0d0 101 # TODO: Make it possible to fetch unprocessed media, or media in-processing
42c83752
JW
102 entries = entries.filter_by(state=u'processed')
103
c92aa0d0
JW
104 # TODO: Add sort order customization
105 entries = entries.order_by(request.db.MediaEntry.created.desc())
106
107 # TODO: Fetch default and upper limit from config
108 entries = entries.limit(int(request.GET.get('limit') or 10))
109
42c83752
JW
110 entries_serializable = []
111
112 for entry in entries:
85726f73 113 entries_serializable.append(get_entry_serializable(entry, request.urlgen))
42c83752
JW
114
115 return json_response(entries_serializable)