articles.rb
6.15 KB
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
module API
module V1
class Articles < Grape::API
before { authenticate! }
ARTICLE_TYPES = Article.descendants.map{|a| a.to_s}
resource :articles do
# Collect articles
#
# Parameters:
# from - date where the search will begin. If nothing is passed the default date will be the date of the first article created
# oldest - Collect the oldest articles. If nothing is passed the newest articles are collected
# limit - amount of articles returned. The default value is 20
#
# Example Request:
# GET host/api/v1/articles?from=2013-04-04-14:41:43&until=2015-04-04-14:41:43&limit=10&private_token=e96fff37c2238fdab074d1dcea8e6317
get do
articles = select_filtered_collection_of(environment, 'articles', params)
articles = articles.display_filter(current_person, nil)
present articles, :with => Entities::Article
end
desc "Return the article id"
get ':id' do
article = find_article(environment.articles, params[:id])
present article, :with => Entities::Article
end
get ':id/children' do
article = find_article(environment.articles, params[:id])
articles = select_filtered_collection_of(article, 'children', params)
articles = articles.display_filter(current_person, nil)
present articles, :with => Entities::Article
end
get ':id/children/:child_id' do
article = find_article(environment.articles, params[:id])
present find_article(article.children, params[:child_id]), :with => Entities::Article
end
end
resource :communities do
segment '/:community_id' do
resource :articles do
get do
community = environment.communities.find(params[:community_id])
articles = select_filtered_collection_of(community, 'articles', params)
articles = articles.display_filter(current_person, community)
present articles, :with => Entities::Article
end
get ':id' do
community = environment.communities.find(params[:community_id])
article = find_article(community.articles, params[:id])
present article, :with => Entities::Article
end
# Example Request:
# POST api/v1/communites/:community_id/articles?private_toke=234298743290432&article[name]=title&article[body]=body
post do
community = environment.communities.find(params[:community_id])
return forbidden! unless current_person.can_post_content?(community)
klass_type= params[:content_type].nil? ? 'TinyMceArticle' : params[:content_type]
return forbidden! unless ARTICLE_TYPES.include?(klass_type)
article = klass_type.constantize.new(params[:article])
article.last_changed_by = current_person
article.created_by= current_person
article.profile = community
if !article.save
render_api_errors!(article.errors.full_messages)
end
present article, :with => Entities::Article
end
end
end
end
resource :people do
segment '/:person_id' do
resource :articles do
get do
person = environment.people.find(params[:person_id])
articles = select_filtered_collection_of(person, 'articles', params)
articles = articles.display_filter(current_person, person)
present articles, :with => Entities::Article
end
get ':id' do
person = environment.people.find(params[:person_id])
article = find_article(person.articles, params[:id])
present article, :with => Entities::Article
end
post do
person = environment.people.find(params[:person_id])
return forbidden! unless current_person.can_post_content?(person)
klass_type= params[:content_type].nil? ? 'TinyMceArticle' : params[:content_type]
return forbidden! unless ARTICLE_TYPES.include?(klass_type)
article = klass_type.constantize.new(params[:article])
article.last_changed_by = current_person
article.created_by= current_person
article.profile = person
if !article.save
render_api_errors!(article.errors.full_messages)
end
present article, :with => Entities::Article
end
end
end
end
resource :enterprises do
segment '/:enterprise_id' do
resource :articles do
get do
enterprise = environment.enterprises.find(params[:enterprise_id])
articles = select_filtered_collection_of(enterprise, 'articles', params)
articles = articles.display_filter(current_person, enterprise)
present articles, :with => Entities::Article
end
get ':id' do
enterprise = environment.enterprises.find(params[:enterprise_id])
article = find_article(enterprise.articles, params[:id])
present article, :with => Entities::Article
end
post do
enterprise = environment.enterprises.find(params[:enterprise_id])
return forbidden! unless current_person.can_post_content?(enterprise)
klass_type= params[:content_type].nil? ? 'TinyMceArticle' : params[:content_type]
return forbidden! unless ARTICLE_TYPES.include?(klass_type)
article = klass_type.constantize.new(params[:article])
article.last_changed_by = current_person
article.created_by= current_person
article.profile = enterprise
if !article.save
render_api_errors!(article.errors.full_messages)
end
present article, :with => Entities::Article
end
end
end
end
end
end
end