remove config video.download; use canDownloadVideo capability instead.
This commit is contained in:
parent
662c7ec12a
commit
ce03870fe6
6 changed files with 30 additions and 32 deletions
|
@ -836,7 +836,6 @@
|
|||
// fixme: this should include colors
|
||||
"userLevels": ["guest", "member", "friend", "staff", "admin"],
|
||||
"video": {
|
||||
"download": false,
|
||||
"formats": ["webm", "mp4"],
|
||||
"previewRatio": 1.7777777778,
|
||||
"resolutions": [96]
|
||||
|
|
|
@ -874,7 +874,6 @@
|
|||
// fixme: this should include colors
|
||||
"userLevels": ["guest", "member", "student", "staff", "admin"],
|
||||
"video": {
|
||||
"download": false,
|
||||
"formats": ["webm", "mp4"],
|
||||
"previewRatio": 1.375,
|
||||
"resolutions": [240, 480]
|
||||
|
|
|
@ -753,7 +753,6 @@
|
|||
},
|
||||
"userLevels": ["guest", "member", "staff", "admin"],
|
||||
"video": {
|
||||
"download": true,
|
||||
"formats": ["webm", "mp4"],
|
||||
"previewRatio": 1.3333333333,
|
||||
//supported resolutions are
|
||||
|
|
|
@ -1133,7 +1133,6 @@ class Item(models.Model):
|
|||
self.select_frame()
|
||||
self.make_poster(True)
|
||||
self.make_icon()
|
||||
if settings.CONFIG['video']['download']:
|
||||
self.make_torrent()
|
||||
self.rendered = streams.count() > 0
|
||||
self.save()
|
||||
|
|
|
@ -29,6 +29,7 @@ import tasks
|
|||
from archive.models import File, Stream
|
||||
from archive import extract
|
||||
from clip.models import Clip
|
||||
from user.models import has_capability
|
||||
|
||||
from ox.django.api import actions
|
||||
|
||||
|
@ -475,18 +476,9 @@ def get(request):
|
|||
if not data['keys'] or 'groups' in data['keys'] \
|
||||
and request.user.get_profile().capability('canEditMetadata'):
|
||||
info['groups'] = [g.name for g in item.groups.all()]
|
||||
def check_capability(capability):
|
||||
if request.user.is_anonymous():
|
||||
level = 'guest'
|
||||
else:
|
||||
level = request.user.get_profile().get_level()
|
||||
if request.user == item.user:
|
||||
return True
|
||||
return level in settings.CONFIG['capabilities'][capability] \
|
||||
and settings.CONFIG['capabilities'][capability][level]
|
||||
for k in settings.CONFIG['itemKeys']:
|
||||
if 'capability' in k \
|
||||
and not check_capability(k['capability']) \
|
||||
and not (request.user == item.user or can_capability(user, k['capability'])) \
|
||||
and k['id'] in info \
|
||||
and k['id'] not in ('parts', 'durations', 'duration'):
|
||||
del info[k['id']]
|
||||
|
@ -1018,7 +1010,9 @@ def atom_xml(request):
|
|||
|
||||
format = ET.SubElement(entry, "format")
|
||||
format.attrib['xmlns'] = 'http://transmission.cc/FileFormat'
|
||||
stream = item.streams().filter(source=None).order_by('-id')[0]
|
||||
streams = item.streams().filter(source=None).order_by('-id')
|
||||
if streams.exists():
|
||||
stream = streams[0]
|
||||
for key in ('size', 'duration', 'video_codec',
|
||||
'framerate', 'width', 'height',
|
||||
'audio_codec', 'samplerate', 'channels'):
|
||||
|
@ -1037,7 +1031,7 @@ def atom_xml(request):
|
|||
el = ET.SubElement(format, 'pixel_aspect_ratio')
|
||||
el.text = u"1:1"
|
||||
|
||||
if settings.CONFIG['video'].get('download'):
|
||||
if has_capability(request.user, 'canDownloadVideo'):
|
||||
if item.torrent:
|
||||
el = ET.SubElement(entry, "link")
|
||||
el.attrib['rel'] = 'enclosure'
|
||||
|
|
|
@ -339,3 +339,11 @@ def user_json(user, keys=None):
|
|||
if key not in keys:
|
||||
del j[key]
|
||||
return j
|
||||
|
||||
def has_capability(user, capability):
|
||||
if user.is_anonymous():
|
||||
level = 'guest'
|
||||
else:
|
||||
level = user.get_profile().get_level()
|
||||
return level in settings.CONFIG['capabilities'][capability] \
|
||||
and settings.CONFIG['capabilities'][capability][level]
|
||||
|
|
Loading…
Reference in a new issue