]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/web/js/ui/default/staff/cat/z3950/app.js
LP#1724885: (follow-up) fix whitespace
[Evergreen.git] / Open-ILS / web / js / ui / default / staff / cat / z3950 / app.js
1 /*
2  * Z39.50 search and import
3  */
4
5 angular.module('egCatZ3950Search',
6     ['ngRoute', 'ui.bootstrap', 'ngOrderObjectBy', 'egCoreMod', 'egUiMod', 'egGridMod', 'egZ3950Mod', 'egMarcMod'])
7
8 .config(function($routeProvider, $locationProvider, $compileProvider) {
9     $locationProvider.html5Mode(true);
10     $compileProvider.aHrefSanitizationWhitelist(/^\s*(https?|blob):/); // grid export
11
12     var resolver = {delay : function(egStartup) {return egStartup.go()}};
13
14     // search page shows the list view by default
15     $routeProvider.when('/cat/z3950/search', {
16         templateUrl: './cat/z3950/t_list',
17         controller: 'Z3950SearchCtrl',
18         resolve : resolver
19     });
20
21     // default page / bucket view
22     $routeProvider.otherwise({redirectTo : '/cat/z3950/search'});
23 })
24
25 /**
26  * List view - grid stuff
27  */
28 .controller('Z3950SearchCtrl',
29        ['$scope','$q','$location','$timeout','$window','egCore','egGridDataProvider','egZ3950TargetSvc','$uibModal',
30         'egConfirmDialog','egAlertDialog',
31 function($scope , $q , $location , $timeout , $window,  egCore , egGridDataProvider,  egZ3950TargetSvc,  $uibModal,
32          egConfirmDialog, egAlertDialog) {
33
34     // get list of targets
35     egZ3950TargetSvc.loadTargets();
36     egZ3950TargetSvc.loadActiveSearchFields();
37
38     $scope.field_strip_groups = [];
39     egCore.startup.go().then(function() {
40         // and list of field strip groups; need to ensure
41         // that enough of the startup has happened so that
42         // we have the user WS
43         egCore.pcrud.search('vibtg',
44             {
45                 always_apply : 'f',
46                 owner : {
47                     'in' : {
48                         select : {
49                             aou : [{
50                                 column : 'id',
51                                 transform : 'actor.org_unit_ancestors',
52                                 result_field : 'id'
53                             }]
54                         },
55                         from : 'aou',
56                         where : {
57                             id : egCore.auth.user().ws_ou()
58                         }
59                     }
60                 }
61             },
62             { order_by : { vibtq : ['label'] } }
63         ).then(null, null, function(strip_group) {
64             strip_group.selected = false;
65             $scope.field_strip_groups.push(strip_group);
66         });
67     });
68
69     $scope.total_hits = 0;
70
71     var provider = egGridDataProvider.instance({});
72
73     provider.get = function(offset, count) {
74         var deferred = $q.defer();
75
76         var query = egZ3950TargetSvc.currentQuery();
77         if (!query.raw_search && Object.keys(query.search).length == 0) {
78             return $q.when();
79         }
80
81         var method = query.raw_search ?
82                        'open-ils.search.z3950.search_service' :
83                        'open-ils.search.z3950.search_class';
84
85         if (query.raw_search) {
86             query.query = query.raw_search;
87             delete query['search'];
88             delete query['raw_search'];
89             query.service = query.service[0];
90             query.username = query.username[0];
91             query.password = query.password[0];
92         }
93
94         query['limit'] = count;
95         query['offset'] = offset;
96
97         var resultIndex = offset;
98         $scope.total_hits = 0;
99         $scope.searchInProgress = true;
100         egCore.net.request(
101             'open-ils.search',
102             method,
103             egCore.auth.token(),
104             query
105         ).then(
106             function() { $scope.searchInProgress = false; deferred.resolve() },
107             null, // onerror
108             function(result) {
109                 // FIXME when the search offset is > 0, the
110                 // total hits count can be wrong if one of the
111                 // Z39.50 targets has fewer than $offset hits; in that
112                 // case, result.count is not supplied.
113                 $scope.total_hits += (result.count || 0);
114                 for (var i in result.records) {
115                     result.records[i].mvr['service'] = result.service;
116                     result.records[i].mvr['index'] = resultIndex++;
117                     result.records[i].mvr['marcxml'] = result.records[i].marcxml;
118                     deferred.notify(result.records[i].mvr);
119                 }
120             }
121         );
122
123         return deferred.promise;
124     };
125
126     $scope.z3950SearchGridProvider = provider;
127     $scope.gridControls = {};
128
129     $scope.search = function() {
130         $scope.z3950SearchGridProvider.refresh();
131     };
132     $scope.clearForm = function() {
133         egZ3950TargetSvc.clearSearchFields();
134     };
135
136     $scope.saveDefaultZ3950Targets = function() {
137         egZ3950TargetSvc.saveDefaultZ3950Targets();
138     }
139
140     var display_form = true;
141     $scope.show_search_form = function() {
142         return display_form;
143     }
144     $scope.toggle_search_form = function() {
145         display_form = !display_form;
146     }
147
148     $scope.raw_search_impossible = function() {
149         return egZ3950TargetSvc.rawSearchImpossible();
150     }
151     $scope.showRawSearchForm = function() {
152         $uibModal.open({
153             templateUrl: './cat/z3950/t_raw_search',
154             backdrop: 'static',
155             size: 'md',
156             controller:
157                 ['$scope', '$uibModalInstance', function($scope, $uibModalInstance) {
158                 egZ3950TargetSvc.setRawSearch('');
159                 $scope.focusMe = true;
160                 $scope.ok = function(args) { $uibModalInstance.close(args) }
161                 $scope.cancel = function () { $uibModalInstance.dismiss() }
162             }]
163         }).result.then(function (args) {
164             if (!args || !args.raw_search) return;
165             $scope.clearForm();
166             egZ3950TargetSvc.setRawSearch(args.raw_search);
167             $scope.z3950SearchGridProvider.refresh();
168         });
169     }
170
171     $scope.showInCatalog = function() {
172         var items = $scope.gridControls.selectedItems();
173         // relying on cant_showInCatalog to protect us
174         var url = egCore.env.basePath +
175                   'cat/catalog/record/' + items[0].tcn();
176         $timeout(function() { $window.open(url, '_blank') });        
177     };
178     $scope.cant_showInCatalog = function() {
179         var items = $scope.gridControls.selectedItems();
180         if (items.length != 1) return true;
181         if (items[0]['service'] == 'native-evergreen-catalog') return false;
182         return true;
183     };
184
185     $scope.local_overlay_target = egCore.hatch.getLocalItem('eg.cat.marked_overlay_record') || 0;
186     $scope.mark_as_overlay_target = function() {
187         var items = $scope.gridControls.selectedItems();
188         if ($scope.local_overlay_target == items[0].tcn()) {
189             $scope.local_overlay_target = 0;
190         } else {
191             $scope.local_overlay_target = items[0].tcn();
192         }
193         egCore.hatch.setLocalItem('eg.cat.marked_overlay_record',$scope.local_overlay_target);
194     }
195     $scope.cant_overlay = function() {
196         if (!$scope.local_overlay_target) return true;
197         var items = $scope.gridControls.selectedItems();
198         if (items.length != 1) return true;
199         if (
200                 items[0]['service'] == 'native-evergreen-catalog' &&
201                 items[0].tcn() == $scope.local_overlay_target
202            ) return true;
203         return false;
204     }
205
206     $scope.selectFieldStripGroups = function() {
207         var groups = [];
208         angular.forEach($scope.field_strip_groups, function(grp, idx) {
209             if (grp.selected) {
210                 groups.push(grp.id());
211             }
212         });
213         return groups;
214     };
215     $scope.import = function() {
216         var deferred = $q.defer();
217         var items = $scope.gridControls.selectedItems();
218         egCore.net.request(
219             'open-ils.cat',
220             'open-ils.cat.biblio.record.xml.import',
221             egCore.auth.token(),
222             items[0]['marcxml'],
223             null, // FIXME bib source
224             null,
225             null,
226             $scope.selectFieldStripGroups()
227         ).then(
228             function() { deferred.resolve() },
229             null, // onerror
230             function(result) {
231                 var evt = egCore.evt.parse(result);
232                 if (evt) {
233                      if (evt.textcode == 'TCN_EXISTS') {
234                        egAlertDialog.open(
235                             egCore.strings.TCN_EXISTS
236                       );
237                      } else {
238                        // we shouldn't get here
239                        egAlertDialog.open(egCore.strings.TCN_EXISTS_ERR);
240                      }
241                 } else {
242                     egConfirmDialog.open(
243                         egCore.strings.IMPORTED_RECORD_FROM_Z3950,
244                         egCore.strings.IMPORTED_RECORD_FROM_Z3950_AS_ID,
245                         { id : result.id() },
246                         egCore.strings.GO_TO_RECORD,
247                         egCore.strings.GO_BACK
248                     ).result.then(function() {
249                         // NOTE: $location.path('/cat/catalog/record/' + result.id()) did not work
250                         // for some reason
251                         $window.location.href = egCore.env.basePath + 'cat/catalog/record/' + result.id();
252                     });
253                 }
254             }
255         );
256
257         return deferred.promise;
258     };
259     $scope.need_one_selected = function() {
260         var items = $scope.gridControls.selectedItems();
261         if (items.length == 1) return false;
262         return true;
263     };
264
265     $scope.spawn_editor = function() {
266         var items = $scope.gridControls.selectedItems();
267         var recId = 0;
268         $uibModal.open({
269             templateUrl: './cat/z3950/t_marc_edit',
270             backdrop: 'static',
271             size: 'lg',
272             controller:
273                 ['$scope', '$uibModalInstance', function($scope, $uibModalInstance) {
274                 $scope.focusMe = true;
275                 $scope.record_id = recId;
276                 $scope.dirty_flag = false;
277                 $scope.marc_xml = items[0]['marcxml'];
278                 $scope.ok = function(args) { $uibModalInstance.close(args) }
279                 $scope.cancel = function () { $uibModalInstance.dismiss() }
280                 $scope.save_label = egCore.strings.IMPORT_BUTTON_LABEL;
281                 $scope.import_record_callback = function (record_id) {
282                     recId = record_id;
283                     $scope.save_label = egCore.strings.SAVE_BUTTON_LABEL;
284                 };
285             }]
286         }).result.then(function () {
287             if (recId) {
288                 $window.location.href = egCore.env.basePath + 'cat/catalog/record/' + recId;
289             }
290         });
291     }
292
293     $scope.view_marc = function() {
294         var items = $scope.gridControls.selectedItems();
295         $uibModal.open({
296             templateUrl: './cat/z3950/t_marc_html',
297             backdrop: 'static',
298             size: 'lg',
299             controller:
300                 ['$scope', '$uibModalInstance', function($scope, $uibModalInstance) {
301                 $scope.focusMe = true;
302                 $scope.marc_xml = items[0]['marcxml'];
303                 $scope.isbn = (items[0].isbn() || '').replace(/ .*/, '');
304                 $scope.ok = function(args) { $uibModalInstance.close(args) }
305                 $scope.cancel = function () { $uibModalInstance.dismiss() }
306             }]
307         }).result.then(function (args) {
308             if (!args || !args.name) return;
309         });
310     }
311
312     $scope.overlay_record = function() {
313         var items = $scope.gridControls.selectedItems();
314         var overlay_target = $scope.local_overlay_target;
315         var args = {
316             'marc_xml' : items[0]['marcxml']
317         };
318         $uibModal.open({
319             templateUrl: './cat/z3950/t_overlay',
320             backdrop: 'static',
321             size: 'lg',
322             controller:
323                 ['$scope', '$uibModalInstance', function($scope, $uibModalInstance) {
324                 $scope.focusMe = true;
325                 $scope.merge_profile = null;
326                 $scope.overlay_target = {
327                     id : overlay_target,
328                     merged : false
329                 };
330
331                 $scope.overlay_target.marc_xml = args.marc_xml;
332                 egCore.pcrud.retrieve('bre', $scope.overlay_target.id)
333                 .then(function(rec) {
334                     $scope.overlay_target.orig_marc_xml = rec.marc();
335                     $scope.merge_marc(); // in case a sticky value was already set
336                 });
337
338                 $scope.merge_marc = function() {
339                     if (!$scope.merge_profile) return;
340                     egCore.net.request(
341                         'open-ils.cat',
342                         'open-ils.cat.merge.marc.per_profile',
343                         egCore.auth.token(),
344                         $scope.merge_profile,
345                         [ args.marc_xml, $scope.overlay_target.orig_marc_xml ]
346                     ).then(function(merged) {
347                         if (merged) {
348                             $scope.overlay_target.marc_xml = merged;
349                             $scope.overlay_target.merged = true;
350                         }
351                     });
352                 }
353                 $scope.$watch('merge_profile', function(newVal, oldVal) {
354                     if (newVal && newVal !== oldVal) {
355                         $scope.merge_marc();
356                     }
357                 });
358
359                 $scope.args = args;
360                 args.overlay_target = $scope.overlay_target;
361                 $scope.ok = function(args) { $uibModalInstance.close(args) };
362                 $scope.cancel = function () { $uibModalInstance.dismiss() };
363                 $scope.editOverlayRecord = function() {
364                     $uibModal.open({
365                         templateUrl: './cat/z3950/t_edit_overlay_record',
366                         backdrop: 'static',
367                         size: 'lg',
368                         controller:
369                             ['$scope', '$uibModalInstance', function($scope, $uibModalInstance) {
370                             $scope.focusMe = true;
371                             $scope.record_id = 0;
372                             $scope.dirty_flag = false;
373                             $scope.args = args;
374                             $scope.ok = function(args) { $uibModalInstance.close(args) }
375                             $scope.cancel = function () { $uibModalInstance.dismiss() }
376                         }]
377                     }).result.then(function (args) {
378                         $scope.merge_marc();
379                         if (!args || !args.name) return;
380                     });
381                 };
382             }]
383         }).result.then(function (args) {
384             egCore.net.request(
385                 'open-ils.cat',
386                 'open-ils.cat.biblio.record.marc.replace',
387                 egCore.auth.token(),
388                 overlay_target,
389                 (args.overlay_target.merged ? args.overlay_target.marc_xml : args.marc_xml),
390                 null, // FIXME bib source
391                 null,
392                 $scope.selectFieldStripGroups()
393             ).then(
394                 function(result) {
395                     console.debug('overlay complete');
396                 }
397             );            
398         });
399     }
400 }])