summaryrefslogtreecommitdiffstats
path: root/afm-client/app/Frontend/widgets/FormInput/UploadAppli.js
blob: d18f620b450e79394fab0c9de4c3789636609629 (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
/* 
 * 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';

var tmplAppli = '<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()">' +
            '<i class="{{icon}}"></i> <span>{{label}}</span>' +
            '<range-slider ng-show="!noslider" id="{{name}}-slider" automatic=true inithook="SliderInitCB"></range-slider>' +
            '</div>';
    
var tmplModal = '<span class="modal-text">Upload Application <b>{{appname}}</b> ?</span>' +
            '<div>'+
            '<img ng-src="{{appicon}}">' +
            '<submit-button icon="fi-x" label="Cancel" clicked="refused"></submit-button>'+
            '<submit-button icon="fi-like" label="Install" clicked="accepted"></submit-button> ' +
            '</div>';
    

// Service Create xform insert files in and Post it to url
function LoadFileSvc (scope, files, fileCB) {
    var xmlReq = new XMLHttpRequest();
    var xform  = new FormData();
    
    // 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 () {
        scope.divElem.addClass ("success");
        scope.divElem.removeClass ("error");
        var response ={
            status : xmlReq.status,
            headers: xmlReq.getAllResponseHeaders() 
        };
        scope.callback (response);
    };

    xmlReq.onerror = function () {
        scope.divElem.addClass ("error");
        scope.divElem.removeClass ("success");
    };

    xmlReq.onabort = function () {
        scope.divElem.addClass ("error");
        scope.divElem.removeClass ("success");
        var response ={
            status : xmlReq.status,
            headers: xmlReq.getAllResponseHeaders() 
        };
        scope.callback (response);
    };
    
    this.postfile = function(posturl) { 
        // everything looks OK let's Post it
        xmlReq.open("POST", posturl , true);
        xmlReq.send(xform);
    };

    for (var i = 0; i < files.length; i++) {
        this.file = files[i];
        console.log ("filetype=%s",this.file.type );
        // Unknow Type !!! if (!this.file.type.match(scope.mimetype)) continue;

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

        // File to upload is too big
        if (this.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(this.file.size)) {
            scope.thumbnail = scope.isnotvalid; 
            scope.$apply('thumbnail');
            return;
        }

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

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

}

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

.directive('uploadAppli', function(AppConfig,  JQemu, Notification, ModalFactory, $timeout) {
    function mymethods(scope, elem, attrs) {
        
        // get widget image handle from template
        scope.inputElem  = elem.find('input');
        scope.divElem    = elem.find('div');
        
        // 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 handle; 
            var appicon;
            
            var accepted = function() {
                console.log ("Modal Accepted");
                // This Looks OK let's Post Xform/File
                handle.postfile(attrs.posturl + "?token=" + AppConfig.session.token);

                scope.modal.deactivate();
                $timeout (function() {scope.modal.destroy();}, 1000);
            };
            
            var refused = function() {
                console.log ("Modal Refused");
                scope.modal.deactivate();
                $timeout (function() {scope.modal.destroy();}, 1000);
            };
                       
            var readerCB = function (upload) {

                var zipapp = new JSZip (upload.target.result);
                var thumbnail = zipapp.file("icon_128.png");
                
                // 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
                } else {
                    //scope.imgElem[0].src = window.URL.createObjectURL(new Blob([thumbnail.asArrayBuffer()], {type: "image"}));
                    appicon = window.URL.createObjectURL(new Blob([thumbnail.asArrayBuffer()], {type: "image"}));
                    
                    // reference http://foundation.zurb.com/apps/docs/#!/angular-modules
                    var config = {
                        animationIn: 'slideInFromTop',
                        contentScope: {
                            accepted: accepted,
                            refused:  refused,
                            appicon:  appicon,
                            appname:  handle.basename
                        }, template:  tmplModal
                    }; 
                    // Popup Modal to render application data
                    scope.modal = new ModalFactory(config);
                    scope.modal.activate ();
                }
            };
            
            // Load file within browser and if OK call readerCB
            handle = new LoadFileSvc (scope, files, readerCB);
        };

        // Initiallize default values from attributes values
        scope.name= attrs.name || 'appli';
        scope.category= attrs.category  || 'appli';
        scope.mimetype= (attrs.accept || '.wgt');
        scope.maxsize = attrs.maxsize || 100000; // default max size 100MB
        scope.regexp  = new RegExp (attrs.accept+ '.*','i');
        scope.icon    = attrs.icon || 'fi-upload';
        scope.label   = attrs.label || 'Upload';
        
        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: tmplAppli,
        link: mymethods,
        scope: {
            callback : '='
        }
    };
    
});

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