Merge: Added contributing guidelines and link from readme
[nit.git] / share / nitweb / javascripts / model.js
1 /*
2 * Copyright 2016 Alexandre Terrasa <alexandre@moz-code.org>.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17 (function() {
18 var apiUrl = '/api';
19
20 angular
21 .module('model', [])
22
23 .factory('Model', [ '$http', function($http) {
24 return {
25
26 loadEntity: function(id, cb, cbErr) {
27 $http.get(apiUrl + '/entity/' + id)
28 .success(cb)
29 .error(cbErr);
30 },
31
32 loadEntityLinearization: function(id, cb, cbErr) {
33 $http.get(apiUrl + '/linearization/' + id)
34 .success(cb)
35 .error(cbErr);
36 },
37
38 loadEntityDefs: function(id, cb, cbErr) {
39 $http.get(apiUrl + '/defs/' + id)
40 .success(cb)
41 .error(cbErr);
42 },
43
44 loadEntityCode: function(id, cb, cbErr) {
45 $http.get(apiUrl + '/code/' + id)
46 .success(cb)
47 .error(cbErr);
48 },
49
50 search: function(q, n, cb, cbErr) {
51 $http.get(apiUrl + '/search?q=' + q + '&n=' + n)
52 .success(cb)
53 .error(cbErr);
54 }
55 };
56 }])
57
58 .factory('Catalog', [ '$http', function($http) {
59 return {
60 loadHightlighted: function(cb, cbErr) {
61 $http.get(apiUrl + '/catalog/highlighted')
62 .success(cb)
63 .error(cbErr);
64 },
65
66 loadMostRequired: function(cb, cbErr) {
67 $http.get(apiUrl + '/catalog/required')
68 .success(cb)
69 .error(cbErr);
70 },
71
72 loadByTags: function(cb, cbErr) {
73 $http.get(apiUrl + '/catalog/bytags')
74 .success(cb)
75 .error(cbErr);
76 },
77
78 loadStats: function(cb, cbErr) {
79 $http.get(apiUrl + '/catalog/stats')
80 .success(cb)
81 .error(cbErr);
82 },
83
84 loadContributors: function(cb, cbErr) {
85 $http.get(apiUrl + '/catalog/contributors')
86 .success(cb)
87 .error(cbErr);
88 },
89 }
90 }])
91 })();