OpenProject is the leading open source project management software.
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.
openproject/frontend/app/components/api/api-v3/hal-resources/work-package-resource.servi...

171 lines
5.0 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.
//++
function wpResource(
HalResource:typeof op.HalResource,
apiWorkPackages,
NotificationsService:any,
$q:ng.IQService
) {
class WorkPackageResource extends HalResource {
private form;
public schema;
public id;
public static fromCreateForm(projectIdentifier?:string):ng.IPromise<WorkPackageResource> {
var deferred = $q.defer();
apiWorkPackages.emptyCreateForm(projectIdentifier)
.then(resource => {
var wp = new WorkPackageResource(resource.payload.$source, true);
// Copy resources from form response
wp.schema = resource.schema;
wp.form = $q.when(resource);
wp.id = 'new-' + Date.now();
deferred.resolve(wp);
})
.catch(deferred.reject);
return deferred.promise;
}
public get isNew():boolean {
var id = Number(this.id);
return isNaN(id);
}
public requiredValueFor(fieldName):boolean {
var fieldSchema = this.schema[fieldName];
return !this[fieldName] && fieldSchema.writable && fieldSchema.required;
}
public getForm() {
if (!this.form) {
this.form = this.$links.update(this);
this.form.catch(error => {
NotificationsService.addError(error.data.message);
});
}
return this.form;
}
public getSchema() {
return this.getForm().then(form => {
const schema = form.$embedded.schema;
angular.forEach(schema, (field, name) => {
if (this[name] && field && field.writable && field.$isHal
&& Array.isArray(field.allowedValues)) {
this[name] = _.where(field.allowedValues, {name: this[name].name})[0];
}
});
return schema;
});
}
public save() {
const plain = this.$plain();
delete plain.createdAt;
delete plain.updatedAt;
var deferred = $q.defer();
this.getForm()
.catch(deferred.reject)
.then(form => {
var plainPayload = form.payload.$plain();
var schema = form.$embedded.schema;
angular.forEach(plain, (value, key) => {
if (typeof(schema[key]) === 'object' && schema[key]['writable'] === true) {
plainPayload[key] = value;
}
});
angular.forEach(plainPayload._links, (_value, key) => {
if (this[key] && typeof(schema[key]) === 'object' && schema[key]['writable'] === true) {
var value = this[key].href === 'null' ? null : this[key].href;
plainPayload._links[key] = {href: value};
}
});
return this.saveResource(plainPayload)
.then(workPackage => {
angular.extend(this, workPackage);
wpCacheService.updateWorkPackageList([this]);
deferred.resolve(this);
}).catch((error) => {
deferred.reject(error);
}).finally(() => {
// Restore the form for subsequent saves
// e.g., due to changes in lockVersion.
// Not needed for inline create.
if (!this.isNew) {
this.form = null;
}
});
});
return deferred.promise;
}
public get isLeaf():boolean {
return !(this as any).children;
}
public isParentOf(otherWorkPackage) {
return otherWorkPackage.parent.$links.self.$link.href ===
this.$links.self.$link.href;
}
public get isEditable():boolean {
return !!this.$links.update || this.isNew;
}
protected saveResource(payload):ng.IPromise<any> {
if (this.isNew) {
return apiWorkPackages.wpApiPath().post(payload);
} else {
return this.$links.updateImmediately(payload);
}
}
}
return WorkPackageResource;
}
angular
.module('openproject.api')
.factory('WorkPackageResource', wpResource);