kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
188 lines
5.4 KiB
188 lines
5.4 KiB
//-- copyright
|
|
// OpenProject is a project management system.
|
|
// Copyright (C) 2012-2015 the OpenProject Foundation (OPF)
|
|
//
|
|
// This program is free software; you can redistribute it and/or
|
|
// modify it under the terms of the GNU General Public License version 3.
|
|
//
|
|
// OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
|
|
// Copyright (C) 2006-2013 Jean-Philippe Lang
|
|
// Copyright (C) 2010-2013 the ChiliProject Team
|
|
//
|
|
// This program is free software; you can redistribute it and/or
|
|
// modify it under the terms of the GNU General Public License
|
|
// as published by the Free Software Foundation; either version 2
|
|
// of the License, or (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with this program; if not, write to the Free Software
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
//
|
|
// See doc/COPYRIGHT.rdoc for more details.
|
|
//++
|
|
|
|
import {opApiModule} from '../../../../angular-modules';
|
|
import {HalResource} from '../hal-resources/hal-resource.service';
|
|
import {HalResourceFactoryService} from '../hal-resource-factory/hal-resource-factory.service';
|
|
import IPromise = angular.IPromise;
|
|
import {CollectionResource} from '../hal-resources/collection-resource.service';
|
|
|
|
export class HalRequestService {
|
|
/**
|
|
* Default headers sent with every request.
|
|
*/
|
|
public defaultHeaders = {
|
|
caching: {
|
|
enabled: true
|
|
},
|
|
'Content-Type': 'application/json'
|
|
};
|
|
|
|
constructor(protected $q:ng.IQService,
|
|
protected $http:ng.IHttpService,
|
|
protected halResourceFactory:HalResourceFactoryService) {
|
|
}
|
|
|
|
/**
|
|
* Perform a HTTP request and return a HalResource promise.
|
|
*/
|
|
public request<T extends HalResource>(method:string, href:string, data?:any, headers:any = {}):IPromise<T> {
|
|
if (!href) {
|
|
return this.$q.reject();
|
|
}
|
|
|
|
if (method.toUpperCase() !== 'GET') {
|
|
data = data || {};
|
|
}
|
|
|
|
headers = angular.extend({}, this.defaultHeaders, headers);
|
|
|
|
const config:any = {
|
|
method: method,
|
|
url: href,
|
|
data: data,
|
|
headers: headers,
|
|
cache: headers.caching.enabled
|
|
};
|
|
const createResource = (response:any) => {
|
|
if (!response.data) {
|
|
return null;
|
|
}
|
|
|
|
return this.halResourceFactory.createHalResource(response.data);
|
|
};
|
|
|
|
if (method === 'get') {
|
|
delete config.data;
|
|
config.params = data;
|
|
}
|
|
|
|
return this.$http(config)
|
|
.then(createResource)
|
|
.catch(response => this.$q.reject(createResource(response) as T)) as ng.IPromise<T>;
|
|
}
|
|
|
|
/**
|
|
* Perform a GET request and return a resource promise.
|
|
*
|
|
* @param href
|
|
* @param params
|
|
* @param headers
|
|
* @returns {ng.IPromise<HalResource>}
|
|
*/
|
|
public get<T extends HalResource>(href:string, params?:any, headers?:any):IPromise<T> {
|
|
return this.request('get', href, params, headers);
|
|
}
|
|
|
|
/**
|
|
* Return all potential pages to the request, when the elements returned from API is smaller
|
|
* than the expected.
|
|
*
|
|
* @param href
|
|
* @param expected The expected number of elements
|
|
* @param params
|
|
* @param headers
|
|
* @return {Promise<CollectionResource[]>}
|
|
*/
|
|
public async getAllPaginated(href:string, expected:number, params:any = {}, headers:any = {}) {
|
|
// Total number retrieved
|
|
let retrieved = 0;
|
|
// Current offset page
|
|
let page = 1;
|
|
// Accumulated results
|
|
const allResults:CollectionResource[] = [];
|
|
// If possible, request all at once.
|
|
params.pageSize = expected;
|
|
|
|
while (retrieved < expected) {
|
|
params.offset = page;
|
|
|
|
const results = await this.request('get', href, params, headers);
|
|
|
|
if (results.count === 0) {
|
|
throw 'No more results for this query, but expected more.';
|
|
}
|
|
|
|
allResults.push(results as CollectionResource);
|
|
|
|
retrieved += results.count;
|
|
page += 1;
|
|
}
|
|
|
|
return allResults;
|
|
}
|
|
|
|
/**
|
|
* Perform a PUT request and return a resource promise.
|
|
* @param href
|
|
* @param data
|
|
* @param headers
|
|
* @returns {ng.IPromise<HalResource>}
|
|
*/
|
|
public put<T extends HalResource>(href:string, data?:any, headers?:any):IPromise<T> {
|
|
return this.request('put', href, data, headers);
|
|
}
|
|
|
|
/**
|
|
* Perform a POST request and return a resource promise.
|
|
*
|
|
* @param href
|
|
* @param data
|
|
* @param headers
|
|
* @returns {ng.IPromise<HalResource>}
|
|
*/
|
|
public post<T extends HalResource>(href:string, data?:any, headers?:any):IPromise<T> {
|
|
return this.request('post', href, data, headers);
|
|
}
|
|
|
|
/**
|
|
* Perform a PATCH request and return a resource promise.
|
|
*
|
|
* @param href
|
|
* @param data
|
|
* @param headers
|
|
* @returns {ng.IPromise<HalResource>}
|
|
*/
|
|
public patch<T extends HalResource>(href:string, data?:any, headers?:any):IPromise<T> {
|
|
return this.request('patch', href, data, headers);
|
|
}
|
|
|
|
/**
|
|
* Perform a DELETE request and return a resource promise
|
|
*
|
|
* @param href
|
|
* @param data
|
|
* @param headers
|
|
* @returns {ng.IPromise<HalResource>}
|
|
*/
|
|
public delete<T extends HalResource>(href:string, data?:any, headers?:any):IPromise<T> {
|
|
return this.request('delete', href, data, headers);
|
|
}
|
|
}
|
|
|
|
opApiModule.service('halRequest', HalRequestService);
|
|
|