X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/7513f67e2fbf40299cf37f27cd383b301bd821f4..6d66ceff54d470d238250c73ab484d496bf296db:/apps/explorer/views.py diff --git a/apps/explorer/views.py b/apps/explorer/views.py index acbcd193..82376fc1 100644 --- a/apps/explorer/views.py +++ b/apps/explorer/views.py @@ -1,65 +1,152 @@ -from librarian import html -import hg, urllib2, json +# -*- coding: utf-8 -*- +import urllib2 +import hg, re +from datetime import date + +import librarian + +from librarian import html, parser, dcparser +from librarian import ParseError, ValidationError -from django.views.generic.simple import direct_to_template from django.conf import settings -from django.http import HttpResponseRedirect +from django.contrib.auth.decorators import login_required, permission_required + +from django.core.urlresolvers import reverse +from django.http import HttpResponseRedirect, HttpResponse, HttpResponseNotFound +from django.utils import simplejson as json +from django.views.generic.simple import direct_to_template +from django.contrib.auth.decorators import login_required from explorer import forms, models +from toolbar import models as toolbar_models -repo = hg.Repository(settings.REPOSITORY_PATH) +from django.forms.util import ErrorList -def file_list(request): - return direct_to_template(request, 'explorer/file_list.html', extra_context={ - 'objects': repo.all_files(), - }) +import wlrepo +# +# Some useful decorators -def file_xml(request, path): - if request.method == 'POST': - form = forms.BookForm(request.POST) - if form.is_valid(): - repo.add_file(path, form.cleaned_data['text']) - # issues = _get_issues_for_file(path) - # commit_message = _add_references(form.cleaned_data['commit_message'], issued) - repo.commit(message=form.cleaned_data['commit_message'], user=form.cleaned_data['user']) - return HttpResponseRedirect(request.get_full_path()) - else: - form = forms.BookForm() - form.fields['text'].initial = repo.get_file(path).data() - - return direct_to_template(request, 'explorer/file_xml.html', extra_context={ - 'hash': path, - 'form': form, - 'image_folders_form': forms.ImageFoldersForm(), - }) +def file_branch(fileid, user=None): + parts = fileid.split('$') + return ('personal_'+ user.username + '_' if user is not None else '') \ + + 'file_' + parts[0] + +def file_path(fileid): + return 'pub_'+fileid+'.xml' + +def with_repo(view): + """Open a repository for this view""" + def view_with_repo(request, *args, **kwargs): + kwargs['repo'] = wlrepo.open_library(settings.REPOSITORY_PATH, 'hg') + return view(request, *args, **kwargs) + return view_with_repo +# +def ajax_login_required(view): + """Similar ro @login_required, but instead of redirect, + just return some JSON stuff with error.""" + def view_with_auth(request, *args, **kwargs): + if request.user.is_authenticated(): + return view(request, *args, **kwargs) + # not authenticated + return HttpResponse( json.dumps({'result': 'access_denied', 'errors': ['Brak dostępu.']}) ); + return view_with_auth -def file_html(request, path): - return direct_to_template(request, 'explorer/file_html.html', extra_context={ - 'object': html.transform(repo.get_file(path).data(), is_file=False), - 'hash': path, - 'image_folders_form': forms.ImageFoldersForm(), +@login_required +# @with_repo +def display_editor(request, path): + # this is the only entry point where we create an autobranch for the user + # if it doesn't exists. All other views SHOULD fail. + #def ensure_branch_exists(): + # parent = repo.get_branch_tip('default') + # repo._create_branch(file_branch(path, request.user), parent) + +# try: + # repo.with_wlock(ensure_branch_exists) + + return direct_to_template(request, 'explorer/editor.html', extra_context={ + 'fileid': path, + 'panel_list': ['lewy', 'prawy'], + 'availble_panels': models.EditorPanel.objects.all(), + # 'scriptlets': toolbar_models.Scriptlet.objects.all() }) - -def folder_images(request, folder): - return direct_to_template(request, 'explorer/folder_images.html', extra_context={ - 'images': models.get_images_from_folder(folder), + +# +# View all files +# +@with_repo +def file_list(request, repo): + import api.forms + from api.resources import library_resource + + bookform = api.forms.DocumentUploadForm() + + # short-circut the api document list + doctree = library_resource.handler.read(request) + # print "DOCTREE:", doctree['documents'] + + return direct_to_template(request, 'explorer/file_list.html', extra_context={ + 'filetree': doctree['documents'], 'bookform': bookform, }) -def _add_references(message, issues): - for issue in issues: - message += " refs #%d " % issue.id - return message +@permission_required('explorer.can_add_files') +@with_repo +def file_upload(request, repo): + from api.resources import library_resource + from api.forms import DocumentUploadForm + from django.http import HttpRequest, HttpResponseRedirect -def _get_issues_for_file(path): - if not path.endswith('.xml'): - raise ValueError('Path must end with .xml') + response = library_resource.handler.create(request) - book_id = path[:-3] - uf = urllib2.urlopen(settings.REDMINE_URL + 'publications/%s/issues' % book_id) + if isinstance(response, HttpResponse): + data = json.loads(response.content) + + if response.status_code == 201: + return HttpResponseRedirect( \ + reverse("editor_view", args=[ data['name'] ]) ) + else: + bookform = DocumentUploadForm(request.POST, request.FILES) + bookform.is_valid() + + return direct_to_template(request, 'explorer/file_upload.html', + extra_context={'bookform': bookform } ) + + +@login_required +def print_html(request, **kwargs): + from api.resources import document_html_resource + + kwargs['stylesheet'] = 'legacy' + + output = document_html_resource.handler.read(request, **kwargs) + if isinstance(output, HttpResponse): + # errors = json.loads(output.content) + output.mimetype = "text/plain" + return output + + return direct_to_template(request, 'html4print.html', + extra_context={'output': output, 'docid': kwargs['docid']}, + mimetype="text/html" ) + + +def _add_references(message, issues): + return message + " - " + ", ".join(map(lambda issue: "Refs #%d" % issue['id'], issues)) + +def _get_issues_for_file(fileid): + uf = None try: + uf = urllib2.urlopen(settings.REDMINE_URL + 'publications/issues/%s.json' % fileid) return json.loads(uf.read()) + except urllib2.HTTPError: + return [] finally: - uf.close() + if uf: uf.close() + +# ================= +# = Pull requests = +# ================= +#def pull_requests(request): +# return direct_to_template(request, 'manager/pull_request.html', extra_context = { +# 'objects': models.PullRequest.objects.all()} )