null
ontology.rb revision 28042dd9ac50a328466a3dd0464b6e26a7c8796d
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
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
("ontology_versions"."file_extension" = :extname) OR (("ontology_versions"."file_extension" IS NULL) AND ("ontologies"."file_extension" = :extname)) with_basepath(File.basepath(path)). where(condition, extname: File.extname(path)). scope :with_basepath, ->(path) do LEFT JOIN "ontology_versions" ON "ontologies"."ontology_version_id" = "ontology_versions"."id" ("ontology_versions"."basepath" = :path) OR (("ontology_versions"."basepath" IS NULL) AND ("ontologies"."basepath" = :path)) joins(join).where(condition, path: path).readonly(false) order('(CASE WHEN ontologies.parent_id IS NULL THEN 1 ELSE 0 END) DESC,'\ ' ontologies.parent_id asc') :// # A uri has a separation between schema and hierarchy (?<filename>[^/]+) # Match filename after a slash/hash filename = match[:filename].sub(/\.[\w\d]+\z/, '') capitalized_name = filename.split(/[_ ]/).map(&:capitalize).join(' ') def iri_for_child(child_name) child_name = child_name[1..-2] if child_name[0] == '<' child_name.include?("://") ? child_name : "#{iri}?#{child_name}" def locid_for_child(child_name) child_name = child_name[1..-2] if child_name[0] == '<' child_name.include?('://') ? child_name : "#{locid}//#{child_name}" self.logic ? (self.logic.name == logic_name) : false self.is?('OWL') || self.is?('OWL2') def self.find_with_locid(locid, iri = nil) ontology = where(locid: locid).first ontology = AlternativeIri.where('iri LIKE ?', '%' << iri). def self.find_with_iri(iri) ontology = where('iri LIKE ?', '%' << iri).first ontology = AlternativeIri.where('iri LIKE ?', '%' << iri). def is_imported_from_other_repository? import_mappings_from_other_repositories.present? import_mappings.map(&:source) def destroy_with_parent(user) repository.delete_file(parent.path, user, "Delete #{Settings.OMS} #{parent}") do repository.delete_file(path, user, "Delete #{Settings.OMS} #{self}") do raise Ontology::DeleteError unless can_be_deleted? if repository.is_destroying can_be_deleted_with_whole_repository? def can_be_deleted_alone? def can_be_deleted_with_whole_repository? !is_imported_from_other_repository? fetch_mappings_by_kind(self, 'import') def contains_logic_translations? query, args = contains_logic_translations_query(self) pluck_select([query, *args], :logically_translated).size > 1 def direct_imported_ontologies ontology_ids = Mapping.where(target_id: self, kind: 'import'). Ontology.where(id: ontology_ids) affected_ontology_ids = [self.id] + imported_ontologies.pluck(:id) Sentence.where(ontology_id: affected_ontology_ids) # list all sentences defined on this ontology, # those who are self defined and those which # are imported (ImpAxioms) where(ontology_id: self). where('imported = ? OR imported = ?', true, false) where(ontology_id: self). where('imported = ?', true) has_versions? ? current_version.basepath : read_attribute(:basepath) has_versions? ? current_version.file_extension : read_attribute(:file_extension) "#{basepath}#{file_extension}" repository.get_file(path) # Uses where in order to force a Relation as a result FormalityLevel.joins(:ontologies). where(ontologies: {id: self}) Mapping.where(source_id: id, kind: 'import') def import_mappings_from_other_repositories import_mappings.select { |l| l.target.repository != repository }