Newer
Older
from django.utils import timezone
from django.db import models
from django.contrib.auth.models import User
from journals.models import SCIPOST_JOURNALS_DOMAINS, SCIPOST_JOURNALS_SPECIALIZATIONS
from scipost.models import Contributor
from scipost.models import SCIPOST_DISCIPLINES
COMMENTARY_TYPES = (
('published', 'published paper'),
('preprint', 'arXiv preprint (at least 8 weeks old)'),
)
class Commentary(models.Model):
""" A Commentary contains all the contents of a SciPost Commentary page for a given publication. """
requested_by = models.ForeignKey (Contributor, blank=True, null=True, related_name='requested_by')
vetted = models.BooleanField(default=False)
vetted_by = models.ForeignKey (Contributor, blank=True, null=True)
type = models.CharField(max_length=9, choices=COMMENTARY_TYPES) # published paper or arxiv preprint
discipline = models.CharField(max_length=20, choices=SCIPOST_DISCIPLINES, default='physics')
domain = models.CharField(max_length=3, choices=SCIPOST_JOURNALS_DOMAINS, default='E')
specialization = models.CharField(max_length=1, choices=SCIPOST_JOURNALS_SPECIALIZATIONS, default='A')
open_for_commenting = models.BooleanField(default=True)
pub_title = models.CharField(max_length=300, verbose_name='title')
arxiv_link = models.URLField(verbose_name='arXiv link (including version nr)', blank=True)
pub_DOI_link = models.URLField(verbose_name='DOI link to the original publication', blank=True)
arxiv_or_DOI_string = models.CharField(max_length=100, verbose_name='string form of arxiv nr or DOI for commentary url', default='')
author_list = models.CharField(max_length=1000)
# Authors which have been mapped to contributors:
authors = models.ManyToManyField (Contributor, blank=True, related_name='authors_com')
authors_claims = models.ManyToManyField (Contributor, blank=True, related_name='authors_com_claims')
authors_false_claims = models.ManyToManyField (Contributor, blank=True, related_name='authors_com_false_claims')
pub_date = models.DateField(verbose_name='date of original publication', blank=True, null=True)
pub_abstract = models.TextField(verbose_name='abstract')
latest_activity = models.DateTimeField(default=timezone.now)
def __str__ (self):
return self.pub_title
# for display in Commentary page itself
header = '<table>'
header += '<tr><td>Title: </td><td> </td><td>' + self.pub_title + '</td></tr>'
header += '<tr><td>Author(s): </td><td> </td><td>' + self.author_list + '</td></tr>'
header += '<tr><td>As Contributors: </td><td> </td>'
if self.authors.all():
for auth in self.authors.all():
header += '<td><a href="/contributor/' + str(auth.id) + '">' + auth.user.first_name + ' ' + auth.user.last_name + '</a></td>'
else:
header += '<td>(none claimed)</td>'
header += '</tr>'
header += '<tr><td>DOI: </td><td> </td><td><a href="' + self.pub_DOI_link + '" target="_blank">' + self.pub_DOI_link + '</a></td></tr>'
elif self.type == 'preprint':
header += '<tr><td>arxiv Link: </td><td> </td><td><a href="' + self.arxiv_link + '">' + self.arxiv_link + '</a></td></tr>'
header += '<tr><td>Date: </td><td> </td><td>' + str(self.pub_date) + '</td></tr>'
header += '</table>'
return header
# for display in search lists
header = '<li><div class="flex-container">'
#header += '<div class="flex-whitebox0"><p><a href="/commentary/' + str(self.id) + '" class="pubtitleli">' + self.pub_title + '</a></p>'
header += '<div class="flex-whitebox0"><p><a href="' + self.scipost_url() + '" class="pubtitleli">' + self.pub_title + '</a></p>'
header += '<p>by ' + self.author_list + '</p><p> (published ' + str(self.pub_date) + ') - latest activity: ' + self.latest_activity.strftime('%Y-%m-%d %H:%M') + '</p></div>'
header += '</div></li>'
return header
def parse_link_into_url (self):
""" Takes the arXiv nr or DOI and turns it into the url suffix """
if self.pub_DOI_link:
self.arxiv_or_DOI_string = str(self.pub_DOI_link)
self.arxiv_or_DOI_string = self.arxiv_or_DOI_string.replace('http://dx.doi.org/', '')
else:
self.arxiv_or_DOI_string = str(self.arxiv_link)
# Format required: either identifier arXiv:1234.56789v10 or old-style arXiv:cond-mat/9712001v1
# strip:
self.arxiv_or_DOI_string = self.arxiv_or_DOI_string.replace('http://', '')
# Old style: from arxiv.org/abs/1234.5678 into arXiv:1234.5678 (new identifier style)
self.arxiv_or_DOI_string = self.arxiv_or_DOI_string.replace('arxiv.org/', '')
self.arxiv_or_DOI_string = self.arxiv_or_DOI_string.replace('abs/', '')
self.arxiv_or_DOI_string = self.arxiv_or_DOI_string.replace('pdf/', '')
# make sure arXiv prefix is there:
self.arxiv_or_DOI_string = 'arXiv:' + self.arxiv_or_DOI_string
self.save()
def scipost_url (self):
""" Returns the url of the SciPost Commentary Page """
return '/commentary/' + self.arxiv_or_DOI_string
def scipost_url_full (self):
""" Returns the url of the SciPost Commentary Page """
return 'https://scipost.org/commentary/' + self.arxiv_or_DOI_string