2012-08-28 18:44:51 +02:00
|
|
|
from django.contrib.auth import authenticate, login
|
|
|
|
from django.contrib.auth.decorators import login_required
|
|
|
|
from django.core.urlresolvers import reverse
|
2012-09-05 22:21:25 +02:00
|
|
|
from django.http import HttpResponse, HttpResponseRedirect
|
2012-08-28 18:44:51 +02:00
|
|
|
from django.shortcuts import render_to_response
|
|
|
|
from django.template import RequestContext
|
|
|
|
from django.shortcuts import render
|
2012-08-28 23:41:04 +02:00
|
|
|
from django.utils.timezone import utc
|
2012-08-28 18:44:51 +02:00
|
|
|
|
|
|
|
from django.contrib.auth.models import User
|
2012-08-30 19:56:15 +02:00
|
|
|
from zephyr.models import Zephyr, UserProfile, ZephyrClass, Subscription, \
|
2012-09-05 21:49:56 +02:00
|
|
|
Recipient, filter_by_subscriptions, get_display_recipient, get_huddle, \
|
2012-09-07 17:04:41 +02:00
|
|
|
create_user_profile, Realm, UserMessage
|
2012-08-28 18:44:51 +02:00
|
|
|
from zephyr.forms import RegistrationForm
|
|
|
|
|
2012-08-28 22:56:21 +02:00
|
|
|
import tornado.web
|
|
|
|
from zephyr.decorator import asynchronous
|
|
|
|
|
2012-08-28 18:44:51 +02:00
|
|
|
import datetime
|
|
|
|
import simplejson
|
2012-09-05 01:11:25 +02:00
|
|
|
import socket
|
2012-08-28 18:44:51 +02:00
|
|
|
|
2012-09-05 23:38:20 +02:00
|
|
|
def require_post(view_func):
|
|
|
|
def _wrapped_view_func(request, *args, **kwargs):
|
|
|
|
if request.method != "POST":
|
|
|
|
return HttpResponseBadRequest('This form can only be submitted by POST.')
|
|
|
|
return view_func(request, *args, **kwargs)
|
|
|
|
return _wrapped_view_func
|
|
|
|
|
2012-09-05 22:21:25 +02:00
|
|
|
def json_response(res_type="success", msg="", status=200):
|
|
|
|
return HttpResponse(content=simplejson.dumps({"result":res_type, "msg":msg}),
|
|
|
|
mimetype='application/json', status=status)
|
|
|
|
|
|
|
|
def json_success():
|
|
|
|
return json_response()
|
|
|
|
|
|
|
|
def json_error(msg):
|
|
|
|
return json_response(res_type="error", msg=msg, status=400)
|
|
|
|
|
2012-08-28 18:44:51 +02:00
|
|
|
def register(request):
|
|
|
|
if request.method == 'POST':
|
|
|
|
form = RegistrationForm(request.POST)
|
|
|
|
if form.is_valid():
|
|
|
|
username = request.POST['username']
|
|
|
|
password = request.POST['password']
|
2012-09-05 21:49:56 +02:00
|
|
|
domain = request.POST['domain']
|
|
|
|
realm = Realm.objects.filter(domain=domain)
|
|
|
|
if not realm:
|
|
|
|
realm = Realm(domain=domain)
|
|
|
|
else:
|
|
|
|
realm = Realm.objects.get(domain=domain)
|
|
|
|
user = User.objects.create_user(username=username, password=password)
|
|
|
|
user.save()
|
|
|
|
create_user_profile(user, realm)
|
|
|
|
login(request, authenticate(username=username, password=password))
|
2012-08-28 18:44:51 +02:00
|
|
|
return HttpResponseRedirect(reverse('zephyr.views.home'))
|
|
|
|
else:
|
|
|
|
form = RegistrationForm()
|
|
|
|
|
|
|
|
return render(request, 'zephyr/register.html', {
|
|
|
|
'form': form,
|
|
|
|
})
|
|
|
|
|
|
|
|
def accounts_home(request):
|
|
|
|
return render_to_response('zephyr/accounts_home.html',
|
2012-09-04 23:21:30 +02:00
|
|
|
context_instance=RequestContext(request))
|
|
|
|
|
2012-08-28 18:44:51 +02:00
|
|
|
def home(request):
|
|
|
|
if not request.user.is_authenticated():
|
|
|
|
return HttpResponseRedirect('accounts/home/')
|
2012-09-07 17:04:41 +02:00
|
|
|
user_profile = UserProfile.objects.get(user=request.user)
|
2012-08-28 18:44:51 +02:00
|
|
|
|
2012-09-07 17:04:41 +02:00
|
|
|
zephyrs = [um.message for um in
|
|
|
|
UserMessage.objects.filter(user_profile=user_profile)]
|
2012-08-28 21:27:42 +02:00
|
|
|
|
|
|
|
if user_profile.pointer == -1 and zephyrs:
|
2012-08-28 18:44:51 +02:00
|
|
|
user_profile.pointer = min([zephyr.id for zephyr in zephyrs])
|
|
|
|
user_profile.save()
|
2012-08-30 19:56:15 +02:00
|
|
|
zephyr_json = simplejson.dumps([zephyr.to_dict() for zephyr in zephyrs])
|
2012-09-04 20:31:23 +02:00
|
|
|
|
|
|
|
personals = filter_by_subscriptions(Zephyr.objects.filter(
|
|
|
|
recipient__type="personal").all(), request.user)
|
|
|
|
people = simplejson.dumps(list(
|
2012-09-05 17:41:53 +02:00
|
|
|
set(get_display_recipient(zephyr.recipient) for zephyr in personals)))
|
2012-09-04 20:31:23 +02:00
|
|
|
|
|
|
|
publics = filter_by_subscriptions(Zephyr.objects.filter(
|
|
|
|
recipient__type="class").all(), request.user)
|
2012-09-05 22:15:38 +02:00
|
|
|
|
|
|
|
subscriptions = Subscription.objects.filter(userprofile_id=user_profile, active=True)
|
2012-09-06 17:06:25 +02:00
|
|
|
classes = simplejson.dumps([get_display_recipient(sub.recipient) for sub in subscriptions
|
|
|
|
if sub.recipient.type == "class"])
|
2012-09-05 22:15:38 +02:00
|
|
|
|
2012-09-05 17:41:53 +02:00
|
|
|
instances = simplejson.dumps(list(
|
|
|
|
set(zephyr.instance for zephyr in publics)))
|
2012-09-04 20:31:23 +02:00
|
|
|
|
2012-08-30 19:56:15 +02:00
|
|
|
return render_to_response('zephyr/index.html',
|
|
|
|
{'zephyr_json' : zephyr_json,
|
2012-09-04 20:31:23 +02:00
|
|
|
'user_profile': user_profile,
|
|
|
|
'people' : people,
|
|
|
|
'classes' : classes,
|
|
|
|
'instances' : instances},
|
2012-08-28 18:44:51 +02:00
|
|
|
context_instance=RequestContext(request))
|
|
|
|
|
2012-09-04 17:39:12 +02:00
|
|
|
@login_required
|
2012-09-05 23:38:20 +02:00
|
|
|
@require_post
|
2012-08-28 18:44:51 +02:00
|
|
|
def update(request):
|
2012-09-06 20:52:23 +02:00
|
|
|
user_profile = UserProfile.objects.get(user=request.user)
|
|
|
|
pointer = request.POST.get('pointer')
|
|
|
|
if not pointer:
|
|
|
|
return json_error("Missing pointer")
|
|
|
|
|
|
|
|
try:
|
|
|
|
pointer = int(pointer)
|
|
|
|
except ValueError:
|
|
|
|
return json_error("Invalid pointer: must be an integer")
|
|
|
|
|
|
|
|
if pointer < 0:
|
|
|
|
return json_error("Invalid pointer value")
|
|
|
|
|
|
|
|
user_profile.pointer = pointer
|
|
|
|
user_profile.save()
|
2012-09-05 22:21:25 +02:00
|
|
|
return json_success()
|
2012-08-28 18:44:51 +02:00
|
|
|
|
2012-08-28 22:56:21 +02:00
|
|
|
@asynchronous
|
2012-09-05 23:38:20 +02:00
|
|
|
@require_post
|
2012-08-28 22:56:21 +02:00
|
|
|
def get_updates_longpoll(request, handler):
|
2012-08-28 23:32:05 +02:00
|
|
|
last_received = request.POST.get('last_received')
|
2012-08-28 22:56:21 +02:00
|
|
|
if not last_received:
|
|
|
|
# TODO: return error?
|
|
|
|
pass
|
|
|
|
|
|
|
|
user = request.user
|
|
|
|
user_profile = UserProfile.objects.get(user=user)
|
|
|
|
|
|
|
|
def on_receive(zephyrs):
|
|
|
|
if handler.request.connection.stream.closed():
|
|
|
|
return
|
|
|
|
try:
|
2012-08-30 19:56:15 +02:00
|
|
|
handler.finish({'zephyrs': [zephyr.to_dict() for zephyr in zephyrs]})
|
2012-08-28 22:56:21 +02:00
|
|
|
except socket.error, e:
|
|
|
|
pass
|
|
|
|
|
|
|
|
# We need to replace this abstraction with the message list
|
|
|
|
user_profile.add_callback(handler.async_callback(on_receive), last_received)
|
2012-08-28 18:44:51 +02:00
|
|
|
|
2012-09-06 22:00:39 +02:00
|
|
|
@login_required
|
|
|
|
@require_post
|
2012-09-06 21:52:03 +02:00
|
|
|
def zephyr(request):
|
|
|
|
return zephyr_backend(request, request.user)
|
|
|
|
|
2012-09-06 22:00:39 +02:00
|
|
|
@login_required
|
|
|
|
@require_post
|
2012-09-06 22:01:50 +02:00
|
|
|
def forge_zephyr(request):
|
|
|
|
username = request.POST['sender']
|
2012-09-06 22:00:39 +02:00
|
|
|
user_profile = UserProfile.objects.get(user=request.user)
|
|
|
|
try:
|
|
|
|
user = User.objects.get(username=username)
|
2012-09-06 22:04:42 +02:00
|
|
|
except User.DoesNotExist:
|
2012-09-06 22:00:39 +02:00
|
|
|
# forge a user for this person
|
|
|
|
user = User.objects.create_user(username=username, password="test")
|
|
|
|
user.save()
|
|
|
|
create_user_profile(user, user_profile.realm)
|
|
|
|
return zephyr_backend(request, user)
|
|
|
|
|
2012-08-28 18:44:51 +02:00
|
|
|
@login_required
|
2012-09-05 23:38:20 +02:00
|
|
|
@require_post
|
2012-09-06 21:52:03 +02:00
|
|
|
def zephyr_backend(request, sender):
|
2012-09-05 22:30:50 +02:00
|
|
|
user_profile = UserProfile.objects.get(user=request.user)
|
2012-09-04 23:43:56 +02:00
|
|
|
zephyr_type = request.POST["type"]
|
|
|
|
if zephyr_type == 'class':
|
|
|
|
class_name = request.POST['class']
|
2012-09-05 22:30:50 +02:00
|
|
|
if ZephyrClass.objects.filter(name=class_name, realm=user_profile.realm):
|
|
|
|
my_class = ZephyrClass.objects.get(name=class_name, realm=user_profile.realm)
|
2012-09-04 23:43:56 +02:00
|
|
|
else:
|
|
|
|
my_class = ZephyrClass()
|
|
|
|
my_class.name = class_name
|
2012-09-06 21:34:05 +02:00
|
|
|
my_class.realm = user_profile.realm
|
2012-09-04 23:43:56 +02:00
|
|
|
my_class.save()
|
2012-09-06 21:43:35 +02:00
|
|
|
recipient = Recipient(type_id=my_class.id, type="class")
|
|
|
|
recipient.save()
|
2012-09-05 22:26:20 +02:00
|
|
|
try:
|
|
|
|
recipient = Recipient.objects.get(type_id=my_class.id, type="class")
|
|
|
|
except Recipient.DoesNotExist:
|
|
|
|
return json_error("Invalid class")
|
2012-09-04 23:43:56 +02:00
|
|
|
elif zephyr_type == "personal":
|
2012-09-04 23:20:21 +02:00
|
|
|
recipient_data = request.POST['recipient']
|
|
|
|
if ',' in recipient_data:
|
2012-09-05 17:19:03 +02:00
|
|
|
# This is actually a huddle message, which shares the
|
|
|
|
# "personal" zephyr sending form
|
2012-09-04 23:20:21 +02:00
|
|
|
recipients = [r.strip() for r in recipient_data.split(',')]
|
2012-09-05 17:19:03 +02:00
|
|
|
# Ignore any blank recipients
|
2012-09-05 17:14:12 +02:00
|
|
|
recipients = [r for r in recipients if r]
|
2012-09-05 23:49:24 +02:00
|
|
|
recipient_ids = []
|
|
|
|
for recipient in recipients:
|
|
|
|
try:
|
|
|
|
recipient_ids.append(
|
|
|
|
UserProfile.objects.get(user=User.objects.get(username=recipient)).id)
|
|
|
|
except User.DoesNotExist, e:
|
|
|
|
return json_error("Invalid username '%s'" % (recipient))
|
2012-09-05 17:32:05 +02:00
|
|
|
# Make sure the sender is included in the huddle
|
2012-09-04 23:20:21 +02:00
|
|
|
recipient_ids.append(UserProfile.objects.get(user=request.user).id)
|
|
|
|
huddle = get_huddle(recipient_ids)
|
|
|
|
recipient = Recipient.objects.get(type_id=huddle.pk, type="huddle")
|
|
|
|
else:
|
2012-09-05 17:19:03 +02:00
|
|
|
# This is actually a personal message
|
2012-09-05 19:36:58 +02:00
|
|
|
if not User.objects.filter(username=recipient_data):
|
2012-09-05 22:21:25 +02:00
|
|
|
return json_error("Invalid username")
|
2012-09-05 19:36:58 +02:00
|
|
|
|
|
|
|
recipient_user = User.objects.get(username=recipient_data)
|
2012-09-04 23:20:21 +02:00
|
|
|
recipient_user_profile = UserProfile.objects.get(user=recipient_user)
|
|
|
|
recipient = Recipient.objects.get(type_id=recipient_user_profile.id, type="personal")
|
2012-09-04 23:43:56 +02:00
|
|
|
else:
|
2012-09-06 21:53:26 +02:00
|
|
|
return json_error("Invalid zephyr type")
|
2012-08-28 21:27:42 +02:00
|
|
|
|
2012-08-28 18:44:51 +02:00
|
|
|
new_zephyr = Zephyr()
|
2012-09-06 21:52:03 +02:00
|
|
|
new_zephyr.sender = UserProfile.objects.get(user=sender)
|
2012-08-28 18:44:51 +02:00
|
|
|
new_zephyr.content = request.POST['new_zephyr']
|
2012-08-28 21:27:42 +02:00
|
|
|
new_zephyr.recipient = recipient
|
2012-09-04 23:43:56 +02:00
|
|
|
if zephyr_type == "class":
|
|
|
|
new_zephyr.instance = request.POST['instance']
|
2012-08-28 23:08:38 +02:00
|
|
|
new_zephyr.pub_date = datetime.datetime.utcnow().replace(tzinfo=utc)
|
2012-08-28 18:44:51 +02:00
|
|
|
new_zephyr.save()
|
2012-08-28 21:27:42 +02:00
|
|
|
|
2012-09-06 21:36:44 +02:00
|
|
|
return json_success()
|
2012-08-30 18:04:35 +02:00
|
|
|
|
|
|
|
@login_required
|
|
|
|
def subscriptions(request):
|
|
|
|
userprofile = UserProfile.objects.get(user=request.user)
|
2012-09-05 21:55:40 +02:00
|
|
|
subscriptions = Subscription.objects.filter(userprofile=userprofile, active=True)
|
2012-08-30 18:04:35 +02:00
|
|
|
# For now, don't display the subscription for your ability to receive personals.
|
2012-09-05 21:55:40 +02:00
|
|
|
sub_names = [get_display_recipient(sub.recipient) for sub in subscriptions
|
|
|
|
if sub.recipient.type == "class"]
|
2012-08-30 18:04:35 +02:00
|
|
|
|
|
|
|
return render_to_response('zephyr/subscriptions.html',
|
|
|
|
{'subscriptions': sub_names, 'user_profile': userprofile},
|
|
|
|
context_instance=RequestContext(request))
|
|
|
|
|
|
|
|
@login_required
|
|
|
|
def manage_subscriptions(request):
|
|
|
|
if not request.POST:
|
|
|
|
# Do something reasonable.
|
|
|
|
return
|
|
|
|
user_profile = UserProfile.objects.get(user=request.user)
|
|
|
|
|
|
|
|
unsubs = request.POST.getlist('subscription')
|
|
|
|
for sub_name in unsubs:
|
2012-09-05 22:30:50 +02:00
|
|
|
zephyr_class = ZephyrClass.objects.get(name=sub_name, realm=user_profile.realm)
|
2012-09-04 22:22:06 +02:00
|
|
|
recipient = Recipient.objects.get(type_id=zephyr_class.id, type="class")
|
2012-08-30 18:04:35 +02:00
|
|
|
subscription = Subscription.objects.get(
|
2012-09-05 21:55:40 +02:00
|
|
|
userprofile=user_profile, recipient=recipient)
|
2012-08-30 18:04:35 +02:00
|
|
|
subscription.active = False
|
|
|
|
subscription.save()
|
|
|
|
|
|
|
|
return HttpResponseRedirect(reverse('zephyr.views.subscriptions'))
|
2012-08-30 20:00:04 +02:00
|
|
|
|
|
|
|
@login_required
|
|
|
|
def add_subscriptions(request):
|
|
|
|
if not request.POST:
|
|
|
|
# Do something reasonable.
|
|
|
|
return
|
|
|
|
user_profile = UserProfile.objects.get(user=request.user)
|
|
|
|
|
|
|
|
new_subs = request.POST.get('new_subscriptions')
|
|
|
|
if not new_subs:
|
|
|
|
return HttpResponseRedirect(reverse('zephyr.views.subscriptions'))
|
|
|
|
|
|
|
|
for sub_name in new_subs.split(","):
|
2012-09-05 22:30:50 +02:00
|
|
|
zephyr_class = ZephyrClass.objects.filter(name=sub_name, realm=user_profile.realm)
|
2012-08-30 20:00:04 +02:00
|
|
|
if zephyr_class:
|
|
|
|
zephyr_class = zephyr_class[0]
|
|
|
|
else:
|
2012-09-05 22:30:50 +02:00
|
|
|
zephyr_class = ZephyrClass(name=sub_name, realm=user_profile.realm)
|
2012-08-30 20:00:04 +02:00
|
|
|
zephyr_class.save()
|
|
|
|
|
2012-09-04 22:22:06 +02:00
|
|
|
recipient = Recipient.objects.filter(type_id=zephyr_class.pk, type="class")
|
2012-08-30 20:35:55 +02:00
|
|
|
if recipient:
|
|
|
|
recipient = recipient[0]
|
|
|
|
else:
|
2012-09-04 22:22:06 +02:00
|
|
|
recipient = Recipient(type_id=zephyr_class.pk, type="class")
|
2012-08-30 20:00:04 +02:00
|
|
|
recipient.save()
|
|
|
|
|
2012-09-05 21:55:40 +02:00
|
|
|
subscription = Subscription.objects.filter(userprofile=user_profile,
|
|
|
|
recipient=recipient)
|
2012-08-30 20:00:04 +02:00
|
|
|
if subscription:
|
|
|
|
subscription = subscription[0]
|
|
|
|
subscription.active = True
|
|
|
|
subscription.save()
|
|
|
|
else:
|
2012-09-05 21:55:40 +02:00
|
|
|
new_subscription = Subscription(userprofile=user_profile,
|
|
|
|
recipient=recipient)
|
2012-08-30 20:00:04 +02:00
|
|
|
new_subscription.save()
|
|
|
|
|
|
|
|
return HttpResponseRedirect(reverse('zephyr.views.subscriptions'))
|
2012-09-05 23:38:20 +02:00
|
|
|
|
|
|
|
@login_required
|
|
|
|
def class_exists(request, zephyr_class):
|
|
|
|
return HttpResponse(bool(ZephyrClass.objects.filter(name=zephyr_class)))
|