entities.rb
4.18 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
module Noosfero
module API
module Entities
Entity.format_with :timestamp do |date|
date.strftime('%Y/%m/%d %H:%M:%S') if date
end
class Image < Entity
root 'images', 'image'
expose :url do |image, options|
image.public_filename
end
expose :icon_url do |image, options|
image.public_filename(:icon)
end
expose :minor_url do |image, options|
image.public_filename(:minor)
end
expose :portrait_url do |image, options|
image.public_filename(:portrait)
end
expose :thumb_url do |image, options|
image.public_filename(:thumb)
end
end
class CategoryBase < Entity
root 'categories', 'category'
expose :name, :id, :slug
end
class Category < CategoryBase
root 'categories', 'category'
expose :full_name do |category, options|
category.full_name
end
expose :parent, :using => CategoryBase, if: { parent: true }
expose :children, :using => CategoryBase, if: { children: true }
expose :image, :using => Image
expose :display_color
end
class Region < Category
root 'regions', 'region'
expose :parent_id
end
class Profile < Entity
expose :identifier, :name, :id
expose :created_at, :format_with => :timestamp
expose :image, :using => Image
expose :region, :using => Region
expose :city, :using => Region
expose :state, :using => Region
end
class UserBasic < Entity
expose :id
expose :login
end
class Person < Profile
root 'people', 'person'
expose :user, :using => UserBasic
expose :orientacao_sexual, :identidade_genero, :transgenero, :etnia
end
class Enterprise < Profile
root 'enterprises', 'enterprise'
end
class Community < Profile
root 'communities', 'community'
expose :description
end
class ArticleBase < Entity
root 'articles', 'article'
expose :id
expose :body
expose :abstract
expose :created_at, :format_with => :timestamp
expose :title, :documentation => {:type => "String", :desc => "Title of the article"}
expose :created_by, :as => :author, :using => Profile
expose :profile, :using => Profile
expose :categories, :using => Category
expose :image, :using => Image
#TODO Apply vote stuff in core and make this test
expose :votes_for
expose :votes_against
expose :setting
expose :position
expose :hits
expose :start_date
expose :end_date
expose :tag_list
expose :children_count
end
class Article < ArticleBase
root 'articles', 'article'
expose :parent, :using => ArticleBase
expose :children, using: ArticleBase do |article, options|
article.children.limit(Noosfero::API::V1::Articles::MAX_PER_PAGE)
end
end
class Comment < Entity
root 'comments', 'comment'
expose :body, :title, :id
expose :created_at, :format_with => :timestamp
expose :author, :using => Profile
end
class User < Entity
root 'users', 'user'
expose :id
expose :login
expose :email
expose :person, :using => Person
expose :activated?, as: :activated
expose :permissions do |user, options|
output = {}
user.person.role_assignments.map do |role_assigment|
if role_assigment.resource.respond_to?(:identifier) && !role_assigment.role.nil?
output[role_assigment.resource.identifier] = role_assigment.role.permissions
end
end
output
end
end
class UserLogin < User
expose :private_token
end
class Task < Entity
root 'tasks', 'task'
expose :id
expose :type
end
class Environment < Entity
expose :name
end
class Tag < Entity
root 'tags', 'tag'
expose :name
end
end
end
end