summaryrefslogtreecommitdiffstats
path: root/afb-client/app/Frontend/widgets/FormInput/UploadFiles.js
blob: a23809f065a9e2be429203ffab803f349fde2d81 (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
/* 
 * Copyright (C) 2015 "IoT.bzh"
 * Author "Fulup Ar Foll"
 *
 * 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 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 General Public License for more details..
 * 
 * Reference:
 *   https://developer.mozilla.org/en/docs/Web/API/FileReader 
 *   https://developer.mozilla.org/en-US/docs/Using_files_from_web_applications#Using_hidden_file_input_elements_using_the_click%28%29_method
 *   https://uncorkedstudios.com/blog/multipartformdata-file-upload-with-angularjs
 *   https://www.terlici.com/2015/05/16/uploading-files-locally.html
 *   https://github.com/nervgh/angular-file-upload/blob/master/src/services/FileUploader.js
 *   https://stuk.github.io/jszip/documentation/howto/read_zip.html
 *   http://onehungrymind.com/zip-parsing-jszip-angular/
 *   http://stackoverflow.com/questions/15341912/how-to-go-from-blob-to-arraybuffer
 *   
 *   Bugs: zip file sent even when flag as invalid 
 */

 

(function() {
'use strict';

// WARNING: Angular ng-change does not work on input/file. Let's hook our callback through standard JS function
var tmpl =  '<input type="file" name="{{name}}-input" onchange="angular.element(this).scope().UpLoadFile(this.files)" accept="{{mimetype}}" style="display:none">'+
            '<div class="upload-file" ng-click="imgClicked()">' +
            '<img id="{{name}}-img" src="{{thumbnail}}">' +
            '<range-slider ng-show="!noslider" id="{{name}}-slider" automatic=true inithook="SliderInitCB"></range-slider>' +
            '</div>';
    

// Service Create xform insert files in and Post it to url
function LoadFileSvc (scope, elem, posturl, files, thumbnailCB) {
    var xmlReq = new XMLHttpRequest();
    var xform  = new FormData();
    
    var OnLoadCB = function (target) {
        var status = thumbnailCB (target);
        //if (status) xform.append(scope.name, file, file.name);
    };
            // Update slider during Upload
    xmlReq.upload.onprogress = function (event) {
        var progress = Math.round(event.lengthComputable ? event.loaded * 100 / event.total : 0);
        if (scope.slider) scope.slider.setValue (progress);
    };

    // Upload is finish let's notify controler callback
    xmlReq.onload = function () {
        elem.addClass ("success");
        elem.removeClass ("error");
        var response ={
            status : xmlReq.status,
            headers: xmlReq.getAllResponseHeaders() 
        };
        scope.callback (response);
    };

    xmlReq.onerror = function () {
        elem.addClass ("error");
        elem.removeClass ("success");
        var response ={
            status : xmlReq.status,
            headers: xmlReq.getAllResponseHeaders() 
        };
        scope.callback (response);
    };

    xmlReq.onabort = function () {
        elem.addClass ("error");
        elem.removeClass ("success");
        var response ={
            status : xmlReq.status,
            headers: xmlReq.getAllResponseHeaders() 
        };
        scope.callback (response);
    };

    for (var i = 0; i < files.length; i++) {
        var file = files[i];
        if (!file.type.match(scope.mimetype)) {
            continue;
        }

        console.log ("Selected file=" + file.name + " size="+ file.size/1024 + " Type="+ file.type);

        // File to upload is too big
        if (file.size > scope.maxsize*1024) {
            scope.thumbnail = scope.istoobig; // warning if image path is wrong nothing happen
            scope.$apply('thumbnail'); // we short-circuit Angular resync Image
            return;
        }

        // This is not an uploadable file
        if(isNaN(file.size)) {
            scope.thumbnail = scope.isnotvalid; 
            scope.$apply('thumbnail');
            return;
        }

        scope.Basename= file.name.split('/').reverse()[0];
        scope.imgElem[0].file = file;

        // If File is an image let display it now
        if (thumbnailCB) {
            var reader = new FileReader();
            reader.readAsArrayBuffer(file);
            reader.onload = OnLoadCB;
        } 
        // if everything is OK let's add file to xform
        xform.append(scope.name, file, file.name);
    }


    // everything looks OK let's Post it
    xmlReq.open("POST", posturl , true);
    xmlReq.send(xform);
}

angular.module('UploadFiles',['AppConfig', 'ModalNotification', 'RangeSlider'])

.directive('uploadImage', function(AppConfig,  JQemu, Notification) {
    function mymethods(scope, elem, attrs) {
        
        // get widget image handle from template
        scope.imgElem    = elem.find('img');
        scope.inputElem  = elem.find('input');
        
        // Image was ckick let's simulate an input (file) click
        scope.imgClicked = function () {
            scope.inputElem[0].click(); // Warning Angular TriggerEvent does not work!!!
        };
        
        // Slider control handle registration after creation
        scope.SliderInitCB=function (slider) {
           scope.slider= slider; 
        };
        
        // Upload is delegated to a shared function
        scope.UpLoadFile=function (files) {
            var readerCB = function (upload) {
                // scope.thumbnail = upload.target.result;
                scope.imgElem[0].src = window.URL.createObjectURL(new Blob([upload.target.result], {type: "image"}));                
                return true; // true activates post
            };
            var posturl = attrs.posturl + "?token=" + AppConfig.session.token;
            new LoadFileSvc (scope, elem, posturl, files, readerCB);
        };

        // Initiallize default values from attributes values
        scope.name= attrs.name || 'avatar';
        scope.category= attrs.category  || 'image';
        scope.mimetype= (attrs.accept || 'image') + '/*';
        scope.maxsize= attrs.maxsize || 100; // default max size 100KB
        scope.regexp = new RegExp (attrs.accept+ '.*','i');

        if (attrs.thumbnail) scope.thumbnail= AppConfig.paths[scope.category] +  attrs.thumbnail;
        else  scope.thumbnail=AppConfig.paths[scope.category] + 'tux-bzh.png';
        
        if (attrs.thumbnail) scope.isnotvalid= AppConfig.paths[scope.category] +  attrs.isnotvalid;
        else  scope.isnotvalid=AppConfig.paths[scope.category] + 'isnotvalid.png';

        if (attrs.istoobig) scope.istoobig= AppConfig.paths[scope.category] +  attrs.istoobig;
        else  scope.istoobig=AppConfig.paths[scope.category] + 'istoobig.png';
        scope.noslider = attrs.noslider || false;

        if (!attrs.posturl) throw new TypeError('file-upload %s posturl=/api/xxxx/xxxx required', scope.attrs);            
    }
    return {
        restrict: 'E',
        template: tmpl,
        link: mymethods,
        scope: {
            callback : '='
        }
    };
})
    
.directive('uploadAudio', function(AppConfig,  JQemu, Notification) {
    function mymethods(scope, elem, attrs) {
        
        // get widget image handle from template
        scope.imgElem    = elem.find('img');
        scope.inputElem  = elem.find('input');
        
        // Image was ckick let's simulate an input (file) click
        scope.imgClicked = function () {
            scope.inputElem[0].click(); // Warning Angular TriggerEvent does not work!!!
        };
        
        // Slider control handle registration after creation
        scope.SliderInitCB=function (slider) {
           scope.slider= slider; 
        };
        
        // Upload is delegated to a shared function
        scope.UpLoadFile=function (files) {
            var posturl = attrs.posturl + "?token=" + AppConfig.session.token;
            new LoadFileSvc (scope, elem, posturl, files, false);
        };

        // Initiallize default values from attributes values
        scope.name= attrs.name || 'audio';
        scope.category= attrs.category  || 'audio';
        scope.mimetype= (attrs.accept || 'audio') + '/*';
        scope.maxsize= attrs.maxsize || 10000; // default max size 10MB
        scope.regexp = new RegExp (attrs.accept+ '.*','i');

        if (attrs.thumbnail) scope.thumbnail= AppConfig.paths[scope.category] +  attrs.thumbnail;
        else  scope.thumbnail=AppConfig.paths[scope.category] + 'upload-music.png';
        
        if (attrs.thumbnail) scope.isnotvalid= AppConfig.paths[scope.category] +  attrs.isnotvalid;
        else  scope.isnotvalid=AppConfig.paths[scope.category] + 'isnotvalid.png';

        if (attrs.istoobig) scope.istoobig= AppConfig.paths[scope.category] +  attrs.istoobig;
        else  scope.istoobig=AppConfig.paths[scope.category] + 'istoobig.png';
        scope.noslider = attrs.noslider || false;

        if (!attrs.posturl) throw new TypeError('file-upload %s posturl=/api/xxxx/xxxx required', scope.attrs);            
    }
    return {
        restrict: 'E',
        template: tmpl,
        link: mymethods,
        scope: {
            callback : '='
        }
    };
    
})

.directive('uploadAppli', function(AppConfig,  JQemu, Notification) {
    function mymethods(scope, elem, attrs) {
        
        // get widget image handle from template
        scope.imgElem    = elem.find('img');
        scope.inputElem  = elem.find('input');
        
        // Image was ckick let's simulate an input (file) click
        scope.imgClicked = function () {
            scope.inputElem[0].click(); // Warning Angular TriggerEvent does not work!!!
        };
        
        // Slider control handle registration after creation
        scope.SliderInitCB=function (slider) {
           scope.slider= slider; 
        };
        
        // Upload is delegated to a shared function
        scope.UpLoadFile=function (files) {
                       
            var readerCB = function (upload) {
                var zipapp = new JSZip(upload.target.result);
                var thumbnail = zipapp.file("afa-pkg/thumbnail.jpg");
                
                // Check is we have a thumbnail within loaded Zipfile
                if (!thumbnail) {
                    console.log ("This is not a valid Application Framework APP");
                    scope.thumbnail=AppConfig.paths[scope.category] + 'isnotvalid.png';
                    scope.$apply('thumbnail'); // we short-circuit Angular resync Image
                    return false; // do not post zip on binder
                } 
                scope.imgElem[0].src = window.URL.createObjectURL(new Blob([thumbnail.asArrayBuffer()], {type: "image"}));                        
                return true; // true activates post
            };
            var posturl = attrs.posturl + "?token=" + AppConfig.session.token;
            new LoadFileSvc (scope, elem, posturl, files, readerCB);
        };

        // Initiallize default values from attributes values
        scope.name= attrs.name || 'appli';
        scope.category= attrs.category  || 'appli';
        scope.mimetype= (attrs.accept || '.zip');
        scope.maxsize= attrs.maxsize || 100000; // default max size 100MB
        scope.regexp = new RegExp (attrs.accept+ '.*','i');

        if (attrs.thumbnail) scope.thumbnail= AppConfig.paths[scope.category] +  attrs.thumbnail;
        else  scope.thumbnail=AppConfig.paths[scope.category] + 'upload-appli.png';
        
        if (attrs.thumbnail) scope.isnotvalid= AppConfig.paths[scope.category] +  attrs.isnotvalid;
        else  scope.isnotvalid=AppConfig.paths[scope.category] + 'isnotvalid.png';

        if (attrs.istoobig) scope.istoobig= AppConfig.paths[scope.category] +  attrs.istoobig;
        else  scope.istoobig=AppConfig.paths[scope.category] + 'istoobig.png';
        scope.noslider = attrs.noslider || false;

        if (!attrs.posturl) throw new TypeError('file-upload %s posturl=/api/xxxx/xxxx required', scope.attrs);            
    }
    return {
        restrict: 'E',
        template: tmpl,
        link: mymethods,
        scope: {
            callback : '='
        }
    };
    
});

console.log ("UploadFile Loaded");
})();