Bump version to 0.14.3
[snf-cloudcms] / cloudcms / admin.py
1 # Copyright 2012 GRNET S.A. All rights reserved.
2 #
3 # Redistribution and use in source and binary forms, with or
4 # without modification, are permitted provided that the following
5 # conditions are met:
6 #
7 #   1. Redistributions of source code must retain the above
8 #      copyright notice, this list of conditions and the following
9 #      disclaimer.
10 #
11 #   2. Redistributions in binary form must reproduce the above
12 #      copyright notice, this list of conditions and the following
13 #      disclaimer in the documentation and/or other materials
14 #      provided with the distribution.
15 #
16 # THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
17 # OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18 # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19 # PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
20 # CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
23 # USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
24 # AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
26 # ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27 # POSSIBILITY OF SUCH DAMAGE.
28 #
29 # The views and conclusions contained in the software and
30 # documentation are those of the authors and should not be
31 # interpreted as representing official policies, either expressed
32 # or implied, of GRNET S.A.
33
34
35 from django.contrib import admin
36 from django.conf.urls.defaults import patterns
37 from django.views.generic.simple import direct_to_template
38 from django.http import HttpResponse
39 from django.shortcuts import redirect
40 from django.contrib import messages
41
42
43 from feincms.translations import admin_translationinline, short_language_code
44
45 from cloudcms import models
46
47
48 class ApplicationAdmin(admin.ModelAdmin):
49     raw_id_fields = ('logo', 'favicon')
50
51
52 class ClientVersionSourceAdminInline(admin.StackedInline):
53     model = models.ClientVersionSource
54     raw_id_fields = ('logo',)
55     extra = 1
56
57
58 class ClientAdmin(admin.ModelAdmin):
59     inlines = [ClientVersionSourceAdminInline]
60
61
62 ServiceTranslationInline = admin_translationinline(models.ServiceTranslation,
63         prepopulated_fields={'slug': ('title',)})
64
65 class ServiceAdmin(admin.ModelAdmin):
66     inlines = [ServiceTranslationInline]
67
68
69 admin.site.register(models.Application, ApplicationAdmin)
70 admin.site.register(models.Client, ClientAdmin)
71 admin.site.register(models.Service, ServiceAdmin)
72
73
74 from cloudcms.forms import RstZipImportForm
75
76 def import_from_sphinx(request):
77     if not request.user.is_superuser:
78         return HttpResponse(status=401)
79
80     context = {}
81     form = RstZipImportForm()
82
83     if request.GET.get('form_saved'):
84         context['save_log'] = request.session.get('save_log')
85     else:
86         if request.session.get('save_log'):
87             del request.session['save_log']
88
89     if request.method == 'POST':
90         form = RstZipImportForm(request.POST, request.FILES)
91         if form.is_valid():
92             try:
93                 saved, log = form.save(request.user)
94                 if saved:
95                     messages.add_message(request, messages.INFO, 'Form saved')
96                     request.session['save_log'] = log.replace("\n", "<br />")
97                     return redirect('/cmsmanage/rstimport/' + '?form_saved=1')
98                 else:
99                     messages.add_message(request, messages.ERROR, 'Form failed')
100                     context['save_log'] = log.replace("\n", "<br />")
101             except Exception, e:
102                 context['save_log'] = e
103
104         else:
105             context['error'] = True
106
107     context['form'] = form
108
109     return direct_to_template(request, 'cms/admin_import_guide_faq.html', context)
110
111 sphinx_import = admin.site.admin_view(import_from_sphinx)
112