-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #119 from molgen/publications-feed
publications: Add XML feed for last publications
- Loading branch information
Showing
2 changed files
with
32 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
from django.http import HttpResponse | ||
from django.views.generic.base import View | ||
|
||
from .models import Publication | ||
|
||
class PublicationsFeedView(View): | ||
|
||
# 2DO: check for legal XML characters everywhere https://www.w3.org/TR/xml/#NT-Char | ||
# 2DO: Put HTML content in <![CDATA[...]]> ? | ||
# If we don't make DOI into element: | ||
# 2DO: escape invalid characterds in attribute ( " & < ) | ||
# If we don't convert the rich text fields to plain text) | ||
# 2DO: Remove editor artefacts from ricch text fields ("<p>blabla</p>") ? | ||
# 2DO: Remove <i> from source fields ("<p><i>Mol Cell.</i></p>") ? | ||
# maybe use xml.dom for that? | ||
|
||
def get(self, request, *args, **kwargs): | ||
response = HttpResponse(content_type="application/rss+xml; charset=utf-8") | ||
response.write('<?xml version="1.0" encoding="utf-8" ?>\n') | ||
response.write('<publication-list>\n') | ||
for item in Publication.objects.order_by('sort_order')[:3]: | ||
response.write(f' <publication doi="{item.doi}">\n') | ||
response.write(f' <authors>{item.authors}</authors>\n'); | ||
response.write(f' <title>{item.title}</title>\n'); | ||
response.write(f' <source>{item.source}</source>\n'); | ||
response.write(f' <groups>{item.groups}</groups>\n'); | ||
response.write(' </publication>\n') | ||
response.write('</publication-list>\n') | ||
return response; |