93 lines
3.2 KiB
JavaScript
93 lines
3.2 KiB
JavaScript
/*
|
|
* @copyright Copyright (c) 2016 Julius Härtl <jus@bitgrid.net>
|
|
*
|
|
* @author Julius Härtl <jus@bitgrid.net>
|
|
*
|
|
* @license GNU AGPL version 3 or any later version
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as
|
|
* published by the Free Software Foundation, either version 3 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 Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
app.factory('BoardService', function(ApiService, $http, $q){
|
|
var BoardService = function($http, ep, $q) {
|
|
ApiService.call(this, $http, ep, $q);
|
|
};
|
|
BoardService.prototype = angular.copy(ApiService.prototype);
|
|
|
|
BoardService.prototype.searchUsers = function() {
|
|
var url = OC.generateUrl('/apps/deck/share/search/%');
|
|
var deferred = $q.defer();
|
|
var self = this;
|
|
this.sharees = [];
|
|
$http.get(url).then(function (response) {
|
|
self.sharees = response.data;
|
|
deferred.resolve(response.data);
|
|
}, function (error) {
|
|
deferred.reject('Error while update ' + self.endpoint);
|
|
});
|
|
return deferred.promise;
|
|
};
|
|
|
|
BoardService.prototype.addAcl = function(acl) {
|
|
var board = this.getCurrent();
|
|
var deferred = $q.defer();
|
|
var self = this;
|
|
var _acl = acl;
|
|
$http.post(this.baseUrl + '/' + acl.boardId + '/acl', _acl).then(function (response) {
|
|
if(!board.acl) {
|
|
board.acl = {};
|
|
}
|
|
board.acl[response.data.id] = response.data;
|
|
deferred.resolve(response.data);
|
|
}, function (error) {
|
|
deferred.reject('Error creating ACL ' + _acl);
|
|
});
|
|
acl = null;
|
|
return deferred.promise;
|
|
};
|
|
|
|
BoardService.prototype.deleteAcl = function(acl) {
|
|
var board = this.getCurrent();
|
|
var deferred = $q.defer();
|
|
var self = this;
|
|
$http.delete(this.baseUrl + '/' + acl.boardId + '/acl/' + acl.id).then(function (response) {
|
|
delete board.acl[response.data.id];
|
|
deferred.resolve(response.data);
|
|
}, function (error) {
|
|
deferred.reject('Error deleting ACL ' + acl.id);
|
|
});
|
|
acl = null;
|
|
return deferred.promise;
|
|
};
|
|
|
|
BoardService.prototype.updateAcl = function(acl) {
|
|
var board = this.getCurrent();
|
|
var deferred = $q.defer();
|
|
var self = this;
|
|
var _acl = acl;
|
|
$http.put(this.baseUrl + '/' + acl.boardId + '/acl', _acl).then(function (response) {
|
|
board.acl[_acl.id] = response.data;
|
|
deferred.resolve(response.data);
|
|
}, function (error) {
|
|
deferred.reject('Error updating ACL ' + _acl);
|
|
});
|
|
acl = null;
|
|
return deferred.promise;
|
|
};
|
|
|
|
service = new BoardService($http, 'boards', $q)
|
|
return service;
|
|
|
|
}); |