|
| 1 | +/* |
| 2 | + * This file is part of invenio. |
| 3 | + * Copyright (C) 2016 CERN. |
| 4 | + * |
| 5 | + * invenio is free software; you can redistribute it and/or |
| 6 | + * modify it under the terms of the GNU General Public License as |
| 7 | + * published by the Free Software Foundation; either version 2 of the |
| 8 | + * License, or (at your option) any later version. |
| 9 | + * |
| 10 | + * invenio is distributed in the hope that it will be useful, but |
| 11 | + * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 13 | + * General Public License for more details. |
| 14 | + * |
| 15 | + * You should have received a copy of the GNU General Public License |
| 16 | + * along with invenio; if not, write to the Free Software Foundation, Inc., |
| 17 | + * 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. |
| 18 | + * |
| 19 | + * In applying this license, CERN does not |
| 20 | + * waive the privileges and immunities granted to it by virtue of its status |
| 21 | + * as an Intergovernmental Organization or submit itself to any jurisdiction. |
| 22 | + */ |
| 23 | + |
| 24 | +(function (angular) { |
| 25 | + angular |
| 26 | + .module('circulation') |
| 27 | + .factory('ItemStore', ItemStore) |
| 28 | + |
| 29 | + ItemStore.$inject = ['$http', 'SettingsStore'] |
| 30 | + |
| 31 | + function ItemStore($http, SettingsStore) { |
| 32 | + items = []; |
| 33 | + itemActions = []; |
| 34 | + |
| 35 | + var service = { |
| 36 | + items: items, |
| 37 | + itemActions: itemActions, |
| 38 | + validateActionsOnItem: validateActionsOnItem, |
| 39 | + validateItems: validateItems, |
| 40 | + performActionOnItem: performActionOnItem, |
| 41 | + extend: extend, |
| 42 | + remove: remove, |
| 43 | + getItemsActionState: getItemsActionState, |
| 44 | + }; |
| 45 | + |
| 46 | + return service; |
| 47 | + |
| 48 | + function validateActionsOnItem(index, actionEndpoints) { |
| 49 | + angular.forEach(actionEndpoints, function(url, action) { |
| 50 | + var data = SettingsStore.getPayload(); |
| 51 | + data.item_id = items[index].id; |
| 52 | + data.dry_run = true; |
| 53 | + |
| 54 | + $http({ |
| 55 | + method: 'POST', |
| 56 | + url: url, |
| 57 | + headers: { |
| 58 | + 'Content-Type': 'application/json' |
| 59 | + }, |
| 60 | + data: data, |
| 61 | + }).then(function (response) { |
| 62 | + itemActions[index][action] = 1; |
| 63 | + }, function (response) { |
| 64 | + itemActions[index][action] = -1; |
| 65 | + }); |
| 66 | + }) |
| 67 | + } |
| 68 | + |
| 69 | + function validateItems(actionEndpoints) { |
| 70 | + for (var i=0; i < items.length; i++) { |
| 71 | + validateActionsOnItem(i, actionEndpoints); |
| 72 | + } |
| 73 | + } |
| 74 | + |
| 75 | + function performActionOnItem(index, actionEndpoint) { |
| 76 | + var data = SettingsStore.getPayload(); |
| 77 | + data.item_id = items[index].id; |
| 78 | + |
| 79 | + $http({ |
| 80 | + method: 'POST', |
| 81 | + url: actionEndpoint, |
| 82 | + headers: { |
| 83 | + 'Content-Type': 'application/json' |
| 84 | + }, |
| 85 | + data: data, |
| 86 | + }).then(function (response) { |
| 87 | + console.log('Success'); |
| 88 | + }, function (response) { |
| 89 | + console.log('Failure'); |
| 90 | + }); |
| 91 | + |
| 92 | + } |
| 93 | + |
| 94 | + function getItemsActionState(action) { |
| 95 | + if (itemActions.length == 0) { |
| 96 | + return 0; |
| 97 | + } |
| 98 | + |
| 99 | + var actionState = 1; |
| 100 | + |
| 101 | + itemActions.forEach(function(val) { |
| 102 | + if (val[action] == -1) { |
| 103 | + actionState = -1; |
| 104 | + } |
| 105 | + }); |
| 106 | + |
| 107 | + return actionState |
| 108 | + } |
| 109 | + |
| 110 | + function extend(values) { |
| 111 | + values.forEach(function(val) { |
| 112 | + items.push(val); |
| 113 | + itemActions.push({}); |
| 114 | + }); |
| 115 | + } |
| 116 | + |
| 117 | + function remove(index) { |
| 118 | + items.splice(index, 1); |
| 119 | + itemActions.splice(index, 1); |
| 120 | + } |
| 121 | + |
| 122 | + } |
| 123 | +})(angular); |
0 commit comments