change document urls to be /documents/ID/name.ext
This commit is contained in:
parent
03e919e5ba
commit
81706fcf3b
5 changed files with 107 additions and 50 deletions
|
@ -72,26 +72,13 @@ class Document(models.Model):
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def get(cls, id):
|
def get(cls, id):
|
||||||
username, name, extension = cls.parse_id(id)
|
return cls.objects.get(pk=ox.fromAZ(id))
|
||||||
return cls.objects.get(user__username=username, name=name, extension=extension)
|
|
||||||
|
|
||||||
@classmethod
|
|
||||||
def parse_id(cls, id):
|
|
||||||
public_id = id.replace('_', ' ').replace('\t', '_').split(':')
|
|
||||||
username = public_id[0]
|
|
||||||
name = ":".join(public_id[1:])
|
|
||||||
extension = name.split('.')
|
|
||||||
name = '.'.join(extension[:-1])
|
|
||||||
extension = extension[-1].lower()
|
|
||||||
return username, name, extension
|
|
||||||
|
|
||||||
def get_absolute_url(self):
|
def get_absolute_url(self):
|
||||||
return ('/documents/%s' % quote(self.get_id())).replace('%3A', ':')
|
return ('/documents/%s' % quote(self.get_id())).replace('%3A', ':')
|
||||||
|
|
||||||
def get_id(self):
|
def get_id(self):
|
||||||
id = u'%s:%s.%s' % (self.user.username, self.name, self.extension)
|
return ox.toAZ(self.id)
|
||||||
id = id.replace('_', '%09').replace(' ', '_')
|
|
||||||
return id
|
|
||||||
|
|
||||||
def editable(self, user):
|
def editable(self, user):
|
||||||
if not user or user.is_anonymous():
|
if not user or user.is_anonymous():
|
||||||
|
@ -180,7 +167,11 @@ class Document(models.Model):
|
||||||
return False
|
return False
|
||||||
|
|
||||||
def thumbnail(self):
|
def thumbnail(self):
|
||||||
return '%s.jpg' % self.file.path
|
if self.extension == 'pdf':
|
||||||
|
thumbnail = '%s.jpg' % self.file.path
|
||||||
|
else:
|
||||||
|
thumbnail = self.file.path
|
||||||
|
return thumbnail
|
||||||
|
|
||||||
def make_thumbnail(self, force=False):
|
def make_thumbnail(self, force=False):
|
||||||
thumb = self.thumbnail()
|
thumb = self.thumbnail()
|
||||||
|
|
|
@ -14,8 +14,7 @@ from item.models import Item
|
||||||
import models
|
import models
|
||||||
|
|
||||||
def get_document_or_404_json(id):
|
def get_document_or_404_json(id):
|
||||||
username, name, extension = models.Document.parse_id(id)
|
return models.Document.get(id)
|
||||||
return get_object_or_404_json(models.Document, user__username=username, name=name, extension=extension)
|
|
||||||
|
|
||||||
@login_required_json
|
@login_required_json
|
||||||
def addDocument(request):
|
def addDocument(request):
|
||||||
|
@ -221,11 +220,12 @@ def sortDocuments(request):
|
||||||
return render_to_json_response(response)
|
return render_to_json_response(response)
|
||||||
actions.register(sortDocuments, cache=False)
|
actions.register(sortDocuments, cache=False)
|
||||||
|
|
||||||
def file(request, id):
|
def file(request, id, name=None):
|
||||||
document = models.Document.get(id)
|
document = models.Document.get(id)
|
||||||
return HttpFileResponse(document.file.path)
|
return HttpFileResponse(document.file.path)
|
||||||
|
|
||||||
def thumbnail(request, id):
|
def thumbnail(request, id, size=256):
|
||||||
|
size = int(size)
|
||||||
document = models.Document.get(id)
|
document = models.Document.get(id)
|
||||||
return HttpFileResponse(document.thumbnail())
|
return HttpFileResponse(document.thumbnail())
|
||||||
|
|
||||||
|
|
|
@ -30,8 +30,8 @@ urlpatterns = patterns('',
|
||||||
(r'^file/(?P<oshash>.*)$', 'archive.views.lookup_file'),
|
(r'^file/(?P<oshash>.*)$', 'archive.views.lookup_file'),
|
||||||
(r'^api/?$', include(ox.django.api.urls)),
|
(r'^api/?$', include(ox.django.api.urls)),
|
||||||
(r'^resetUI$', 'user.views.reset_ui'),
|
(r'^resetUI$', 'user.views.reset_ui'),
|
||||||
(r'^documents/(?P<id>.*?.pdf).jpg$', 'document.views.thumbnail'),
|
(r'^documents/(?P<id>[A-Z0-9].+)/(?P<size>\d*)p.jpg$', 'document.views.thumbnail'),
|
||||||
(r'^documents/(?P<id>.*?.)$', 'document.views.file'),
|
(r'^documents/(?P<id>[A-Z0-9].+)/(?P<name>.*?\..+)$', 'document.views.file'),
|
||||||
(r'^edit/(?P<id>.*?)/icon(?P<size>\d*).jpg$', 'edit.views.icon'),
|
(r'^edit/(?P<id>.*?)/icon(?P<size>\d*).jpg$', 'edit.views.icon'),
|
||||||
(r'^list/(?P<id>.*?)/icon(?P<size>\d*).jpg$', 'itemlist.views.icon'),
|
(r'^list/(?P<id>.*?)/icon(?P<size>\d*).jpg$', 'itemlist.views.icon'),
|
||||||
(r'^text/(?P<id>.*?)/icon(?P<size>\d*).jpg$', 'text.views.icon'),
|
(r'^text/(?P<id>.*?)/icon(?P<size>\d*).jpg$', 'text.views.icon'),
|
||||||
|
|
|
@ -442,9 +442,8 @@ pandora.ui.documentsDialog = function(options) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function renderPreview() {
|
function renderPreview() {
|
||||||
var isImage = Ox.contains(['jpg', 'png'], selected.split('.').pop()),
|
var size = getPreviewSize(),
|
||||||
size = getPreviewSize(),
|
src = '/documents/' + selected + '/256p.jpg';
|
||||||
src = '/documents/' + selected + (isImage ? '' : '.jpg');
|
|
||||||
return Ox.ImageElement({
|
return Ox.ImageElement({
|
||||||
height: size.height,
|
height: size.height,
|
||||||
src: src,
|
src: src,
|
||||||
|
@ -453,6 +452,13 @@ pandora.ui.documentsDialog = function(options) {
|
||||||
.css({
|
.css({
|
||||||
margin: size.margin,
|
margin: size.margin,
|
||||||
borderRadius: '8px'
|
borderRadius: '8px'
|
||||||
|
})
|
||||||
|
.on({
|
||||||
|
click: function() {
|
||||||
|
var info = $list.value(selected),
|
||||||
|
url = '/documents/' + selected + '/' + info.name + '.' + info.extension;
|
||||||
|
window.open('/url=' + encodeURIComponent(url), '_blank');
|
||||||
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -19,6 +19,29 @@ pandora.ui.documentsView = function(options, self) {
|
||||||
|
|
||||||
self.$preview = Ox.Element();
|
self.$preview = Ox.Element();
|
||||||
|
|
||||||
|
self.$menu = Ox.MenuButton({
|
||||||
|
items: [
|
||||||
|
{
|
||||||
|
id: 'add',
|
||||||
|
title: Ox._('Add Documents...')
|
||||||
|
},
|
||||||
|
],
|
||||||
|
title: 'set',
|
||||||
|
type: 'image'
|
||||||
|
})
|
||||||
|
.css({
|
||||||
|
float: 'left',
|
||||||
|
margin: '4px'
|
||||||
|
})
|
||||||
|
.bindEvent({
|
||||||
|
click: function(data) {
|
||||||
|
if (data.id == 'add') {
|
||||||
|
addDocuments();
|
||||||
|
} else if (data.id == 'fixme') {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.appendTo(self.$toolbar);
|
||||||
|
|
||||||
self.$documentsList = Ox.TableList({
|
self.$documentsList = Ox.TableList({
|
||||||
columns: [
|
columns: [
|
||||||
|
@ -75,6 +98,7 @@ pandora.ui.documentsView = function(options, self) {
|
||||||
columnsResizable: true,
|
columnsResizable: true,
|
||||||
columnsVisible: true,
|
columnsVisible: true,
|
||||||
items: options.documents,
|
items: options.documents,
|
||||||
|
keys: ['ratio'],
|
||||||
scrollbarVisible: true,
|
scrollbarVisible: true,
|
||||||
sort: [{key: 'index', operator: '+'}],
|
sort: [{key: 'index', operator: '+'}],
|
||||||
sortable: true,
|
sortable: true,
|
||||||
|
@ -82,22 +106,7 @@ pandora.ui.documentsView = function(options, self) {
|
||||||
})
|
})
|
||||||
.bindEvent({
|
.bindEvent({
|
||||||
add: function(data) {
|
add: function(data) {
|
||||||
pandora.$ui.documentsDialog = pandora.ui.documentsDialog({
|
addDocuments();
|
||||||
callback: function(ids) {
|
|
||||||
if (ids) {
|
|
||||||
pandora.api.addDocument({
|
|
||||||
item: pandora.user.ui.item,
|
|
||||||
ids: ids
|
|
||||||
}, function() {
|
|
||||||
Ox.Request.clearCache();
|
|
||||||
//fixme just upload list here
|
|
||||||
//self.$documentsList.reloadList();
|
|
||||||
pandora.$ui.contentPanel.replaceElement(1,
|
|
||||||
pandora.$ui.item = pandora.ui.item());
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}).open();
|
|
||||||
},
|
},
|
||||||
'delete': function(data) {
|
'delete': function(data) {
|
||||||
if (data.ids.length > 0 && options.editable) {
|
if (data.ids.length > 0 && options.editable) {
|
||||||
|
@ -138,22 +147,73 @@ pandora.ui.documentsView = function(options, self) {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
function addDocuments() {
|
||||||
|
pandora.$ui.documentsDialog = pandora.ui.documentsDialog({
|
||||||
|
callback: function(ids) {
|
||||||
|
if (ids) {
|
||||||
|
pandora.api.addDocument({
|
||||||
|
item: pandora.user.ui.item,
|
||||||
|
ids: ids
|
||||||
|
}, function() {
|
||||||
|
Ox.Request.clearCache();
|
||||||
|
//fixme just upload list here
|
||||||
|
//self.$documentsList.reloadList();
|
||||||
|
pandora.$ui.contentPanel.replaceElement(1,
|
||||||
|
pandora.$ui.item = pandora.ui.item());
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}).open();
|
||||||
|
}
|
||||||
|
|
||||||
function renderPreview() {
|
function renderPreview() {
|
||||||
var isImage = Ox.contains(['jpg', 'png'],
|
var size = getPreviewSize(),
|
||||||
self.selected ? self.selected.split('.').pop() : ''),
|
src = '/documents/' + self.selected + '/256p.jpg';
|
||||||
size = {width: 256, height: 256},
|
|
||||||
src = '/documents/' + self.selected + (isImage ? '' : '.jpg');
|
|
||||||
self.$preview.empty();
|
self.$preview.empty();
|
||||||
self.selected && self.$preview
|
self.selected && self.$preview
|
||||||
.append(Ox.ImageElement({
|
.append(
|
||||||
|
Ox.ImageElement({
|
||||||
height: size.height,
|
height: size.height,
|
||||||
src: src,
|
src: src,
|
||||||
width: size.width
|
width: size.width
|
||||||
}))
|
})
|
||||||
|
.css({
|
||||||
|
margin: size.margin,
|
||||||
|
borderRadius: '8px'
|
||||||
|
})
|
||||||
|
.on({
|
||||||
|
click: function() {
|
||||||
|
var info = self.$documentsList.value(self.selected),
|
||||||
|
url = '/documents/' + self.selected + '/' + info.name + '.' + info.extension;
|
||||||
|
window.open('/url=' + encodeURIComponent(url), '_blank');
|
||||||
|
}
|
||||||
|
})
|
||||||
|
)
|
||||||
.append(Ox.Element()
|
.append(Ox.Element()
|
||||||
|
.css({
|
||||||
|
margin: size.margin,
|
||||||
|
paddingTop: '8px'
|
||||||
|
})
|
||||||
.html(self.$documentsList.value(self.selected, 'description')
|
.html(self.$documentsList.value(self.selected, 'description')
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function getPreviewSize() {
|
||||||
|
var ratio = self.$documentsList.value(self.selected, 'ratio'),
|
||||||
|
previewWidth = self.$preview.width() - 8,
|
||||||
|
height = ratio < 1 ? previewWidth : previewWidth / ratio,
|
||||||
|
width = ratio >= 1 ? previewWidth : previewWidth * ratio,
|
||||||
|
left = Math.floor((previewWidth - Ox.UI.SCROLLBAR_SIZE - width) / 2);
|
||||||
|
return {
|
||||||
|
height: height,
|
||||||
|
// fixme: CSS gets applied twice, to image and enclosing element
|
||||||
|
margin: [8, 8, 8, 8 + left].map(function(px) {
|
||||||
|
return px / 2 + 'px';
|
||||||
|
}).join(' '),
|
||||||
|
width: width
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
function selectDocument(data) {
|
function selectDocument(data) {
|
||||||
if (data.ids[0] != self.selected) {
|
if (data.ids[0] != self.selected) {
|
||||||
self.selected = data.ids[0];
|
self.selected = data.ids[0];
|
||||||
|
|
Loading…
Reference in a new issue