# -*- coding: utf-8 -*- # Copyright (C) 1998-2010 by the Free Software Foundation, Inc. # # This file is part of GNU Mailman. # # GNU Mailman is free software: you can redistribute it and/or modify it under # the terms of the GNU General Public License as published by the Free # Software Foundation, either version 3 of the License, or (at your option) # any later version. # # GNU Mailman is distributed in the hope that it will be useful, but WITHOUT # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for # more details. # # You should have received a copy of the GNU General Public License along with # GNU Mailman. If not, see <http://www.gnu.org/licenses/>. from django.http import HttpResponse, HttpResponseRedirect from django.template import Context, loader from django.shortcuts import render_to_response from django.core.urlresolvers import reverse from django.utils.translation import gettext as _ import re from mailman_rest_client import MailmanRESTClient, MailmanRESTClientError from forms import * def login_required(fn): """ Function (decorator) making sure the user has to log in before they can continue. To use it, add @login_required above the function that requires a user to be logged in. The function requiring login will automatically be added as an argument in the call. """ def _login_decorator(*args, **kwargs): """ Inner decorator to require a user to login. This inner function gets access to the arguments of the function demanding login to be processed. The function checks that a valid user name and password has been provided and when this is the case the user gets redirected to the original function. """ # If the user is already logged in, let them continue directly. request = args[0] try: if request.session['member_id']: return fn(*args, **kwargs) except: pass template = 'mailman-django/login.html' # Authenticate the user # This is just a mockup since the authenticate functionality in # the rest server is still missing. # TODO: implement real authenticate when possible valid_users = {"james@example.com": "james", "katie@example.com": "katie", "kevin@example.com": "kevin"} if request.method == 'POST': form = Login(request.POST) if form.is_valid(): if request.POST["addr"] in valid_users.keys(): if request.POST["psw"] == valid_users[request.POST["addr"]]: # TODO: change this to a better id when possible request.session['member_id'] = request.POST["addr"] # make sure to "reset" the method before continuing request.method = 'GET' return fn(*args, **kwargs) message = "Your username and password didn't match." else: message = "" return render_to_response(template, {'form': Login(), 'message': message}) return _login_decorator @login_required def list_new(request, template = 'mailman-django/lists/new.html'): """ Add a new mailing list. If the request to the function is a GET request an empty form for creating a new list will be displayed. If the request method is POST the form will be evaluated. If the form is considered correct the list gets created and otherwise the form with the data filled in before the last POST request is returned. The user must be logged in to create a new list. """ if request.method == 'POST': form = ListNew(request.POST) if form.is_valid(): listname = form.cleaned_data['listname'] try: c = MailmanRESTClient('localhost:8001') except Exception, e: return HttpResponse(e) parts = listname.split('@') domain = c.get_domain(parts[1]) if domain.info == 404: # failed to get domain so try # creating a new one try: domain = c.create_domain(parts[1]) except MailmanRESTClientError, e: # I don't think this error can ever appear. -- Anna return HttpResponse(e) try: response = domain.create_list(parts[0]) return render_to_response('mailman-django/lists/created.html', {'fqdn_listname': response.info['fqdn_listname']}) except MailmanRESTClientError, e: return HttpResponse(e) else: form = ListNew() return render_to_response(template, {'form': form}) def list_index(request, template = 'mailman-django/lists/index.html'): """Show a table of all mailing lists. """ try: c = MailmanRESTClient('localhost:8001') except MailmanRESTClientError, e: return render_to_response('mailman-django/errors/generic.html', {'message': e}) try: lists = c.get_lists() return render_to_response(template, {'lists': lists}) except MailmanRESTClientError, e: return render_to_response('mailman-django/errors/generic.html', {'message': e}) def list_info(request, fqdn_listname = None, template = 'mailman-django/lists/info.html'): """ Display the information there is available for a list. This function also enables subscribing or unsubscribing a user to a list. For the latter two different forms are available for the user to fill in which are evaluated in this function. """ try: c = MailmanRESTClient('localhost:8001') the_list = c.get_list(fqdn_listname) except Exception, e: return HttpResponse(e) if request.method == 'POST': form = False # The form enables both subscribe and unsubscribe. As a result # we must find out which was the case. action = request.POST.get('name', '') if action == "subscribe": form = ListSubscribe(request.POST) elif action == "unsubscribe": form = ListUnsubscribe(request.POST) if form and form.is_valid(): listname = form.cleaned_data['listname'] email = form.cleaned_data['email'] if action == "subscribe": real_name = form.cleaned_data.get('real_name', '') try: # the form was valid so try to subscribe the user response = the_list.subscribe(address=email, real_name=real_name) return HttpResponseRedirect(reverse('list_index')) except Exception, e: return HttpResponse(e) elif action == "unsubscribe": # the form was valid so try to unsubscribe the user try: response = the_list.unsubscribe(address=email) template = 'mailman-django/lists/unsubscribed.html' return render_to_response(template, {'listname': fqdn_listname}) except Exception, e: return HttpResponse(e) else: # the user tried to post an incorrect form so make sure we # return the filled in values and let the user try again. if action == "subscribe": subscribe = ListSubscribe(request.POST) unsubscribe = ListUnsubscribe(initial = {'listname': fqdn_listname, 'name' : 'unsubscribe'}) elif action == "unsubscribe": subscribe = ListSubscribe(initial = {'listname': fqdn_listname, 'name' : 'subscribe'}) unsubscribe = ListUnsubscribe(request.POST) else: # the request was a GET request so set the two forms to empty # forms subscribe = ListSubscribe(initial = {'listname': fqdn_listname, 'name' : 'subscribe'}) unsubscribe = ListUnsubscribe(initial = {'listname': fqdn_listname, 'name' : 'unsubscribe'}) listinfo = c.get_list(fqdn_listname) return render_to_response(template, {'subscribe': subscribe, 'unsubscribe': unsubscribe, 'fqdn_listname': fqdn_listname, 'listinfo': listinfo}) def list_delete(request, fqdn_listname = None, template = 'mailman-django/lists/index.html'): """ Delete a list by providing the full list name including domain. """ # create a connection to Mailman and get the list try: c = MailmanRESTClient('localhost:8001') the_list = c.get_list(fqdn_listname) except Exception, e: return HttpResponse(e) # get the parts of the list necessary to delete it parts = fqdn_listname.split('@') domain = the_list.get_domain(parts[1]) domain.delete_list(parts[0]) # let the user return to the list index page try: lists = c.get_lists() return render_to_response(template, {'lists': lists}) except MailmanRESTClientError, e: return render_to_response('mailman-django/errors/generic.html', {'message': e}) @login_required def list_settings(request, fqdn_listname = None, template = 'mailman-django/lists/settings.html'): """ View and edit the settings of a list. The function requires the user to be logged in and have the permissions necessary to perform the action. """ message = "" try: c = MailmanRESTClient('localhost:8001') the_list = c.get_list(fqdn_listname) except Exception, e: return HttpResponse(e) if request.method == 'POST': form = ListSettings(request.POST) if form.is_valid(): the_list.update_config(request.POST) message = "The list has been updated." else: form = ListSettings(the_list.info) return render_to_response(template, {'form': form, 'message': message, 'fqdn_listname': the_list.info['fqdn_listname']}) @login_required def mass_subscribe(request, fqdn_listname = None, template = 'mailman-django/lists/mass_subscribe.html'): """ Mass subscribe users to a list. This functions is part of the settings for a list and requires the user to be logged in to perform the action. """ message = "" try: c = MailmanRESTClient('localhost:8001') the_list = c.get_list(fqdn_listname) except Exception, e: return HttpResponse(e) if request.method == 'POST': form = ListMassSubscription(request.POST) if form.is_valid(): try: # The emails to subscribe should each be provided on a # separate line so get each of them. emails = request.POST["emails"].splitlines() message = "The mass subscription was successful." for email in emails: # very simple test if email address is valid parts = email.split('@') if len(parts) == 2 and '.' in parts[1]: the_list.subscribe(address=email, real_name="") else: # At least one email address wasn't valid so # overwrite the success message and ask them to # try again. message = "Please enter valid email addresses." except Exception, e: return HttpResponse(e) else: # A request to view the page was send so return the form to # mass subscribe users. form = ListMassSubscription() return render_to_response(template, {'form': form, 'message': message, 'fqdn_listname': the_list.info['fqdn_listname']}) @login_required def user_settings(request, member = None, tab = "user", template = 'mailman-django/user_settings.html'): """ Change the user or the membership settings. The user must be logged in to be allowed to change any settings. TODO: * add CSS to display tabs * add missing functionality in REST server and client and change to the correct calls here """ message = "" membership_lists = [] listname = "" try: c = MailmanRESTClient('localhost:8001') user_object = c.get_user(member) # address_choices for the 'address' field must be a list of # tuples of length 2 address_choices = [[addr, addr] for addr in user_object.get_email_addresses()] except Exception, e: return HttpResponse(e) if request.method == 'POST': # The form enables both user and member settings. As a result # we must find out which was the case. if tab == "membership": form = MembershipSettings(request.POST) if form.is_valid(): member_object = c.get_member(member, request.GET["list"]) member_object.update(request.POST) message = "The membership settings have been updated." else: # the post request came from the user tab # the 'address' field need choices as a tuple of length 2 addr_choices = [[request.POST["address"], request.POST["address"]]] form = UserSettings(addr_choices, request.POST) if form.is_valid(): user_object.update(request.POST) # to get the full list of addresses we need to # reinstantiate the form with all the addresses # TODO: should return the correct settings from the DB, # not just the address_choices (add mock data to _User # class and make the call with 'user_object.info') form = UserSettings(address_choices) message = "The user settings have been updated." else: if tab == "membership": listname = request.GET.get("list", "") if listname: member_object = c.get_member(member, listname) # TODO: add delivery_mode and deliver_status from a # list of tuples at one point, currently we hard code # them in forms.py # instantiate the form with the correct member info form = MembershipSettings(member_object.info) else: form = None membership_lists = user_object.get_lists() else: # TODO: should return the correct settings from the DB, # not just the address_choices (add mock data to _User # class and make the call with 'user_object.info') The 'language' # field must also be added as a list of tuples with correct # values (is currently hard coded in forms.py). form = UserSettings(address_choices) return render_to_response(template, {'form': form, 'tab': tab, 'listname': listname, 'membership_lists': membership_lists, 'message': message, 'member': member}) def logout(request): """ Let the user logout. Some functions requires the user to be logged in to perform the actions. After the user is done, logging out is possible to avoid others having rights they should not have. """ try: del request.session['member_id'] except KeyError: pass return list_index(request, template = 'mailman-django/lists/index.html')