forked from ckan/ckan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.py
166 lines (135 loc) · 4.69 KB
/
plugin.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
# encoding: utf-8
import logging
import ckan.logic as logic
import ckan.model as model
import ckan.plugins as p
import ckan.plugins.toolkit as toolkit
import ckanext.datapusher.blueprint as blueprint
import ckanext.datapusher.helpers as helpers
import ckanext.datapusher.logic.action as action
import ckanext.datapusher.logic.auth as auth
log = logging.getLogger(__name__)
_get_or_bust = logic.get_or_bust
DEFAULT_FORMATS = [
u'csv',
u'xls',
u'xlsx',
u'tsv',
u'application/csv',
u'application/vnd.ms-excel',
u'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
u'ods',
u'application/vnd.oasis.opendocument.spreadsheet',
]
class DatastoreException(Exception):
pass
class DatapusherPlugin(p.SingletonPlugin):
p.implements(p.IConfigurer, inherit=True)
p.implements(p.IConfigurable, inherit=True)
p.implements(p.IActions)
p.implements(p.IAuthFunctions)
p.implements(p.IResourceUrlChange)
p.implements(p.IResourceController, inherit=True)
p.implements(p.ITemplateHelpers)
p.implements(p.IBlueprint)
legacy_mode = False
resource_show_action = None
def update_config(self, config):
templates_base = config.get(u'ckan.base_templates_folder')
toolkit.add_template_directory(config, templates_base)
def configure(self, config):
self.config = config
datapusher_formats = config.get(u'ckan.datapusher.formats',
u'').lower()
self.datapusher_formats = datapusher_formats.split() or DEFAULT_FORMATS
for config_option in (
u'ckan.site_url',
u'ckan.datapusher.url',
):
if not config.get(config_option):
raise Exception(
u'Config option `{0}` must be set to use the DataPusher.'.
format(config_option)
)
# IResourceUrlChange
def notify(self, resource):
context = {
u'model': model,
u'ignore_auth': True,
}
resource_dict = toolkit.get_action(u'resource_show')(
context, {
u'id': resource.id,
}
)
self._submit_to_datapusher(resource_dict)
# IResourceController
def after_create(self, context, resource_dict):
self._submit_to_datapusher(resource_dict)
def _submit_to_datapusher(self, resource_dict):
context = {
u'model': model,
u'ignore_auth': True,
u'defer_commit': True
}
resource_format = resource_dict.get('format')
submit = (
resource_format
and resource_format.lower() in self.datapusher_formats
and resource_dict.get('url_type') != u'datapusher'
)
if not submit:
return
try:
task = toolkit.get_action(u'task_status_show')(
context, {
u'entity_id': resource_dict['id'],
u'task_type': u'datapusher',
u'key': u'datapusher'
}
)
if task.get(u'state') in (u'pending', u'submitting'):
# There already is a pending DataPusher submission,
# skip this one ...
log.debug(
u'Skipping DataPusher submission for '
u'resource {0}'.format(resource_dict['id'])
)
return
except toolkit.ObjectNotFound:
pass
try:
log.debug(
u'Submitting resource {0}'.format(resource_dict['id']) +
u' to DataPusher'
)
toolkit.get_action(u'datapusher_submit')(
context, {
u'resource_id': resource_dict['id']
}
)
except toolkit.ValidationError as e:
# If datapusher is offline want to catch error instead
# of raising otherwise resource save will fail with 500
log.critical(e)
pass
def get_actions(self):
return {
u'datapusher_submit': action.datapusher_submit,
u'datapusher_hook': action.datapusher_hook,
u'datapusher_status': action.datapusher_status
}
def get_auth_functions(self):
return {
u'datapusher_submit': auth.datapusher_submit,
u'datapusher_status': auth.datapusher_status
}
def get_helpers(self):
return {
u'datapusher_status': helpers.datapusher_status,
u'datapusher_status_description': helpers.
datapusher_status_description,
}
# IBlueprint
def get_blueprint(self):
return blueprint.datapusher