| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361 |
- /**
- * DevExtreme (ui/file_manager/file_provider/webapi.js)
- * Version: 19.1.16
- * Build date: Tue Oct 18 2022
- *
- * Copyright (c) 2012 - 2022 Developer Express Inc. ALL RIGHTS RESERVED
- * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
- */
- "use strict";
- function _typeof(obj) {
- "@babel/helpers - typeof";
- return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function(obj) {
- return typeof obj
- } : function(obj) {
- return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj
- }, _typeof(obj)
- }
- var _ajax = require("../../../core/utils/ajax");
- var _ajax2 = _interopRequireDefault(_ajax);
- var _common = require("../../../core/utils/common");
- var _guid = require("../../../core/guid");
- var _guid2 = _interopRequireDefault(_guid);
- var _window = require("../../../core/utils/window");
- var _iterator = require("../../../core/utils/iterator");
- var _deferred = require("../../../core/utils/deferred");
- var _file_provider = require("./file_provider");
- var _data = require("../../../core/utils/data");
- function _interopRequireDefault(obj) {
- return obj && obj.__esModule ? obj : {
- "default": obj
- }
- }
- function _classCallCheck(instance, Constructor) {
- if (!(instance instanceof Constructor)) {
- throw new TypeError("Cannot call a class as a function")
- }
- }
- function _defineProperties(target, props) {
- for (var i = 0; i < props.length; i++) {
- var descriptor = props[i];
- descriptor.enumerable = descriptor.enumerable || false;
- descriptor.configurable = true;
- if ("value" in descriptor) {
- descriptor.writable = true
- }
- Object.defineProperty(target, descriptor.key, descriptor)
- }
- }
- function _createClass(Constructor, protoProps, staticProps) {
- if (protoProps) {
- _defineProperties(Constructor.prototype, protoProps)
- }
- if (staticProps) {
- _defineProperties(Constructor, staticProps)
- }
- Object.defineProperty(Constructor, "prototype", {
- writable: false
- });
- return Constructor
- }
- function _inherits(subClass, superClass) {
- if ("function" !== typeof superClass && null !== superClass) {
- throw new TypeError("Super expression must either be null or a function")
- }
- subClass.prototype = Object.create(superClass && superClass.prototype, {
- constructor: {
- value: subClass,
- writable: true,
- configurable: true
- }
- });
- Object.defineProperty(subClass, "prototype", {
- writable: false
- });
- if (superClass) {
- _setPrototypeOf(subClass, superClass)
- }
- }
- function _setPrototypeOf(o, p) {
- _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function(o, p) {
- o.__proto__ = p;
- return o
- };
- return _setPrototypeOf(o, p)
- }
- function _createSuper(Derived) {
- var hasNativeReflectConstruct = _isNativeReflectConstruct();
- return function() {
- var result, Super = _getPrototypeOf(Derived);
- if (hasNativeReflectConstruct) {
- var NewTarget = _getPrototypeOf(this).constructor;
- result = Reflect.construct(Super, arguments, NewTarget)
- } else {
- result = Super.apply(this, arguments)
- }
- return _possibleConstructorReturn(this, result)
- }
- }
- function _possibleConstructorReturn(self, call) {
- if (call && ("object" === _typeof(call) || "function" === typeof call)) {
- return call
- } else {
- if (void 0 !== call) {
- throw new TypeError("Derived constructors may only return object or undefined")
- }
- }
- return _assertThisInitialized(self)
- }
- function _assertThisInitialized(self) {
- if (void 0 === self) {
- throw new ReferenceError("this hasn't been initialised - super() hasn't been called")
- }
- return self
- }
- function _isNativeReflectConstruct() {
- if ("undefined" === typeof Reflect || !Reflect.construct) {
- return false
- }
- if (Reflect.construct.sham) {
- return false
- }
- if ("function" === typeof Proxy) {
- return true
- }
- try {
- Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
- return true
- } catch (e) {
- return false
- }
- }
- function _getPrototypeOf(o) {
- _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function(o) {
- return o.__proto__ || Object.getPrototypeOf(o)
- };
- return _getPrototypeOf(o)
- }
- var window = (0, _window.getWindow)();
- var FILE_CHUNK_BLOB_NAME = "chunk";
- var WebApiFileProvider = function(_FileProvider) {
- _inherits(WebApiFileProvider, _FileProvider);
- var _super = _createSuper(WebApiFileProvider);
- function WebApiFileProvider(options) {
- var _this;
- _classCallCheck(this, WebApiFileProvider);
- options = (0, _common.ensureDefined)(options, {});
- _this = _super.call(this, options);
- _this._endpointUrl = options.endpointUrl;
- _this._hasSubDirsGetter = (0, _data.compileGetter)(options.hasSubDirectoriesExpr || "hasSubDirectories");
- return _this
- }
- _createClass(WebApiFileProvider, [{
- key: "getItems",
- value: function(path, itemType) {
- return this._getItems(path, itemType)
- }
- }, {
- key: "renameItem",
- value: function(item, name) {
- return this._executeRequest("Rename", {
- id: item.relativeName,
- name: name
- })
- }
- }, {
- key: "createFolder",
- value: function(parentFolder, name) {
- return this._executeRequest("CreateDir", {
- parentId: parentFolder.relativeName,
- name: name
- })
- }
- }, {
- key: "deleteItems",
- value: function(items) {
- var _this2 = this;
- return items.map(function(item) {
- return _this2._executeRequest("Remove", {
- id: item.relativeName
- })
- })
- }
- }, {
- key: "moveItems",
- value: function(items, destinationFolder) {
- var _this3 = this;
- return items.map(function(item) {
- return _this3._executeRequest("Move", {
- sourceId: item.relativeName,
- destinationId: destinationFolder.relativeName + "/" + item.name
- })
- })
- }
- }, {
- key: "copyItems",
- value: function(items, destinationFolder) {
- var _this4 = this;
- return items.map(function(item) {
- return _this4._executeRequest("Copy", {
- sourceId: item.relativeName,
- destinationId: destinationFolder.relativeName + "/" + item.name
- })
- })
- }
- }, {
- key: "initiateFileUpload",
- value: function(uploadInfo) {
- uploadInfo.customData.uploadId = new _guid2.default
- }
- }, {
- key: "uploadFileChunk",
- value: function(uploadInfo, chunk) {
- var args = {
- destinationId: uploadInfo.destinationFolder.relativeName,
- chunkMetadata: JSON.stringify({
- UploadId: uploadInfo.customData.uploadId,
- FileName: uploadInfo.file.name,
- Index: chunk.index,
- TotalCount: uploadInfo.totalChunkCount,
- FileSize: uploadInfo.file.size
- })
- };
- var formData = new window.FormData;
- formData.append(FILE_CHUNK_BLOB_NAME, chunk.blob);
- formData.append("arguments", JSON.stringify(args));
- formData.append("command", "UploadChunk");
- var deferred = new _deferred.Deferred;
- _ajax2.default.sendRequest({
- url: this._endpointUrl,
- method: "POST",
- dataType: "json",
- data: formData,
- upload: {
- onprogress: _common.noop,
- onloadstart: _common.noop,
- onabort: _common.noop
- },
- cache: false
- }).then(function(result) {
- !result.success && deferred.reject(result) || deferred.resolve()
- }, function(e) {
- return deferred.reject(e)
- });
- return deferred.promise()
- }
- }, {
- key: "abortFileUpload",
- value: function(uploadInfo) {
- return this._executeRequest("AbortUpload", {
- uploadId: uploadInfo.customData.uploadId
- })
- }
- }, {
- key: "_getItems",
- value: function(path, itemType) {
- var _this5 = this;
- return this._getEntriesByPath(path).then(function(result) {
- return _this5._convertDataObjectsToFileItems(result.result, path, itemType)
- })
- }
- }, {
- key: "_getItemsIds",
- value: function(items) {
- return items.map(function(it) {
- return it.relativeName
- })
- }
- }, {
- key: "_getEntriesByPath",
- value: function(path) {
- return this._executeRequest("GetDirContents", {
- parentId: path
- })
- }
- }, {
- key: "_executeRequest",
- value: function(command, args) {
- var method = "GetDirContents" === command ? "GET" : "POST";
- var deferred = new _deferred.Deferred;
- _ajax2.default.sendRequest({
- url: this._getEndpointUrl(command, args),
- method: method,
- dataType: "json",
- cache: false
- }).then(function(result) {
- !result.success && deferred.reject(result) || deferred.resolve(result)
- }, function(e) {
- return deferred.reject(e)
- });
- return deferred.promise()
- }
- }, {
- key: "_getEndpointUrl",
- value: function(command, args) {
- var queryString = this._getQueryString({
- command: command,
- arguments: JSON.stringify(args)
- });
- var separator = this._endpointUrl && this._endpointUrl.indexOf("?") > 0 ? "&" : "?";
- return this._endpointUrl + separator + queryString
- }
- }, {
- key: "_getQueryString",
- value: function(params) {
- var pairs = [];
- var keys = Object.keys(params);
- for (var i = 0; i < keys.length; i++) {
- var key = keys[i];
- var value = params[key];
- if (void 0 === value) {
- continue
- }
- if (null === value) {
- value = ""
- }
- if (Array.isArray(value)) {
- this._processQueryStringArrayParam(key, value, pairs)
- } else {
- var pair = this._getQueryStringPair(key, value);
- pairs.push(pair)
- }
- }
- return pairs.join("&")
- }
- }, {
- key: "_processQueryStringArrayParam",
- value: function(key, array, pairs) {
- var _this6 = this;
- (0, _iterator.each)(array, function(_, item) {
- var pair = _this6._getQueryStringPair(key, item);
- pairs.push(pair)
- })
- }
- }, {
- key: "_getQueryStringPair",
- value: function(key, value) {
- return encodeURIComponent(key) + "=" + encodeURIComponent(value)
- }
- }, {
- key: "_hasSubDirs",
- value: function(dataObj) {
- var hasSubDirs = this._hasSubDirsGetter(dataObj);
- return "boolean" === typeof hasSubDirs ? hasSubDirs : true
- }
- }]);
- return WebApiFileProvider
- }(_file_provider.FileProvider);
- module.exports = WebApiFileProvider;
|