2017-01-11 23:27:41 -05:00
|
|
|
/* eslint-disable func-names, space-before-function-paren, quotes, object-shorthand, camelcase, no-var, comma-dangle, prefer-arrow-callback, quote-props, no-param-reassign, max-len */
|
2016-12-14 00:26:26 -05:00
|
|
|
|
2016-07-24 16:45:11 -04:00
|
|
|
(function() {
|
2016-12-14 00:26:26 -05:00
|
|
|
var Api = {
|
2016-07-24 16:45:11 -04:00
|
|
|
groupsPath: "/api/:version/groups.json",
|
|
|
|
groupPath: "/api/:version/groups/:id.json",
|
|
|
|
namespacesPath: "/api/:version/namespaces.json",
|
|
|
|
groupProjectsPath: "/api/:version/groups/:id/projects.json",
|
|
|
|
projectsPath: "/api/:version/projects.json?simple=true",
|
2016-09-22 12:07:57 -04:00
|
|
|
labelsPath: "/:namespace_path/:project_path/labels",
|
2016-08-08 07:42:24 -04:00
|
|
|
licensePath: "/api/:version/templates/licenses/:key",
|
|
|
|
gitignorePath: "/api/:version/templates/gitignores/:key",
|
|
|
|
gitlabCiYmlPath: "/api/:version/templates/gitlab_ci_ymls/:key",
|
2017-01-27 13:53:27 -05:00
|
|
|
dockerfilePath: "/api/:version/templates/dockerfiles/:key",
|
2016-06-24 15:43:46 -04:00
|
|
|
issuableTemplatePath: "/:namespace_path/:project_path/templates/:type/:key",
|
2016-07-24 16:45:11 -04:00
|
|
|
group: function(group_id, callback) {
|
2016-06-24 15:43:46 -04:00
|
|
|
var url = Api.buildUrl(Api.groupPath)
|
|
|
|
.replace(':id', group_id);
|
2016-07-24 16:45:11 -04:00
|
|
|
return $.ajax({
|
|
|
|
url: url,
|
|
|
|
dataType: "json"
|
|
|
|
}).done(function(group) {
|
|
|
|
return callback(group);
|
|
|
|
});
|
|
|
|
},
|
2016-07-26 23:32:10 -04:00
|
|
|
// Return groups list. Filtered by query
|
2016-10-31 13:37:13 -04:00
|
|
|
groups: function(query, options, callback) {
|
2016-06-24 15:43:46 -04:00
|
|
|
var url = Api.buildUrl(Api.groupsPath);
|
2016-07-24 16:45:11 -04:00
|
|
|
return $.ajax({
|
|
|
|
url: url,
|
2016-10-31 13:37:13 -04:00
|
|
|
data: $.extend({
|
2017-01-11 22:49:57 -05:00
|
|
|
search: query,
|
|
|
|
per_page: 20
|
|
|
|
}, options),
|
2016-07-24 16:45:11 -04:00
|
|
|
dataType: "json"
|
|
|
|
}).done(function(groups) {
|
|
|
|
return callback(groups);
|
|
|
|
});
|
|
|
|
},
|
2016-07-26 23:32:10 -04:00
|
|
|
// Return namespaces list. Filtered by query
|
2016-07-24 16:45:11 -04:00
|
|
|
namespaces: function(query, callback) {
|
2016-06-24 15:43:46 -04:00
|
|
|
var url = Api.buildUrl(Api.namespacesPath);
|
2016-07-24 16:45:11 -04:00
|
|
|
return $.ajax({
|
|
|
|
url: url,
|
|
|
|
data: {
|
|
|
|
search: query,
|
|
|
|
per_page: 20
|
|
|
|
},
|
|
|
|
dataType: "json"
|
|
|
|
}).done(function(namespaces) {
|
|
|
|
return callback(namespaces);
|
|
|
|
});
|
|
|
|
},
|
2016-07-26 23:32:10 -04:00
|
|
|
// Return projects list. Filtered by query
|
2016-07-24 16:45:11 -04:00
|
|
|
projects: function(query, order, callback) {
|
2016-06-24 15:43:46 -04:00
|
|
|
var url = Api.buildUrl(Api.projectsPath);
|
2016-07-24 16:45:11 -04:00
|
|
|
return $.ajax({
|
|
|
|
url: url,
|
|
|
|
data: {
|
|
|
|
search: query,
|
|
|
|
order_by: order,
|
|
|
|
per_page: 20
|
|
|
|
},
|
|
|
|
dataType: "json"
|
|
|
|
}).done(function(projects) {
|
|
|
|
return callback(projects);
|
|
|
|
});
|
|
|
|
},
|
2016-09-22 12:07:57 -04:00
|
|
|
newLabel: function(namespace_path, project_path, data, callback) {
|
2016-06-24 15:43:46 -04:00
|
|
|
var url = Api.buildUrl(Api.labelsPath)
|
2016-09-22 12:07:57 -04:00
|
|
|
.replace(':namespace_path', namespace_path)
|
|
|
|
.replace(':project_path', project_path);
|
2016-07-24 16:45:11 -04:00
|
|
|
return $.ajax({
|
|
|
|
url: url,
|
|
|
|
type: "POST",
|
2017-01-11 23:27:41 -05:00
|
|
|
data: { 'label': data },
|
2016-07-24 16:45:11 -04:00
|
|
|
dataType: "json"
|
|
|
|
}).done(function(label) {
|
|
|
|
return callback(label);
|
|
|
|
}).error(function(message) {
|
|
|
|
return callback(message.responseJSON);
|
|
|
|
});
|
|
|
|
},
|
2016-07-26 23:32:10 -04:00
|
|
|
// Return group projects list. Filtered by query
|
2016-07-24 16:45:11 -04:00
|
|
|
groupProjects: function(group_id, query, callback) {
|
2016-06-24 15:43:46 -04:00
|
|
|
var url = Api.buildUrl(Api.groupProjectsPath)
|
|
|
|
.replace(':id', group_id);
|
2016-07-24 16:45:11 -04:00
|
|
|
return $.ajax({
|
|
|
|
url: url,
|
|
|
|
data: {
|
|
|
|
search: query,
|
|
|
|
per_page: 20
|
|
|
|
},
|
|
|
|
dataType: "json"
|
|
|
|
}).done(function(projects) {
|
|
|
|
return callback(projects);
|
|
|
|
});
|
|
|
|
},
|
2016-07-26 23:32:10 -04:00
|
|
|
// Return text for a specific license
|
2016-07-24 16:45:11 -04:00
|
|
|
licenseText: function(key, data, callback) {
|
2016-06-24 15:43:46 -04:00
|
|
|
var url = Api.buildUrl(Api.licensePath)
|
|
|
|
.replace(':key', key);
|
2016-07-24 16:45:11 -04:00
|
|
|
return $.ajax({
|
|
|
|
url: url,
|
|
|
|
data: data
|
|
|
|
}).done(function(license) {
|
|
|
|
return callback(license);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
gitignoreText: function(key, callback) {
|
2016-06-24 15:43:46 -04:00
|
|
|
var url = Api.buildUrl(Api.gitignorePath)
|
|
|
|
.replace(':key', key);
|
2016-07-24 16:45:11 -04:00
|
|
|
return $.get(url, function(gitignore) {
|
|
|
|
return callback(gitignore);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
gitlabCiYml: function(key, callback) {
|
2016-06-24 15:43:46 -04:00
|
|
|
var url = Api.buildUrl(Api.gitlabCiYmlPath)
|
|
|
|
.replace(':key', key);
|
2016-07-24 16:45:11 -04:00
|
|
|
return $.get(url, function(file) {
|
|
|
|
return callback(file);
|
|
|
|
});
|
|
|
|
},
|
2016-11-02 11:41:32 -04:00
|
|
|
dockerfileYml: function(key, callback) {
|
|
|
|
var url = Api.buildUrl(Api.dockerfilePath).replace(':key', key);
|
|
|
|
$.get(url, callback);
|
|
|
|
},
|
2016-06-24 15:43:46 -04:00
|
|
|
issueTemplate: function(namespacePath, projectPath, key, type, callback) {
|
|
|
|
var url = Api.buildUrl(Api.issuableTemplatePath)
|
|
|
|
.replace(':key', key)
|
|
|
|
.replace(':type', type)
|
|
|
|
.replace(':project_path', projectPath)
|
|
|
|
.replace(':namespace_path', namespacePath);
|
|
|
|
$.ajax({
|
|
|
|
url: url,
|
|
|
|
dataType: 'json'
|
|
|
|
}).done(function(file) {
|
|
|
|
callback(null, file);
|
|
|
|
}).error(callback);
|
|
|
|
},
|
2016-07-24 16:45:11 -04:00
|
|
|
buildUrl: function(url) {
|
|
|
|
if (gon.relative_url_root != null) {
|
|
|
|
url = gon.relative_url_root + url;
|
|
|
|
}
|
|
|
|
return url.replace(':version', gon.api_version);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-12-14 00:26:26 -05:00
|
|
|
window.Api = Api;
|
2017-02-10 01:50:50 -05:00
|
|
|
}).call(window);
|