forked from lektor/lektor-atom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lektor_atom.py
206 lines (164 loc) · 6.28 KB
/
lektor_atom.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
# -*- coding: utf-8 -*-
import sys
import hashlib
import uuid
from datetime import datetime, date
import click
import pkg_resources
from lektor.build_programs import BuildProgram
from lektor.db import F
from lektor.environment import Expression
from lektor.pluginsystem import Plugin
from lektor.context import get_ctx, url_to
from lektor.sourceobj import VirtualSourceObject
from lektor.utils import build_url
from werkzeug.contrib.atom import AtomFeed
from markupsafe import escape
PY2 = sys.version_info[0] == 2
if PY2:
text_type = unicode
else:
text_type = str
class AtomFeedSource(VirtualSourceObject):
def __init__(self, parent, feed_id, plugin):
VirtualSourceObject.__init__(self, parent)
self.plugin = plugin
self.feed_id = feed_id
@property
def path(self):
return self.parent.path + '@atom/' + self.feed_id
@property
def url_path(self):
p = self.plugin.get_atom_config(self.feed_id, 'url_path')
if p:
return p
return build_url([self.parent.url_path, self.filename])
def __getattr__(self, item):
try:
return self.plugin.get_atom_config(self.feed_id, item)
except KeyError:
raise AttributeError(item)
@property
def feed_name(self):
return self.plugin.get_atom_config(self.feed_id, 'name') or self.feed_id
def get(item, field, default=None):
if field in item:
return item[field]
return default
def get_id(s):
b = hashlib.md5(s.encode('utf-8')).digest()
return uuid.UUID(bytes=b, version=3).urn
def get_item_title(item, field):
if field in item:
return item[field]
return item.record_label
def get_item_body(item, field):
if field not in item:
raise RuntimeError('Body field %r not found in %r' % (field, item))
with get_ctx().changed_base_url(item.url_path):
return text_type(escape(item[field]))
def get_item_updated(item, field):
if field in item:
rv = item[field]
else:
rv = datetime.utcnow()
if isinstance(rv, date) and not isinstance(rv, datetime):
rv = datetime(*rv.timetuple()[:3])
return rv
class AtomFeedBuilderProgram(BuildProgram):
def produce_artifacts(self):
self.declare_artifact(
self.source.url_path,
sources=list(self.source.iter_source_filenames()))
def build_artifact(self, artifact):
ctx = get_ctx()
feed_source = self.source
blog = feed_source.parent
summary = get(blog, feed_source.blog_summary_field) or ''
if hasattr(summary, '__html__'):
subtitle_type = 'html'
summary = text_type(summary.__html__())
else:
subtitle_type = 'text'
blog_author = text_type(get(blog, feed_source.blog_author_field) or '')
generator = ('Lektor Atom Plugin',
'https://github.com/ajdavis/lektor-atom',
pkg_resources.get_distribution('lektor-atom').version)
feed = AtomFeed(
title=feed_source.feed_name,
subtitle=summary,
subtitle_type=subtitle_type,
author=blog_author,
feed_url=url_to(feed_source, external=True),
url=url_to(blog, external=True),
id=get_id(ctx.env.project.id),
generator=generator)
if feed_source.items:
# "feed_source.items" is a string like "site.query('/blog')".
expr = Expression(ctx.env, feed_source.items)
items = expr.evaluate(ctx.pad)
else:
items = blog.children
if feed_source.item_model:
items = items.filter(F._model == feed_source.item_model)
order_by = '-' + feed_source.item_date_field
items = items.order_by(order_by).limit(int(feed_source.limit))
for item in items:
try:
item_author_field = feed_source.item_author_field
item_author = get(item, item_author_field) or blog_author
feed.add(
get_item_title(item, feed_source.item_title_field),
get_item_body(item, feed_source.item_body_field),
xml_base=url_to(item, external=True),
url=url_to(item, external=True),
content_type='html',
id=get_id(u'%s/%s' % (
ctx.env.project.id,
item['_path'].encode('utf-8'))),
author=item_author,
updated=get_item_updated(item, feed_source.item_date_field))
except Exception as exc:
msg = '%s: %s' % (item.id, exc)
click.echo(click.style('E', fg='red') + ' ' + msg)
with artifact.open('wb') as f:
f.write(feed.to_string().encode('utf-8'))
class AtomPlugin(Plugin):
name = u'Lektor Atom plugin'
description = u'Lektor plugin that generates Atom feeds.'
defaults = {
'source_path': '/',
'name': None,
'url_path': None,
'filename': 'feed.xml',
'blog_author_field': 'author',
'blog_summary_field': 'summary',
'items': None,
'limit': 50,
'item_title_field': 'title',
'item_body_field': 'body',
'item_author_field': 'author',
'item_date_field': 'pub_date',
'item_model': None,
}
def get_atom_config(self, feed_id, key):
default_value = self.defaults[key]
return self.get_config().get('%s.%s' % (feed_id, key), default_value)
def on_setup_env(self, **extra):
self.env.add_build_program(AtomFeedSource, AtomFeedBuilderProgram)
@self.env.virtualpathresolver('atom')
def feed_path_resolver(node, pieces):
if len(pieces) != 1:
return
_id = pieces[0]
config = self.get_config()
if _id not in config.sections():
return
source_path = self.get_atom_config(_id, 'source_path')
if node.path == source_path:
return AtomFeedSource(node, _id, plugin=self)
@self.env.generator
def generate_feeds(source):
for _id in self.get_config().sections():
if source.path == self.get_atom_config(_id, 'source_path'):
yield AtomFeedSource(source, _id, self)