-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.rb
263 lines (204 loc) · 6.82 KB
/
plugin.rb
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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
# name: Citestore
# about: Store citations and quote them with shorthand.
# version: 0.0.6
# authors: Juha Leinonen (jsilvanus)
# url: https://github.com/jsilvanus/discourse-citestore
enabled_site_setting :citestore_enabled
PLUGIN_NAME ||= "citestore".freeze
STORE_NAME ||= "citestorage".freeze
DISALLOWED_STORES ||= [ "default", "storage" ].freeze
after_initialize do
module ::Citestore
class Engine < ::Rails::Engine
engine_name PLUGIN_NAME
isolate_namespace Citestore
end
end
class Citestore::Storage
class << self
# Creation and deletion of storage; a store that holds all main handles
def all(user_id)
ensureStaff user_id
storage = PluginStore.get(PLUGIN_NAME, STORE_NAME)
return {} if storage.blank?
storage
end
def exists(user_id, handle)
storage = all(user_id)
storage.include?(handle)
end
def create(user_id, handle)
ensureStaff user_id
raise StandardError.new "citestore.missing_handle" if handle.blank?
storage = all(user_id)
raise StandardError.new "citestore.disallowed_name" if DISALLOWED_STORES.include?(handle)
raise StandardError.new "citestore.already_exists" if storage.include?(handle)
storage << handle
PluginStore.set(PLUGIN_NAME, STORE_NAME, storage)
Pluginstore.set(PLUGIN_NAME, handle, Hash.new)
storage
end
def delete(user_id, handle)
ensureStaff used_id
raise StandardError.new "citestore.missing_handle" if handle.blank?
raise StandardError.new "citestore.missing_storage" if exists(handle) == nil
storage = all(user_id)
storage.pop => handle
PluginStore.remove(PLUGIN_NAME, handle)
PluginStore.set(PLUGIN_NAME, STORE_NAME, storage)
storage
end
# Get locus from storage
def whole(handle)
raise StandardError.new "citestore.missing_handle" if handle.blank?
raise StandardError.new "citestore.missing_store" if exists(handle) == nil
storage = PluginStore.get(PLUGIN_NAME, handle)
storage
end
def has(handle, locus)
raise StandardError.new "citestore.missing_handle" if handle.blank?
raise StandardError.new "citestore.missing_locus" if locus.blank?
storage = PluginStore.get(PLUGIN_NAME, handle)
storage.has_key?(locus)
end
def get(handle, locus)
raise StandardError.new "citestore.missing_handle" if handle.blank?
raise StandardError.new "citestore.missing_store" if exists(handle) == nil
storage = PluginStore.get(PLUGIN_NAME, handle)
raise StandardError.new "citestore.missing_locus" if storage.has_key?(locus) == nil
record = storage[locus]
record
end
# Add locus to storage.
def add(user_id, handle, locus, contents, force = nil)
ensureStaff user_id
raise StandardError.new "citestore.missing_handle" if handle.blank?
raise StandardError.new "citestore.missing_locus" if locus.blank?
raise StandardError.new "citestore.missing_content" if contents.blank?
if exists(handle) == nil
if force == nil
raise StandardError.new "citestore.missing_store"
end
create(user_id, handle)
end
storage = PluginStore.get(PLUGIN_NAME, handle)
storage[locus] = contents
PluginStore.set(PLUGIN_NAME, handle, storage)
contents
end
def remove(user_id, handle, locus)
ensureStaff user_id
if has(handle, locus)
storage = PluginStore.get(PLUGIN_NAME, handle)
storage.delete(locus)
PluginStore.set(PLUGIN_NAME, handle, storage)
end
end
# Ensure staff id
def ensureStaff (user_id)
user = User.find_by(id: user_id)
unless user.try(:staff?)
raise StandardError.new "citestore.must_be_staff"
end
end
end
end
# Functionality, part 2
require_dependency "application_controller"
class Citestore::CitestoreController < ::ApplicationController
requires_plugin PLUGIN_NAME
before_filter :ensure_logged_in
# Storage creations
def create
handle = params.require(:handle)
user_id = current_user.id
begin
record = Citestore::Storage.create(user_id, handle)
render json: record
rescue StandardError => e
render_json_error e.message
end
end
def delete
handle = params.require(:handle)
user_id = current_user.id
begin
record = Citestore::Storage.delete(user_id, handle)
render json: record
rescue StandardError => e
render_json_error e.message
end
end
def all
user_id = current_user.id
begin
record = Citestore::Storage.all(user_id)
render json: record
rescue StandardError => e
render_json_error e.message
end
end
# Loci
def whole
handle = params.require(:handle)
user_id = current_user.id
begin
record = Citestore::Storage.whole(user_id, handle)
render json: record
rescue StandardError => e
render_json_error e.message
end
end
def add
handle = params.require(:handle)
locus = params.require(:locus)
content = params.require(:content)
user_id = current_user.id
begin
record = Citestore::Storage.add(user_id, handle, locus, content)
render json: record
rescue StandardError => e
render_json_error e.message
end
end
def get
handle = params.require(:handle)
locus = params.require(:locus)
user_id = current_user.id
begin
record = Citestore::Storage.get(user_id, handle, locus)
render json: record
rescue StandardError => e
render_json_error e.message
end
end
def default
user_id = current_user.id
begin
Citestore::Storage.create(user_id, "test")
Citestore::Storage.add(user_id, "test", "1", "Lorem ipsum...")
Citestore::Storage.add(user_id, "test", "2", "...dolor sit amet.")
record = Citestore::Storage.whole(user_id, "test")
render json: record
rescue StandardError => e
render_json_error e.message
end
end
end
# Routes
Citestore::Engine.routes.draw do
put "/" => "citestore#whole"
get "/" => "citestore#get"
# get "/:handle/:locus", to: 'citestore#get'
post "/" => "citestore#add"
delete "/" => "citestore#remove"
post "/default" => "citestore#default"
get "/default" => "citestore#default"
get "/storage" => "citestore#all"
post "/storage" => "citestore#create"
delete "/storage" => "citestore#delete"
end
Discourse::Application.routes.append do
mount ::Citestore::Engine, at: "/citestore"
end
end