2010-11-23 10:30:03 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# vi:si:et:sw=4:sts=4:ts=4
|
|
|
|
from __future__ import division
|
2013-02-16 01:20:40 +00:00
|
|
|
import os
|
|
|
|
import re
|
2010-11-23 10:30:03 +00:00
|
|
|
|
|
|
|
from ox.utils import json
|
2013-02-16 01:20:40 +00:00
|
|
|
from ox.django.api import actions
|
2010-11-23 10:30:03 +00:00
|
|
|
from ox.django.decorators import login_required_json
|
2013-02-16 01:20:40 +00:00
|
|
|
from ox.django.http import HttpFileResponse
|
2010-11-23 10:30:03 +00:00
|
|
|
from ox.django.shortcuts import render_to_json_response, get_object_or_404_json, json_response
|
2013-02-19 16:39:50 +00:00
|
|
|
from django import forms
|
2013-02-21 13:28:36 +00:00
|
|
|
from django.db.models import Sum, Max
|
2013-02-19 07:25:14 +00:00
|
|
|
from django.conf import settings
|
2013-02-21 14:09:23 +00:00
|
|
|
from django.shortcuts import render_to_response
|
|
|
|
from django.template import RequestContext
|
2010-11-23 10:30:03 +00:00
|
|
|
|
2013-02-16 01:20:40 +00:00
|
|
|
from item import utils
|
2010-11-23 10:30:03 +00:00
|
|
|
import models
|
|
|
|
|
2013-02-16 01:20:40 +00:00
|
|
|
def get_text_or_404_json(id):
|
|
|
|
id = id.split(':')
|
|
|
|
username = id[0]
|
|
|
|
textname = ":".join(id[1:])
|
|
|
|
return get_object_or_404_json(models.Text, user__username=username, name=textname)
|
2011-01-01 11:44:42 +00:00
|
|
|
|
2013-02-16 01:20:40 +00:00
|
|
|
@login_required_json
|
|
|
|
def addText(request):
|
|
|
|
'''
|
2013-03-04 19:35:06 +00:00
|
|
|
takes {
|
2013-02-16 01:20:40 +00:00
|
|
|
name: value,
|
|
|
|
}
|
2013-03-04 19:35:06 +00:00
|
|
|
returns {
|
|
|
|
id:
|
|
|
|
name:
|
|
|
|
...
|
2013-02-16 01:20:40 +00:00
|
|
|
}
|
2010-11-23 10:30:03 +00:00
|
|
|
'''
|
2013-02-16 01:20:40 +00:00
|
|
|
data = json.loads(request.POST['data'])
|
2013-02-20 11:29:29 +00:00
|
|
|
data['name'] = re.sub(' \[\d+\]$', '', data.get('name', 'Untitled')).strip()
|
2013-02-16 01:20:40 +00:00
|
|
|
name = data['name']
|
|
|
|
if not name:
|
|
|
|
name = "Untitled"
|
|
|
|
num = 1
|
|
|
|
created = False
|
|
|
|
while not created:
|
|
|
|
text, created = models.Text.objects.get_or_create(name=name, user=request.user)
|
|
|
|
num += 1
|
|
|
|
name = data['name'] + ' [%d]' % num
|
2010-11-23 10:30:03 +00:00
|
|
|
|
2013-02-20 11:29:29 +00:00
|
|
|
del data['name']
|
|
|
|
if data:
|
|
|
|
text.edit(data, request.user)
|
2013-02-20 11:44:55 +00:00
|
|
|
else:
|
|
|
|
text.save()
|
2013-02-20 11:29:29 +00:00
|
|
|
|
2013-02-16 01:20:40 +00:00
|
|
|
if text.status == 'featured':
|
|
|
|
pos, created = models.Position.objects.get_or_create(text=text,
|
|
|
|
user=request.user, section='featured')
|
|
|
|
qs = models.Position.objects.filter(section='featured')
|
|
|
|
else:
|
|
|
|
pos, created = models.Position.objects.get_or_create(text=text,
|
|
|
|
user=request.user, section='personal')
|
|
|
|
qs = models.Position.objects.filter(user=request.user, section='personal')
|
|
|
|
pos.position = qs.aggregate(Max('position'))['position__max'] + 1
|
|
|
|
pos.save()
|
|
|
|
response = json_response(status=200, text='created')
|
2013-02-21 13:00:25 +00:00
|
|
|
response['data'] = text.json(user=request.user)
|
2013-02-16 01:20:40 +00:00
|
|
|
return render_to_json_response(response)
|
|
|
|
actions.register(addText, cache=False)
|
|
|
|
|
|
|
|
def getText(request):
|
|
|
|
'''
|
2013-03-04 19:35:06 +00:00
|
|
|
takes {
|
2013-02-16 01:20:40 +00:00
|
|
|
id: textid
|
|
|
|
}
|
2013-03-04 19:35:06 +00:00
|
|
|
returns {
|
2013-02-16 01:20:40 +00:00
|
|
|
id:
|
|
|
|
text:
|
|
|
|
...
|
|
|
|
}
|
2010-11-23 10:30:03 +00:00
|
|
|
'''
|
2013-02-16 01:20:40 +00:00
|
|
|
response = json_response()
|
|
|
|
data = json.loads(request.POST['data'])
|
|
|
|
public_id = data['id']
|
|
|
|
if public_id == '':
|
|
|
|
qs = models.Text.objects.filter(name='')
|
|
|
|
if qs.count() == 0:
|
2013-03-05 12:43:28 +00:00
|
|
|
text = None
|
|
|
|
response['data'] = {
|
|
|
|
'name': '',
|
|
|
|
'text': '',
|
|
|
|
'type': 'html',
|
|
|
|
'editable': not request.user.is_anonymous() and request.user.get_profile().capability('canEditFeaturedTexts')
|
|
|
|
}
|
2013-02-16 01:20:40 +00:00
|
|
|
else:
|
|
|
|
text = qs[0]
|
|
|
|
else:
|
|
|
|
text = get_text_or_404_json(data['id'])
|
2013-03-05 12:43:28 +00:00
|
|
|
if text:
|
|
|
|
response['data'] = text.json(user=request.user)
|
2010-11-23 10:30:03 +00:00
|
|
|
return render_to_json_response(response)
|
2010-12-22 07:45:37 +00:00
|
|
|
actions.register(getText)
|
2010-11-23 10:30:03 +00:00
|
|
|
|
2011-01-01 11:44:42 +00:00
|
|
|
|
|
|
|
@login_required_json
|
|
|
|
def editText(request):
|
|
|
|
'''
|
2013-03-04 19:35:06 +00:00
|
|
|
takes {
|
2013-02-16 01:20:40 +00:00
|
|
|
id:
|
|
|
|
text:
|
|
|
|
public: boolean
|
|
|
|
}
|
2013-03-04 19:35:06 +00:00
|
|
|
returns {
|
2013-02-16 01:20:40 +00:00
|
|
|
id:
|
|
|
|
text:
|
|
|
|
...
|
|
|
|
}
|
2011-01-01 11:44:42 +00:00
|
|
|
'''
|
2013-02-16 01:20:40 +00:00
|
|
|
response = json_response()
|
|
|
|
data = json.loads(request.POST['data'])
|
|
|
|
if data['id']:
|
|
|
|
public_id = data['id'].split(':')
|
|
|
|
username = public_id[0]
|
|
|
|
name = ":".join(public_id[1:])
|
|
|
|
text, created = models.Text.objects.get_or_create(name=name, user=models.User.objects.get(username=username))
|
|
|
|
if created:
|
|
|
|
text.user = request.user
|
|
|
|
else:
|
|
|
|
qs = models.Text.objects.filter(name='')
|
|
|
|
if qs.count() == 0:
|
|
|
|
if request.user.get_profile().capability('canEditFeaturedTexts'):
|
|
|
|
text = models.Text(name='', user=request.user)
|
|
|
|
text.save()
|
|
|
|
else:
|
|
|
|
response = json_response(status=403, text='permission denied')
|
|
|
|
return render_to_json_response(response)
|
|
|
|
else:
|
|
|
|
text = qs[0]
|
|
|
|
if text.editable(request.user):
|
2013-02-20 11:29:29 +00:00
|
|
|
text.edit(data, request.user)
|
2013-02-16 01:20:40 +00:00
|
|
|
response['data'] = text.json(user=request.user)
|
|
|
|
else:
|
|
|
|
response = json_response(status=403, text='permission denied')
|
2011-01-01 11:44:42 +00:00
|
|
|
return render_to_json_response(response)
|
2011-01-13 08:33:14 +00:00
|
|
|
actions.register(editText, cache=False)
|
2011-01-01 11:44:42 +00:00
|
|
|
|
|
|
|
|
2013-02-16 01:20:40 +00:00
|
|
|
def _order_query(qs, sort):
|
|
|
|
order_by = []
|
|
|
|
for e in sort:
|
|
|
|
operator = e['operator']
|
|
|
|
if operator != '-':
|
|
|
|
operator = ''
|
|
|
|
key = {
|
|
|
|
'subscribed': 'subscribed_users',
|
|
|
|
'items': 'numberofitems'
|
|
|
|
}.get(e['key'], e['key'])
|
|
|
|
order = '%s%s' % (operator, key)
|
|
|
|
order_by.append(order)
|
|
|
|
if key == 'subscribers':
|
|
|
|
qs = qs.annotate(subscribers=Sum('subscribed_users'))
|
|
|
|
if order_by:
|
|
|
|
qs = qs.order_by(*order_by)
|
|
|
|
qs = qs.distinct()
|
|
|
|
return qs
|
|
|
|
|
|
|
|
def parse_query(data, user):
|
|
|
|
query = {}
|
|
|
|
query['range'] = [0, 100]
|
|
|
|
query['sort'] = [{'key':'user', 'operator':'+'}, {'key':'name', 'operator':'+'}]
|
|
|
|
for key in ('keys', 'group', 'text', 'range', 'position', 'positions', 'sort'):
|
|
|
|
if key in data:
|
|
|
|
query[key] = data[key]
|
|
|
|
query['qs'] = models.Text.objects.find(data, user).exclude(name='')
|
|
|
|
return query
|
|
|
|
|
|
|
|
|
|
|
|
def findTexts(request):
|
2010-11-23 10:30:03 +00:00
|
|
|
'''
|
2013-03-04 19:35:06 +00:00
|
|
|
takes {
|
2013-02-16 01:20:40 +00:00
|
|
|
query: {
|
|
|
|
conditions: [
|
|
|
|
{
|
|
|
|
key: 'user',
|
|
|
|
value: 'something',
|
|
|
|
operator: '='
|
|
|
|
}
|
|
|
|
]
|
|
|
|
operator: ","
|
|
|
|
},
|
|
|
|
sort: [{key: 'name', operator: '+'}],
|
|
|
|
range: [0, 100]
|
|
|
|
keys: []
|
|
|
|
}
|
|
|
|
|
|
|
|
possible query keys:
|
|
|
|
name, user, featured, subscribed
|
|
|
|
|
|
|
|
possible keys:
|
|
|
|
name, user, featured, subscribed, query
|
|
|
|
|
|
|
|
}
|
2013-03-04 19:35:06 +00:00
|
|
|
returns {
|
|
|
|
items: [object]
|
2013-02-16 01:20:40 +00:00
|
|
|
}
|
2010-11-23 10:30:03 +00:00
|
|
|
'''
|
2013-02-16 01:20:40 +00:00
|
|
|
data = json.loads(request.POST['data'])
|
|
|
|
query = parse_query(data, request.user)
|
|
|
|
|
|
|
|
#order
|
|
|
|
is_section_request = query['sort'] == [{u'operator': u'+', u'key': u'position'}]
|
|
|
|
def is_featured_condition(x):
|
|
|
|
return x['key'] == 'status' and \
|
|
|
|
x['value'] == 'featured' and \
|
|
|
|
x['operator'] in ('=', '==')
|
|
|
|
is_featured = len(filter(is_featured_condition, data['query'].get('conditions', []))) > 0
|
|
|
|
|
|
|
|
if is_section_request:
|
|
|
|
qs = query['qs']
|
|
|
|
if not is_featured and not request.user.is_anonymous():
|
|
|
|
qs = qs.filter(position__in=models.Position.objects.filter(user=request.user))
|
|
|
|
qs = qs.order_by('position__position')
|
|
|
|
else:
|
|
|
|
qs = _order_query(query['qs'], query['sort'])
|
|
|
|
|
|
|
|
response = json_response()
|
|
|
|
if 'keys' in data:
|
|
|
|
qs = qs[query['range'][0]:query['range'][1]]
|
|
|
|
|
|
|
|
response['data']['items'] = [l.json(data['keys'], request.user) for l in qs]
|
|
|
|
elif 'position' in data:
|
|
|
|
#FIXME: actually implement position requests
|
|
|
|
response['data']['position'] = 0
|
|
|
|
elif 'positions' in data:
|
|
|
|
ids = [i.get_id() for i in qs]
|
|
|
|
response['data']['positions'] = utils.get_positions(ids, query['positions'])
|
|
|
|
else:
|
|
|
|
response['data']['items'] = qs.count()
|
2010-11-23 10:30:03 +00:00
|
|
|
return render_to_json_response(response)
|
2013-02-16 01:20:40 +00:00
|
|
|
actions.register(findTexts)
|
|
|
|
|
|
|
|
|
|
|
|
@login_required_json
|
|
|
|
def removeText(request):
|
|
|
|
'''
|
2013-03-04 19:35:06 +00:00
|
|
|
takes {
|
|
|
|
id: string,
|
2013-02-16 01:20:40 +00:00
|
|
|
}
|
2013-03-04 19:35:06 +00:00
|
|
|
returns {
|
2013-02-16 01:20:40 +00:00
|
|
|
}
|
|
|
|
'''
|
|
|
|
data = json.loads(request.POST['data'])
|
|
|
|
text = get_text_or_404_json(data['id'])
|
|
|
|
response = json_response()
|
|
|
|
if text.editable(request.user):
|
|
|
|
text.delete()
|
|
|
|
else:
|
|
|
|
response = json_response(status=403, text='not allowed')
|
|
|
|
return render_to_json_response(response)
|
|
|
|
actions.register(removeText, cache=False)
|
|
|
|
|
|
|
|
|
|
|
|
@login_required_json
|
|
|
|
def subscribeToText(request):
|
|
|
|
'''
|
2013-03-04 19:35:06 +00:00
|
|
|
takes {
|
|
|
|
id: string,
|
2013-02-16 01:20:40 +00:00
|
|
|
}
|
2013-03-04 19:35:06 +00:00
|
|
|
returns {}
|
2013-02-16 01:20:40 +00:00
|
|
|
'''
|
|
|
|
data = json.loads(request.POST['data'])
|
|
|
|
text = get_text_or_404_json(data['id'])
|
|
|
|
user = request.user
|
|
|
|
if text.status == 'public' and \
|
|
|
|
text.subscribed_users.filter(username=user.username).count() == 0:
|
|
|
|
text.subscribed_users.add(user)
|
|
|
|
pos, created = models.Position.objects.get_or_create(text=text, user=user, section='public')
|
|
|
|
if created:
|
|
|
|
qs = models.Position.objects.filter(user=user, section='public')
|
|
|
|
pos.position = qs.aggregate(Max('position'))['position__max'] + 1
|
|
|
|
pos.save()
|
|
|
|
response = json_response()
|
|
|
|
return render_to_json_response(response)
|
|
|
|
actions.register(subscribeToText, cache=False)
|
|
|
|
|
|
|
|
|
|
|
|
@login_required_json
|
|
|
|
def unsubscribeFromText(request):
|
|
|
|
'''
|
2013-03-04 19:35:06 +00:00
|
|
|
takes {
|
|
|
|
id: string,
|
2013-02-16 01:20:40 +00:00
|
|
|
user: username(only admins)
|
|
|
|
}
|
2013-03-04 19:35:06 +00:00
|
|
|
returns {}
|
2013-02-16 01:20:40 +00:00
|
|
|
'''
|
|
|
|
data = json.loads(request.POST['data'])
|
|
|
|
text = get_text_or_404_json(data['id'])
|
|
|
|
user = request.user
|
|
|
|
text.subscribed_users.remove(user)
|
|
|
|
models.Position.objects.filter(text=text, user=user, section='public').delete()
|
|
|
|
response = json_response()
|
|
|
|
return render_to_json_response(response)
|
|
|
|
actions.register(unsubscribeFromText, cache=False)
|
|
|
|
|
|
|
|
|
|
|
|
@login_required_json
|
|
|
|
def sortTexts(request):
|
|
|
|
'''
|
2013-03-04 19:35:06 +00:00
|
|
|
takes {
|
2013-02-16 01:20:40 +00:00
|
|
|
section: 'personal',
|
|
|
|
ids: [1,2,4,3]
|
|
|
|
}
|
2013-03-04 19:35:06 +00:00
|
|
|
known sections: 'personal', 'public', 'featured'
|
|
|
|
featured can only be edited by admins
|
|
|
|
|
|
|
|
returns {}
|
2013-02-16 01:20:40 +00:00
|
|
|
'''
|
|
|
|
data = json.loads(request.POST['data'])
|
|
|
|
position = 0
|
|
|
|
section = data['section']
|
|
|
|
#ids = list(set(data['ids']))
|
|
|
|
ids = data['ids']
|
|
|
|
if section == 'featured' and not request.user.get_profile().capability('canEditFeaturedTexts'):
|
|
|
|
response = json_response(status=403, text='not allowed')
|
|
|
|
else:
|
|
|
|
user = request.user
|
|
|
|
if section == 'featured':
|
|
|
|
for i in ids:
|
|
|
|
l = get_text_or_404_json(i)
|
|
|
|
qs = models.Position.objects.filter(section=section, text=l)
|
|
|
|
if qs.count() > 0:
|
|
|
|
pos = qs[0]
|
|
|
|
else:
|
|
|
|
pos = models.Position(text=l, user=user, section=section)
|
|
|
|
if pos.position != position:
|
|
|
|
pos.position = position
|
|
|
|
pos.save()
|
|
|
|
position += 1
|
|
|
|
models.Position.objects.filter(section=section, text=l).exclude(id=pos.id).delete()
|
|
|
|
else:
|
|
|
|
for i in ids:
|
|
|
|
l = get_text_or_404_json(i)
|
|
|
|
pos, created = models.Position.objects.get_or_create(text=l,
|
|
|
|
user=request.user, section=section)
|
|
|
|
if pos.position != position:
|
|
|
|
pos.position = position
|
|
|
|
pos.save()
|
|
|
|
position += 1
|
|
|
|
|
|
|
|
response = json_response()
|
|
|
|
return render_to_json_response(response)
|
|
|
|
actions.register(sortTexts, cache=False)
|
|
|
|
|
|
|
|
|
|
|
|
def icon(request, id, size=16):
|
|
|
|
if not size:
|
|
|
|
size = 16
|
|
|
|
|
|
|
|
id = id.split(':')
|
|
|
|
username = id[0]
|
|
|
|
textname = ":".join(id[1:])
|
|
|
|
qs = models.Text.objects.filter(user__username=username, name=textname)
|
|
|
|
if qs.count() == 1 and qs[0].accessible(request.user):
|
|
|
|
text = qs[0]
|
|
|
|
icon = text.get_icon(int(size))
|
|
|
|
else:
|
|
|
|
icon = os.path.join(settings.STATIC_ROOT, 'jpg/list256.jpg')
|
|
|
|
return HttpFileResponse(icon, content_type='image/jpeg')
|
2013-02-19 16:39:50 +00:00
|
|
|
|
|
|
|
class ChunkForm(forms.Form):
|
|
|
|
chunk = forms.FileField()
|
|
|
|
chunkId = forms.IntegerField(required=False)
|
|
|
|
done = forms.IntegerField(required=False)
|
|
|
|
|
2013-02-21 14:09:23 +00:00
|
|
|
def pdf_viewer(request, id):
|
|
|
|
text = get_text_or_404_json(id)
|
|
|
|
if text.type == 'pdf' and text.file and not text.uploading:
|
|
|
|
context = RequestContext(request, {
|
|
|
|
'editable': json.dumps(text.editable(request.user)),
|
2013-02-21 14:51:46 +00:00
|
|
|
'embeds': json.dumps(text.embeds),
|
2013-02-21 14:09:23 +00:00
|
|
|
'settings': settings,
|
|
|
|
'url': text.get_absolute_pdf_url()
|
|
|
|
})
|
|
|
|
return render_to_response('pdf/viewer.html', context)
|
|
|
|
response = json_response(status=404, text='file not found')
|
|
|
|
return render_to_json_response(response)
|
|
|
|
|
2013-02-19 16:39:50 +00:00
|
|
|
def pdf(request, id):
|
|
|
|
text = get_text_or_404_json(id)
|
|
|
|
if text.type == 'pdf' and text.file and not text.uploading:
|
|
|
|
return HttpFileResponse(text.file.path, content_type='application/pdf')
|
|
|
|
response = json_response(status=404, text='file not found')
|
2013-02-21 13:28:36 +00:00
|
|
|
return render_to_json_response(response)
|
2013-02-19 16:39:50 +00:00
|
|
|
|
|
|
|
@login_required_json
|
|
|
|
def upload(request):
|
|
|
|
text = get_text_or_404_json(request.POST['id'])
|
|
|
|
if text.editable(request.user):
|
|
|
|
#post next chunk
|
|
|
|
if 'chunk' in request.FILES:
|
|
|
|
form = ChunkForm(request.POST, request.FILES)
|
|
|
|
if form.is_valid() and text.editable(request.user):
|
|
|
|
c = form.cleaned_data['chunk']
|
|
|
|
chunk_id = form.cleaned_data['chunkId']
|
|
|
|
response = {
|
|
|
|
'result': 1,
|
|
|
|
'resultUrl': request.build_absolute_uri(text.get_absolute_url())
|
|
|
|
}
|
|
|
|
if not text.save_chunk(c, chunk_id, form.cleaned_data['done']):
|
|
|
|
response['result'] = -1
|
|
|
|
if form.cleaned_data['done']:
|
|
|
|
response['done'] = 1
|
|
|
|
return render_to_json_response(response)
|
|
|
|
#init upload
|
|
|
|
else:
|
|
|
|
text.uploading = True
|
|
|
|
if text.file:
|
|
|
|
text.file.delete()
|
|
|
|
text.save()
|
|
|
|
return render_to_json_response({
|
|
|
|
'uploadUrl': request.build_absolute_uri('/api/upload/text'),
|
|
|
|
'url': request.build_absolute_uri(text.get_absolute_url()),
|
|
|
|
'result': 1
|
|
|
|
})
|
|
|
|
else:
|
|
|
|
response = json_response(status=404, text='permission denied')
|
|
|
|
response = json_response(status=400, text='this request requires POST')
|
|
|
|
return render_to_json_response(response)
|