Welcome to mirror list, hosted at ThFree Co, Russian Federation.

pictures.js « js « gallery « apps - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 678c9bcbf55c69d4bdbe55bd14821d7a63f8b869 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37

function constructSharingPath() {
  return document.location.protocol + '//' + document.location.host + OC.linkTo('', 'public.php') + '?service=gallery&token=' + Albums.token;
}

function shareGallery() {
  var existing_token = '';
  //if (Albums.token)
  //  existing_token = constructSharingPath();
  var form_fields = [{text: 'Share', name: 'share', type: 'checkbox', value: false},
                     {text: 'Share recursive', name: 'recursive', type: 'checkbox', value: false},
                     {text: 'Shared gallery address', name: 'address', type: 'text', value: ''}];
    OC.dialogs.form(form_fields, t('gallery', 'Share gallery'), function(values){
    var p = '';
    for (var i in paths) p += paths[i]+'/';
    if (p == '') p = '/';
    alert(p);
    $.getJSON(OC.filePath('gallery', 'ajax', 'galleryOp.php'), {operation: 'share', path: p, share: values[0].value, recursive: values[1].value}, function(r) {
      if (r.status == 'success') {
        Albums.shared = r.sharing;
        if (Albums.shared) {
          Albums.token = r.token;
          Albums.recursive = r.recursive;
        } else {
          Albums.token = '';
          Albums.recursive = false;
        }
        var actual_addr = '';
        if (Albums.token)
          actual_addr = constructSharingPath();
        $('input[name="address"]').val(actual_addr);
      } else {
        OC.dialogs.alert(t('gallery', 'Error: ') + r.cause, t('gallery', 'Internal error'));
      }
    });
  });
}