仓库用度盘投稿助手 (兼容版)

简易功能增强, 方便仓库投稿用

  1. // ==UserScript==
  2. // @name 仓库用度盘投稿助手 (兼容版)
  3. // @name:en Baidu™ WebDisk Helper (dupan-helper) (Legacy)
  4. // @namespace moe.jixun.dupan.galacg
  5. // @version 1.3.22
  6. // @description 简易功能增强, 方便仓库投稿用
  7. // @description:en Enhancements for Baidu™ WebDisk.
  8. // @author Jixun<https://jixun.moe/>
  9.  
  10. // @match https://pan.baidu.com/disk/home*
  11. // @match https://yun.baidu.com/disk/home*
  12.  
  13. // @compatible firefox Greasemonkey (有限/Limited)
  14. // @compatible firefox Tampermonkey
  15. // @compatible firefox Violentmonkey
  16. // @compatible chrome Violentmonkey
  17. // @compatible chrome Tampermonkey
  18. // @compatible opera Violentmonkey
  19. // @compatible opera Tampermonkey
  20. // @incompatible safari
  21.  
  22. // @license MIT
  23. // @homepageURL https://jixun.moe/post/dupan-helper
  24. // @supportURL https://github.com/JixunMoe/dupan-helper/issues
  25. // @contributionURL https://jixun.moe/donate
  26.  
  27. // @grant none
  28. // @run-at document-start
  29. // ==/UserScript==
  30.  
  31.  
  32. function entryPoint () {
  33. 'use strict';
  34.  
  35. var css_248z = ".jx_btn {\n background: #fefefe;\n background: linear-gradient(to bottom, #fefefe 0%,#f2f2f2 88%);\n\n display: inline-block;\n line-height: 25px;\n vertical-align: middle;\n margin: 0 0 0 10px;\n text-decoration: none;\n border: 1px solid #AAA;\n padding: 0 20px;\n height: 26px;\n border-radius: 2px;\n\n min-width: 3em;\n text-align: center;\n}\n.jx_btn, .jx_btn:hover, .jx_btn:focus {\n color: #666;\n}\n.jx_btn:active {\n color: #06C;\n background: #e3e3e3;\n background: -moz-linear-gradient(top, #e3e3e3 0%, #f7f7f7 12%);\n background: -webkit-linear-gradient(top, #e3e3e3 0%,#f7f7f7 12%);\n background: linear-gradient(to bottom, #e3e3e3 0%,#f7f7f7 12%);\n}\n.jx-input {\n margin: 9px 0;\n padding: 0.25em;\n width: 200px;\n line-height: 1;\n vertical-align: middle;\n border: 1px solid #3a8cff4d;\n background: #fff;\n border-radius: 2px;\n}\n\n.jx_hide { display: none }\n.jx_c_warn { color: red }\n\n.jx_list {\n text-align: left;\n max-height: 5.5em;\n overflow-y: scroll;\n overflow-x: hidden;\n line-height: 1;\n padding: .2em;\n margin-bottom: .5em;\n}\n\n/*\n.jx_list:not(:empty) {\n border: 1px solid #ddd;\n}\n*/\n\n.jx_list > li {\n display: flex;\n white-space: nowrap;\n line-height: 1.3;\n}\n\n.jx_list .name {\n color: black;\n\n overflow: hidden;\n text-overflow: ellipsis;\n}\n\n.jx_list .size {\n color: #777;\n\n flex-grow: 1;\n}\n\n.save-complete-details {\n max-height: 30em;\n}\n\n.jx-status {\n padding-left: 0.25em;\n}\n\n.jx-status-success {\n color: green;\n}\n\n.jx-status-skip {\n color: gray;\n}\n\n.jx-status-fail {\n color: red;\n}\n\ntextarea.jx{\n width: 100%;\n min-height: 5em;\n line-height: 1;\n}\n\n.jx-form-options {\n display: flex;\n justify-content: left;\n}\n\n.jx-form-options > label {\n display: inline-flex;\n align-items: center;\n}\n\n.jx-form-options > label + label {\n margin-left: 0.5em;\n}\n\n.jx-form-options > label > input {\n margin-right: 0.25em;\n}\n\n.dialog-header-title > .select-text {\n pointer-events: none;\n}\n\n.g-button-violet .text,\n.g-button-violet .icon,\n.g-button.g-button-violet:hover .icon {\n color: #fff;\n}\n\n.g-button.g-button-violet:hover .icon {\n opacity: 0.9;\n}\n\n.g-button-violet {\n background: #A238FF;\n border: 1px solid #A238FF;\n}\n\n.g-button-violet:hover {\n background: #AE52FF;\n border: 1px solid #AE52FF\n}\n";
  36. styleInject(css_248z);
  37.  
  38. var TAG = '[仓库助手]';
  39. var pluginBlacklist = ['右上角广告位', '网盘APP下载', '满减活动', '会员提醒'];
  40.  
  41. var oRequire;
  42. var hooks = new Map();
  43.  
  44. function fakeRequire(module) {
  45. // console.info('%s Load module: %s', INFO, module);
  46. var result = oRequire.apply(this, arguments);
  47. var moduleHook = hooks.get(module);
  48.  
  49. if (moduleHook) {
  50. try {
  51. moduleHook();
  52. } catch (e) {
  53. console.error('%s: 执行 %s hook 时发生错误: %s', TAG, e.message);
  54. console.trace(e);
  55. }
  56.  
  57. hooks["delete"](module);
  58. }
  59.  
  60. return result;
  61. }
  62.  
  63. function load(module) {
  64. return oRequire.call(window, module);
  65. }
  66. function loadAsync(module) {
  67. return new Promise(function (resolve) {
  68. fakeRequire.async(module, resolve);
  69. });
  70. }
  71. function hook(module, fn) {
  72. hooks.set(module, fn);
  73. }
  74.  
  75. if (window.require) {
  76. console.warn('%s 覆盖方式安装,若无效请强制刷新。', TAG);
  77. oRequire = window.require;
  78. window.require = fakeRequire;
  79. Object.assign(fakeRequire, oRequire);
  80. } else {
  81. console.info('%s 钩子方式安装,若失效请报告。', TAG);
  82. Object.defineProperty(window, 'require', {
  83. set: function set(require) {
  84. oRequire = require;
  85. },
  86. get: function get() {
  87. return fakeRequire;
  88. }
  89. });
  90. } // window.__debug_G = _G;
  91.  
  92. var cache = function cache(value) {
  93. return function () {
  94. return value;
  95. };
  96. };
  97.  
  98. function lazyCache(fn) {
  99. var cacheWrapper = function uncached() {
  100. var result = fn.apply(this, arguments);
  101. cacheWrapper = cache(result);
  102. return result;
  103. };
  104.  
  105. return function cacheProxy() {
  106. return cacheWrapper.apply(this, arguments);
  107. };
  108. }
  109.  
  110. var getFileList = lazyCache(function () {
  111. return load('disk-system:widget/pageModule/list/listInit.js');
  112. });
  113. function getCheckedItems() {
  114. return getFileList().getCheckedItems();
  115. }
  116. function anythingChecked() {
  117. return getCheckedItems().length > 0;
  118. }
  119. function getCurrentDirectory() {
  120. return getFileList().currentKey;
  121. }
  122.  
  123. function createCommonjsModule(fn, module) {
  124. return module = { exports: {} }, fn(module, module.exports), module.exports;
  125. }
  126.  
  127. var runtime_1 = createCommonjsModule(function (module) {
  128. /**
  129. * Copyright (c) 2014-present, Facebook, Inc.
  130. *
  131. * This source code is licensed under the MIT license found in the
  132. * LICENSE file in the root directory of this source tree.
  133. */
  134.  
  135. var runtime = (function (exports) {
  136.  
  137. var Op = Object.prototype;
  138. var hasOwn = Op.hasOwnProperty;
  139. var undefined$1; // More compressible than void 0.
  140. var $Symbol = typeof Symbol === "function" ? Symbol : {};
  141. var iteratorSymbol = $Symbol.iterator || "@@iterator";
  142. var asyncIteratorSymbol = $Symbol.asyncIterator || "@@asyncIterator";
  143. var toStringTagSymbol = $Symbol.toStringTag || "@@toStringTag";
  144.  
  145. function wrap(innerFn, outerFn, self, tryLocsList) {
  146. // If outerFn provided and outerFn.prototype is a Generator, then outerFn.prototype instanceof Generator.
  147. var protoGenerator = outerFn && outerFn.prototype instanceof Generator ? outerFn : Generator;
  148. var generator = Object.create(protoGenerator.prototype);
  149. var context = new Context(tryLocsList || []);
  150.  
  151. // The ._invoke method unifies the implementations of the .next,
  152. // .throw, and .return methods.
  153. generator._invoke = makeInvokeMethod(innerFn, self, context);
  154.  
  155. return generator;
  156. }
  157. exports.wrap = wrap;
  158.  
  159. // Try/catch helper to minimize deoptimizations. Returns a completion
  160. // record like context.tryEntries[i].completion. This interface could
  161. // have been (and was previously) designed to take a closure to be
  162. // invoked without arguments, but in all the cases we care about we
  163. // already have an existing method we want to call, so there's no need
  164. // to create a new function object. We can even get away with assuming
  165. // the method takes exactly one argument, since that happens to be true
  166. // in every case, so we don't have to touch the arguments object. The
  167. // only additional allocation required is the completion record, which
  168. // has a stable shape and so hopefully should be cheap to allocate.
  169. function tryCatch(fn, obj, arg) {
  170. try {
  171. return { type: "normal", arg: fn.call(obj, arg) };
  172. } catch (err) {
  173. return { type: "throw", arg: err };
  174. }
  175. }
  176.  
  177. var GenStateSuspendedStart = "suspendedStart";
  178. var GenStateSuspendedYield = "suspendedYield";
  179. var GenStateExecuting = "executing";
  180. var GenStateCompleted = "completed";
  181.  
  182. // Returning this object from the innerFn has the same effect as
  183. // breaking out of the dispatch switch statement.
  184. var ContinueSentinel = {};
  185.  
  186. // Dummy constructor functions that we use as the .constructor and
  187. // .constructor.prototype properties for functions that return Generator
  188. // objects. For full spec compliance, you may wish to configure your
  189. // minifier not to mangle the names of these two functions.
  190. function Generator() {}
  191. function GeneratorFunction() {}
  192. function GeneratorFunctionPrototype() {}
  193.  
  194. // This is a polyfill for %IteratorPrototype% for environments that
  195. // don't natively support it.
  196. var IteratorPrototype = {};
  197. IteratorPrototype[iteratorSymbol] = function () {
  198. return this;
  199. };
  200.  
  201. var getProto = Object.getPrototypeOf;
  202. var NativeIteratorPrototype = getProto && getProto(getProto(values([])));
  203. if (NativeIteratorPrototype &&
  204. NativeIteratorPrototype !== Op &&
  205. hasOwn.call(NativeIteratorPrototype, iteratorSymbol)) {
  206. // This environment has a native %IteratorPrototype%; use it instead
  207. // of the polyfill.
  208. IteratorPrototype = NativeIteratorPrototype;
  209. }
  210.  
  211. var Gp = GeneratorFunctionPrototype.prototype =
  212. Generator.prototype = Object.create(IteratorPrototype);
  213. GeneratorFunction.prototype = Gp.constructor = GeneratorFunctionPrototype;
  214. GeneratorFunctionPrototype.constructor = GeneratorFunction;
  215. GeneratorFunctionPrototype[toStringTagSymbol] =
  216. GeneratorFunction.displayName = "GeneratorFunction";
  217.  
  218. // Helper for defining the .next, .throw, and .return methods of the
  219. // Iterator interface in terms of a single ._invoke method.
  220. function defineIteratorMethods(prototype) {
  221. ["next", "throw", "return"].forEach(function(method) {
  222. prototype[method] = function(arg) {
  223. return this._invoke(method, arg);
  224. };
  225. });
  226. }
  227.  
  228. exports.isGeneratorFunction = function(genFun) {
  229. var ctor = typeof genFun === "function" && genFun.constructor;
  230. return ctor
  231. ? ctor === GeneratorFunction ||
  232. // For the native GeneratorFunction constructor, the best we can
  233. // do is to check its .name property.
  234. (ctor.displayName || ctor.name) === "GeneratorFunction"
  235. : false;
  236. };
  237.  
  238. exports.mark = function(genFun) {
  239. if (Object.setPrototypeOf) {
  240. Object.setPrototypeOf(genFun, GeneratorFunctionPrototype);
  241. } else {
  242. genFun.__proto__ = GeneratorFunctionPrototype;
  243. if (!(toStringTagSymbol in genFun)) {
  244. genFun[toStringTagSymbol] = "GeneratorFunction";
  245. }
  246. }
  247. genFun.prototype = Object.create(Gp);
  248. return genFun;
  249. };
  250.  
  251. // Within the body of any async function, `await x` is transformed to
  252. // `yield regeneratorRuntime.awrap(x)`, so that the runtime can test
  253. // `hasOwn.call(value, "__await")` to determine if the yielded value is
  254. // meant to be awaited.
  255. exports.awrap = function(arg) {
  256. return { __await: arg };
  257. };
  258.  
  259. function AsyncIterator(generator, PromiseImpl) {
  260. function invoke(method, arg, resolve, reject) {
  261. var record = tryCatch(generator[method], generator, arg);
  262. if (record.type === "throw") {
  263. reject(record.arg);
  264. } else {
  265. var result = record.arg;
  266. var value = result.value;
  267. if (value &&
  268. typeof value === "object" &&
  269. hasOwn.call(value, "__await")) {
  270. return PromiseImpl.resolve(value.__await).then(function(value) {
  271. invoke("next", value, resolve, reject);
  272. }, function(err) {
  273. invoke("throw", err, resolve, reject);
  274. });
  275. }
  276.  
  277. return PromiseImpl.resolve(value).then(function(unwrapped) {
  278. // When a yielded Promise is resolved, its final value becomes
  279. // the .value of the Promise<{value,done}> result for the
  280. // current iteration.
  281. result.value = unwrapped;
  282. resolve(result);
  283. }, function(error) {
  284. // If a rejected Promise was yielded, throw the rejection back
  285. // into the async generator function so it can be handled there.
  286. return invoke("throw", error, resolve, reject);
  287. });
  288. }
  289. }
  290.  
  291. var previousPromise;
  292.  
  293. function enqueue(method, arg) {
  294. function callInvokeWithMethodAndArg() {
  295. return new PromiseImpl(function(resolve, reject) {
  296. invoke(method, arg, resolve, reject);
  297. });
  298. }
  299.  
  300. return previousPromise =
  301. // If enqueue has been called before, then we want to wait until
  302. // all previous Promises have been resolved before calling invoke,
  303. // so that results are always delivered in the correct order. If
  304. // enqueue has not been called before, then it is important to
  305. // call invoke immediately, without waiting on a callback to fire,
  306. // so that the async generator function has the opportunity to do
  307. // any necessary setup in a predictable way. This predictability
  308. // is why the Promise constructor synchronously invokes its
  309. // executor callback, and why async functions synchronously
  310. // execute code before the first await. Since we implement simple
  311. // async functions in terms of async generators, it is especially
  312. // important to get this right, even though it requires care.
  313. previousPromise ? previousPromise.then(
  314. callInvokeWithMethodAndArg,
  315. // Avoid propagating failures to Promises returned by later
  316. // invocations of the iterator.
  317. callInvokeWithMethodAndArg
  318. ) : callInvokeWithMethodAndArg();
  319. }
  320.  
  321. // Define the unified helper method that is used to implement .next,
  322. // .throw, and .return (see defineIteratorMethods).
  323. this._invoke = enqueue;
  324. }
  325.  
  326. defineIteratorMethods(AsyncIterator.prototype);
  327. AsyncIterator.prototype[asyncIteratorSymbol] = function () {
  328. return this;
  329. };
  330. exports.AsyncIterator = AsyncIterator;
  331.  
  332. // Note that simple async functions are implemented on top of
  333. // AsyncIterator objects; they just return a Promise for the value of
  334. // the final result produced by the iterator.
  335. exports.async = function(innerFn, outerFn, self, tryLocsList, PromiseImpl) {
  336. if (PromiseImpl === void 0) PromiseImpl = Promise;
  337.  
  338. var iter = new AsyncIterator(
  339. wrap(innerFn, outerFn, self, tryLocsList),
  340. PromiseImpl
  341. );
  342.  
  343. return exports.isGeneratorFunction(outerFn)
  344. ? iter // If outerFn is a generator, return the full iterator.
  345. : iter.next().then(function(result) {
  346. return result.done ? result.value : iter.next();
  347. });
  348. };
  349.  
  350. function makeInvokeMethod(innerFn, self, context) {
  351. var state = GenStateSuspendedStart;
  352.  
  353. return function invoke(method, arg) {
  354. if (state === GenStateExecuting) {
  355. throw new Error("Generator is already running");
  356. }
  357.  
  358. if (state === GenStateCompleted) {
  359. if (method === "throw") {
  360. throw arg;
  361. }
  362.  
  363. // Be forgiving, per 25.3.3.3.3 of the spec:
  364. // https://people.mozilla.org/~jorendorff/es6-draft.html#sec-generatorresume
  365. return doneResult();
  366. }
  367.  
  368. context.method = method;
  369. context.arg = arg;
  370.  
  371. while (true) {
  372. var delegate = context.delegate;
  373. if (delegate) {
  374. var delegateResult = maybeInvokeDelegate(delegate, context);
  375. if (delegateResult) {
  376. if (delegateResult === ContinueSentinel) continue;
  377. return delegateResult;
  378. }
  379. }
  380.  
  381. if (context.method === "next") {
  382. // Setting context._sent for legacy support of Babel's
  383. // function.sent implementation.
  384. context.sent = context._sent = context.arg;
  385.  
  386. } else if (context.method === "throw") {
  387. if (state === GenStateSuspendedStart) {
  388. state = GenStateCompleted;
  389. throw context.arg;
  390. }
  391.  
  392. context.dispatchException(context.arg);
  393.  
  394. } else if (context.method === "return") {
  395. context.abrupt("return", context.arg);
  396. }
  397.  
  398. state = GenStateExecuting;
  399.  
  400. var record = tryCatch(innerFn, self, context);
  401. if (record.type === "normal") {
  402. // If an exception is thrown from innerFn, we leave state ===
  403. // GenStateExecuting and loop back for another invocation.
  404. state = context.done
  405. ? GenStateCompleted
  406. : GenStateSuspendedYield;
  407.  
  408. if (record.arg === ContinueSentinel) {
  409. continue;
  410. }
  411.  
  412. return {
  413. value: record.arg,
  414. done: context.done
  415. };
  416.  
  417. } else if (record.type === "throw") {
  418. state = GenStateCompleted;
  419. // Dispatch the exception by looping back around to the
  420. // context.dispatchException(context.arg) call above.
  421. context.method = "throw";
  422. context.arg = record.arg;
  423. }
  424. }
  425. };
  426. }
  427.  
  428. // Call delegate.iterator[context.method](context.arg) and handle the
  429. // result, either by returning a { value, done } result from the
  430. // delegate iterator, or by modifying context.method and context.arg,
  431. // setting context.delegate to null, and returning the ContinueSentinel.
  432. function maybeInvokeDelegate(delegate, context) {
  433. var method = delegate.iterator[context.method];
  434. if (method === undefined$1) {
  435. // A .throw or .return when the delegate iterator has no .throw
  436. // method always terminates the yield* loop.
  437. context.delegate = null;
  438.  
  439. if (context.method === "throw") {
  440. // Note: ["return"] must be used for ES3 parsing compatibility.
  441. if (delegate.iterator["return"]) {
  442. // If the delegate iterator has a return method, give it a
  443. // chance to clean up.
  444. context.method = "return";
  445. context.arg = undefined$1;
  446. maybeInvokeDelegate(delegate, context);
  447.  
  448. if (context.method === "throw") {
  449. // If maybeInvokeDelegate(context) changed context.method from
  450. // "return" to "throw", let that override the TypeError below.
  451. return ContinueSentinel;
  452. }
  453. }
  454.  
  455. context.method = "throw";
  456. context.arg = new TypeError(
  457. "The iterator does not provide a 'throw' method");
  458. }
  459.  
  460. return ContinueSentinel;
  461. }
  462.  
  463. var record = tryCatch(method, delegate.iterator, context.arg);
  464.  
  465. if (record.type === "throw") {
  466. context.method = "throw";
  467. context.arg = record.arg;
  468. context.delegate = null;
  469. return ContinueSentinel;
  470. }
  471.  
  472. var info = record.arg;
  473.  
  474. if (! info) {
  475. context.method = "throw";
  476. context.arg = new TypeError("iterator result is not an object");
  477. context.delegate = null;
  478. return ContinueSentinel;
  479. }
  480.  
  481. if (info.done) {
  482. // Assign the result of the finished delegate to the temporary
  483. // variable specified by delegate.resultName (see delegateYield).
  484. context[delegate.resultName] = info.value;
  485.  
  486. // Resume execution at the desired location (see delegateYield).
  487. context.next = delegate.nextLoc;
  488.  
  489. // If context.method was "throw" but the delegate handled the
  490. // exception, let the outer generator proceed normally. If
  491. // context.method was "next", forget context.arg since it has been
  492. // "consumed" by the delegate iterator. If context.method was
  493. // "return", allow the original .return call to continue in the
  494. // outer generator.
  495. if (context.method !== "return") {
  496. context.method = "next";
  497. context.arg = undefined$1;
  498. }
  499.  
  500. } else {
  501. // Re-yield the result returned by the delegate method.
  502. return info;
  503. }
  504.  
  505. // The delegate iterator is finished, so forget it and continue with
  506. // the outer generator.
  507. context.delegate = null;
  508. return ContinueSentinel;
  509. }
  510.  
  511. // Define Generator.prototype.{next,throw,return} in terms of the
  512. // unified ._invoke helper method.
  513. defineIteratorMethods(Gp);
  514.  
  515. Gp[toStringTagSymbol] = "Generator";
  516.  
  517. // A Generator should always return itself as the iterator object when the
  518. // @@iterator function is called on it. Some browsers' implementations of the
  519. // iterator prototype chain incorrectly implement this, causing the Generator
  520. // object to not be returned from this call. This ensures that doesn't happen.
  521. // See https://github.com/facebook/regenerator/issues/274 for more details.
  522. Gp[iteratorSymbol] = function() {
  523. return this;
  524. };
  525.  
  526. Gp.toString = function() {
  527. return "[object Generator]";
  528. };
  529.  
  530. function pushTryEntry(locs) {
  531. var entry = { tryLoc: locs[0] };
  532.  
  533. if (1 in locs) {
  534. entry.catchLoc = locs[1];
  535. }
  536.  
  537. if (2 in locs) {
  538. entry.finallyLoc = locs[2];
  539. entry.afterLoc = locs[3];
  540. }
  541.  
  542. this.tryEntries.push(entry);
  543. }
  544.  
  545. function resetTryEntry(entry) {
  546. var record = entry.completion || {};
  547. record.type = "normal";
  548. delete record.arg;
  549. entry.completion = record;
  550. }
  551.  
  552. function Context(tryLocsList) {
  553. // The root entry object (effectively a try statement without a catch
  554. // or a finally block) gives us a place to store values thrown from
  555. // locations where there is no enclosing try statement.
  556. this.tryEntries = [{ tryLoc: "root" }];
  557. tryLocsList.forEach(pushTryEntry, this);
  558. this.reset(true);
  559. }
  560.  
  561. exports.keys = function(object) {
  562. var keys = [];
  563. for (var key in object) {
  564. keys.push(key);
  565. }
  566. keys.reverse();
  567.  
  568. // Rather than returning an object with a next method, we keep
  569. // things simple and return the next function itself.
  570. return function next() {
  571. while (keys.length) {
  572. var key = keys.pop();
  573. if (key in object) {
  574. next.value = key;
  575. next.done = false;
  576. return next;
  577. }
  578. }
  579.  
  580. // To avoid creating an additional object, we just hang the .value
  581. // and .done properties off the next function object itself. This
  582. // also ensures that the minifier will not anonymize the function.
  583. next.done = true;
  584. return next;
  585. };
  586. };
  587.  
  588. function values(iterable) {
  589. if (iterable) {
  590. var iteratorMethod = iterable[iteratorSymbol];
  591. if (iteratorMethod) {
  592. return iteratorMethod.call(iterable);
  593. }
  594.  
  595. if (typeof iterable.next === "function") {
  596. return iterable;
  597. }
  598.  
  599. if (!isNaN(iterable.length)) {
  600. var i = -1, next = function next() {
  601. while (++i < iterable.length) {
  602. if (hasOwn.call(iterable, i)) {
  603. next.value = iterable[i];
  604. next.done = false;
  605. return next;
  606. }
  607. }
  608.  
  609. next.value = undefined$1;
  610. next.done = true;
  611.  
  612. return next;
  613. };
  614.  
  615. return next.next = next;
  616. }
  617. }
  618.  
  619. // Return an iterator with no values.
  620. return { next: doneResult };
  621. }
  622. exports.values = values;
  623.  
  624. function doneResult() {
  625. return { value: undefined$1, done: true };
  626. }
  627.  
  628. Context.prototype = {
  629. constructor: Context,
  630.  
  631. reset: function(skipTempReset) {
  632. this.prev = 0;
  633. this.next = 0;
  634. // Resetting context._sent for legacy support of Babel's
  635. // function.sent implementation.
  636. this.sent = this._sent = undefined$1;
  637. this.done = false;
  638. this.delegate = null;
  639.  
  640. this.method = "next";
  641. this.arg = undefined$1;
  642.  
  643. this.tryEntries.forEach(resetTryEntry);
  644.  
  645. if (!skipTempReset) {
  646. for (var name in this) {
  647. // Not sure about the optimal order of these conditions:
  648. if (name.charAt(0) === "t" &&
  649. hasOwn.call(this, name) &&
  650. !isNaN(+name.slice(1))) {
  651. this[name] = undefined$1;
  652. }
  653. }
  654. }
  655. },
  656.  
  657. stop: function() {
  658. this.done = true;
  659.  
  660. var rootEntry = this.tryEntries[0];
  661. var rootRecord = rootEntry.completion;
  662. if (rootRecord.type === "throw") {
  663. throw rootRecord.arg;
  664. }
  665.  
  666. return this.rval;
  667. },
  668.  
  669. dispatchException: function(exception) {
  670. if (this.done) {
  671. throw exception;
  672. }
  673.  
  674. var context = this;
  675. function handle(loc, caught) {
  676. record.type = "throw";
  677. record.arg = exception;
  678. context.next = loc;
  679.  
  680. if (caught) {
  681. // If the dispatched exception was caught by a catch block,
  682. // then let that catch block handle the exception normally.
  683. context.method = "next";
  684. context.arg = undefined$1;
  685. }
  686.  
  687. return !! caught;
  688. }
  689.  
  690. for (var i = this.tryEntries.length - 1; i >= 0; --i) {
  691. var entry = this.tryEntries[i];
  692. var record = entry.completion;
  693.  
  694. if (entry.tryLoc === "root") {
  695. // Exception thrown outside of any try block that could handle
  696. // it, so set the completion value of the entire function to
  697. // throw the exception.
  698. return handle("end");
  699. }
  700.  
  701. if (entry.tryLoc <= this.prev) {
  702. var hasCatch = hasOwn.call(entry, "catchLoc");
  703. var hasFinally = hasOwn.call(entry, "finallyLoc");
  704.  
  705. if (hasCatch && hasFinally) {
  706. if (this.prev < entry.catchLoc) {
  707. return handle(entry.catchLoc, true);
  708. } else if (this.prev < entry.finallyLoc) {
  709. return handle(entry.finallyLoc);
  710. }
  711.  
  712. } else if (hasCatch) {
  713. if (this.prev < entry.catchLoc) {
  714. return handle(entry.catchLoc, true);
  715. }
  716.  
  717. } else if (hasFinally) {
  718. if (this.prev < entry.finallyLoc) {
  719. return handle(entry.finallyLoc);
  720. }
  721.  
  722. } else {
  723. throw new Error("try statement without catch or finally");
  724. }
  725. }
  726. }
  727. },
  728.  
  729. abrupt: function(type, arg) {
  730. for (var i = this.tryEntries.length - 1; i >= 0; --i) {
  731. var entry = this.tryEntries[i];
  732. if (entry.tryLoc <= this.prev &&
  733. hasOwn.call(entry, "finallyLoc") &&
  734. this.prev < entry.finallyLoc) {
  735. var finallyEntry = entry;
  736. break;
  737. }
  738. }
  739.  
  740. if (finallyEntry &&
  741. (type === "break" ||
  742. type === "continue") &&
  743. finallyEntry.tryLoc <= arg &&
  744. arg <= finallyEntry.finallyLoc) {
  745. // Ignore the finally entry if control is not jumping to a
  746. // location outside the try/catch block.
  747. finallyEntry = null;
  748. }
  749.  
  750. var record = finallyEntry ? finallyEntry.completion : {};
  751. record.type = type;
  752. record.arg = arg;
  753.  
  754. if (finallyEntry) {
  755. this.method = "next";
  756. this.next = finallyEntry.finallyLoc;
  757. return ContinueSentinel;
  758. }
  759.  
  760. return this.complete(record);
  761. },
  762.  
  763. complete: function(record, afterLoc) {
  764. if (record.type === "throw") {
  765. throw record.arg;
  766. }
  767.  
  768. if (record.type === "break" ||
  769. record.type === "continue") {
  770. this.next = record.arg;
  771. } else if (record.type === "return") {
  772. this.rval = this.arg = record.arg;
  773. this.method = "return";
  774. this.next = "end";
  775. } else if (record.type === "normal" && afterLoc) {
  776. this.next = afterLoc;
  777. }
  778.  
  779. return ContinueSentinel;
  780. },
  781.  
  782. finish: function(finallyLoc) {
  783. for (var i = this.tryEntries.length - 1; i >= 0; --i) {
  784. var entry = this.tryEntries[i];
  785. if (entry.finallyLoc === finallyLoc) {
  786. this.complete(entry.completion, entry.afterLoc);
  787. resetTryEntry(entry);
  788. return ContinueSentinel;
  789. }
  790. }
  791. },
  792.  
  793. "catch": function(tryLoc) {
  794. for (var i = this.tryEntries.length - 1; i >= 0; --i) {
  795. var entry = this.tryEntries[i];
  796. if (entry.tryLoc === tryLoc) {
  797. var record = entry.completion;
  798. if (record.type === "throw") {
  799. var thrown = record.arg;
  800. resetTryEntry(entry);
  801. }
  802. return thrown;
  803. }
  804. }
  805.  
  806. // The context.catch method must only be called with a location
  807. // argument that corresponds to a known catch block.
  808. throw new Error("illegal catch attempt");
  809. },
  810.  
  811. delegateYield: function(iterable, resultName, nextLoc) {
  812. this.delegate = {
  813. iterator: values(iterable),
  814. resultName: resultName,
  815. nextLoc: nextLoc
  816. };
  817.  
  818. if (this.method === "next") {
  819. // Deliberately forget the last sent value so that we don't
  820. // accidentally pass it on to the delegate.
  821. this.arg = undefined$1;
  822. }
  823.  
  824. return ContinueSentinel;
  825. }
  826. };
  827.  
  828. // Regardless of whether this script is executing as a CommonJS module
  829. // or not, return the runtime object so that we can declare the variable
  830. // regeneratorRuntime in the outer scope, which allows this module to be
  831. // injected easily by `bin/regenerator --include-runtime script.js`.
  832. return exports;
  833.  
  834. }(
  835. // If this script is executing as a CommonJS module, use module.exports
  836. // as the regeneratorRuntime namespace. Otherwise create a new empty
  837. // object. Either way, the resulting object will be used to initialize
  838. // the regeneratorRuntime variable at the top of this file.
  839. module.exports
  840. ));
  841.  
  842. try {
  843. regeneratorRuntime = runtime;
  844. } catch (accidentalStrictMode) {
  845. // This module should not be running in strict mode, so the above
  846. // assignment should always work unless something is misconfigured. Just
  847. // in case runtime.js accidentally runs in strict mode, we can escape
  848. // strict mode using a global Function call. This could conceivably fail
  849. // if a Content Security Policy forbids using Function, but in that case
  850. // the proper solution is to fix the accidental strict mode problem. If
  851. // you've misconfigured your bundler to force strict mode and applied a
  852. // CSP to forbid Function, and you're not willing to fix either of those
  853. // problems, please detail your unique predicament in a GitHub issue.
  854. Function("r", "regeneratorRuntime = r")(runtime);
  855. }
  856. });
  857.  
  858. var regenerator = runtime_1;
  859.  
  860. function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) {
  861. try {
  862. var info = gen[key](arg);
  863. var value = info.value;
  864. } catch (error) {
  865. reject(error);
  866. return;
  867. }
  868.  
  869. if (info.done) {
  870. resolve(value);
  871. } else {
  872. Promise.resolve(value).then(_next, _throw);
  873. }
  874. }
  875.  
  876. function _asyncToGenerator(fn) {
  877. return function () {
  878. var self = this,
  879. args = arguments;
  880. return new Promise(function (resolve, reject) {
  881. var gen = fn.apply(self, args);
  882.  
  883. function _next(value) {
  884. asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value);
  885. }
  886.  
  887. function _throw(err) {
  888. asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err);
  889. }
  890.  
  891. _next(undefined);
  892. });
  893. };
  894. }
  895.  
  896. var asyncToGenerator = _asyncToGenerator;
  897.  
  898. function _defineProperty(obj, key, value) {
  899. if (key in obj) {
  900. Object.defineProperty(obj, key, {
  901. value: value,
  902. enumerable: true,
  903. configurable: true,
  904. writable: true
  905. });
  906. } else {
  907. obj[key] = value;
  908. }
  909.  
  910. return obj;
  911. }
  912.  
  913. var defineProperty = _defineProperty;
  914.  
  915. function _classCallCheck(instance, Constructor) {
  916. if (!(instance instanceof Constructor)) {
  917. throw new TypeError("Cannot call a class as a function");
  918. }
  919. }
  920.  
  921. var classCallCheck = _classCallCheck;
  922.  
  923. var getPrototypeOf = createCommonjsModule(function (module) {
  924. function _getPrototypeOf(o) {
  925. module.exports = _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
  926. return o.__proto__ || Object.getPrototypeOf(o);
  927. };
  928. return _getPrototypeOf(o);
  929. }
  930.  
  931. module.exports = _getPrototypeOf;
  932. });
  933.  
  934. function _superPropBase(object, property) {
  935. while (!Object.prototype.hasOwnProperty.call(object, property)) {
  936. object = getPrototypeOf(object);
  937. if (object === null) break;
  938. }
  939.  
  940. return object;
  941. }
  942.  
  943. var superPropBase = _superPropBase;
  944.  
  945. var get = createCommonjsModule(function (module) {
  946. function _get(target, property, receiver) {
  947. if (typeof Reflect !== "undefined" && Reflect.get) {
  948. module.exports = _get = Reflect.get;
  949. } else {
  950. module.exports = _get = function _get(target, property, receiver) {
  951. var base = superPropBase(target, property);
  952. if (!base) return;
  953. var desc = Object.getOwnPropertyDescriptor(base, property);
  954.  
  955. if (desc.get) {
  956. return desc.get.call(receiver);
  957. }
  958.  
  959. return desc.value;
  960. };
  961. }
  962.  
  963. return _get(target, property, receiver || target);
  964. }
  965.  
  966. module.exports = _get;
  967. });
  968.  
  969. function _defineProperties(target, props) {
  970. for (var i = 0; i < props.length; i++) {
  971. var descriptor = props[i];
  972. descriptor.enumerable = descriptor.enumerable || false;
  973. descriptor.configurable = true;
  974. if ("value" in descriptor) descriptor.writable = true;
  975. Object.defineProperty(target, descriptor.key, descriptor);
  976. }
  977. }
  978.  
  979. function _createClass(Constructor, protoProps, staticProps) {
  980. if (protoProps) _defineProperties(Constructor.prototype, protoProps);
  981. if (staticProps) _defineProperties(Constructor, staticProps);
  982. return Constructor;
  983. }
  984.  
  985. var createClass = _createClass;
  986.  
  987. var setPrototypeOf = createCommonjsModule(function (module) {
  988. function _setPrototypeOf(o, p) {
  989. module.exports = _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {
  990. o.__proto__ = p;
  991. return o;
  992. };
  993.  
  994. return _setPrototypeOf(o, p);
  995. }
  996.  
  997. module.exports = _setPrototypeOf;
  998. });
  999.  
  1000. function _inherits(subClass, superClass) {
  1001. if (typeof superClass !== "function" && superClass !== null) {
  1002. throw new TypeError("Super expression must either be null or a function");
  1003. }
  1004.  
  1005. subClass.prototype = Object.create(superClass && superClass.prototype, {
  1006. constructor: {
  1007. value: subClass,
  1008. writable: true,
  1009. configurable: true
  1010. }
  1011. });
  1012. if (superClass) setPrototypeOf(subClass, superClass);
  1013. }
  1014.  
  1015. var inherits = _inherits;
  1016.  
  1017. var _typeof_1 = createCommonjsModule(function (module) {
  1018. function _typeof(obj) {
  1019. "@babel/helpers - typeof";
  1020.  
  1021. if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") {
  1022. module.exports = _typeof = function _typeof(obj) {
  1023. return typeof obj;
  1024. };
  1025. } else {
  1026. module.exports = _typeof = function _typeof(obj) {
  1027. return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj;
  1028. };
  1029. }
  1030.  
  1031. return _typeof(obj);
  1032. }
  1033.  
  1034. module.exports = _typeof;
  1035. });
  1036.  
  1037. function _assertThisInitialized(self) {
  1038. if (self === void 0) {
  1039. throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
  1040. }
  1041.  
  1042. return self;
  1043. }
  1044.  
  1045. var assertThisInitialized = _assertThisInitialized;
  1046.  
  1047. function _possibleConstructorReturn(self, call) {
  1048. if (call && (_typeof_1(call) === "object" || typeof call === "function")) {
  1049. return call;
  1050. }
  1051.  
  1052. return assertThisInitialized(self);
  1053. }
  1054.  
  1055. var possibleConstructorReturn = _possibleConstructorReturn;
  1056.  
  1057. var css_248z$1 = ".jx-dialog-body {\n text-align:center;\n padding:22px;\n}\n";
  1058. styleInject(css_248z$1);
  1059.  
  1060. var id = 0;
  1061. function nextId() {
  1062. // eslint-disable-next-line no-plusplus
  1063. return id++;
  1064. }
  1065.  
  1066. function firstFunction() {
  1067. for (var _len = arguments.length, fns = new Array(_len), _key = 0; _key < _len; _key++) {
  1068. fns[_key] = arguments[_key];
  1069. }
  1070.  
  1071. return fns.find(function (fn) {
  1072. return typeof fn === 'function';
  1073. });
  1074. }
  1075.  
  1076. var getJQuery = lazyCache(function () {
  1077. return load('base:widget/libs/jquerypacket.js');
  1078. });
  1079. function $$1() {
  1080. return getJQuery().apply(window, arguments);
  1081. }
  1082.  
  1083. function proxyJQuery(key) {
  1084. Object.defineProperty($$1, key, {
  1085. get: function get() {
  1086. return getJQuery()[key];
  1087. }
  1088. });
  1089. }
  1090.  
  1091. proxyJQuery('fn');
  1092. proxyJQuery('ajax');
  1093. proxyJQuery('isPlainObject');
  1094.  
  1095. function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }
  1096.  
  1097. function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
  1098. var getDialog = lazyCache(function () {
  1099. return load('system-core:system/uiService/dialog/dialog.js');
  1100. });
  1101. var bigButton = {
  1102. type: 'big',
  1103. padding: ['50px', '50px']
  1104. };
  1105. function confirmDialog(data) {
  1106. var dialog;
  1107.  
  1108. var hideDialog = function hideDialog() {
  1109. return dialog.hide();
  1110. };
  1111.  
  1112. var dialogData = {
  1113. id: "confirm-".concat(nextId()),
  1114. show: true,
  1115. title: data.title,
  1116. body: $$1('<div class="jx-dialog-body">').append(data.body),
  1117. buttons: [_objectSpread({}, bigButton, {
  1118. name: 'confirm',
  1119. title: data.sureText || '确定',
  1120. color: 'blue',
  1121. click: firstFunction(data.onSure, hideDialog)
  1122. })]
  1123. };
  1124.  
  1125. if (data.cancel !== false) {
  1126. dialogData.buttons.push(_objectSpread({}, bigButton, {
  1127. name: 'cancel',
  1128. title: data.cancelText || '取消',
  1129. click: firstFunction(data.onCancel, hideDialog)
  1130. }));
  1131. }
  1132.  
  1133. var Dialog = getDialog();
  1134. dialog = new Dialog(dialogData);
  1135. return dialog;
  1136. }
  1137. function infoDialog(data) {
  1138. return confirmDialog(_objectSpread({}, data, {
  1139. cancel: false
  1140. }));
  1141. }
  1142.  
  1143. var getTip = lazyCache(function () {
  1144. return load('system-core:system/uiService/tip/tip.js');
  1145. });
  1146. function showTip() {
  1147. return getTip().show.apply(this, arguments);
  1148. }
  1149. function hideTip() {
  1150. return getTip().hide.apply(this, arguments);
  1151. }
  1152.  
  1153. var getContext = lazyCache(function () {
  1154. return load('system-core:context/context.js').instanceForSystem;
  1155. });
  1156.  
  1157. function getErrorMessage(code) {
  1158. var msg = String(getContext().errorMsg(code));
  1159. return msg.replace(/\s+rapidupload 错误码$/, '');
  1160. }
  1161. function injectErrorMessage(obj) {
  1162. if ($$1.isPlainObject(obj)) {
  1163. obj.error = obj.show_msg || getErrorMessage(obj.errno || 0);
  1164. }
  1165.  
  1166. return obj;
  1167. }
  1168.  
  1169. function ajax(_x) {
  1170. return _ajax.apply(this, arguments);
  1171. }
  1172.  
  1173. function _ajax() {
  1174. _ajax = asyncToGenerator( /*#__PURE__*/regenerator.mark(function _callee(data) {
  1175. return regenerator.wrap(function _callee$(_context) {
  1176. while (1) {
  1177. switch (_context.prev = _context.next) {
  1178. case 0:
  1179. return _context.abrupt("return", new Promise(function (resolve) {
  1180. $$1.ajax(data).fail(function (err) {
  1181. resolve({
  1182. errno: -1,
  1183. error: '网络错误。'
  1184. });
  1185. console.error('%s 网络请求错误: %o', TAG, err);
  1186. }).success(function (result) {
  1187. resolve(injectErrorMessage(result));
  1188. });
  1189. }));
  1190.  
  1191. case 1:
  1192. case "end":
  1193. return _context.stop();
  1194. }
  1195. }
  1196. }, _callee);
  1197. }));
  1198. return _ajax.apply(this, arguments);
  1199. }
  1200.  
  1201. var div = document.createElement('a');
  1202. var escapeDict = {
  1203. '"': 'quot',
  1204. "'": 'apos'
  1205. };
  1206.  
  1207. function escapeHtml(text) {
  1208. div.textContent = text;
  1209. var result = div.innerHTML.replace(/["']/g, function (x) {
  1210. return "&".concat(escapeDict[x], ";");
  1211. });
  1212. div.textContent = '';
  1213. return result;
  1214. }
  1215.  
  1216. var template = "<div>\n <p><label>请输入分享密码: <input id=\"jx_shareKey\" class=\"jx-input\" style=\"width: 6em\"/></label></p>\n <p class=\"jx_errmsg jx_c_warn jx_hide\">无效的分享密码, 脚本将随机生成一个分享代码 &hellip;</p>\n</div>\n\n<div class=\"jx_hide\">\n <p><label>分享地址: <input id=\"jx_shortUrl\" class=\"jx-input\" style=\"width: 20em\" readonly/></label></p>\n <p><label>分享密码: <input id=\"jx_shareCode\" class=\"jx-input\" style=\"width: 5em; text-align: center\" readonly/></label></p>\n\n <p style=\"text-align: left\">\n <label for=\"jx_dlboxCode\">投稿代码:</label><br/>\n <textarea readonly id=\"jx_dlboxCode\" class=\"jx jx-input\"></textarea>\n </p>\n</div>\n";
  1217.  
  1218. var PREFIX = '__jx_';
  1219.  
  1220. var LocalStore = /*#__PURE__*/function () {
  1221. function LocalStore(id) {
  1222. classCallCheck(this, LocalStore);
  1223.  
  1224. this.id = id;
  1225. }
  1226.  
  1227. createClass(LocalStore, [{
  1228. key: "value",
  1229. get: function get() {
  1230. return localStorage.getItem(this.id);
  1231. },
  1232. set: function set(value) {
  1233. return localStorage.setItem(this.id, value);
  1234. }
  1235. }], [{
  1236. key: "create",
  1237. value: function create(instance, key) {
  1238. return new LocalStore("".concat(PREFIX, "_").concat(instance.constructor.name, "_").concat(key));
  1239. }
  1240. }]);
  1241.  
  1242. return LocalStore;
  1243. }();
  1244.  
  1245. var OpDialog = /*#__PURE__*/function () {
  1246. createClass(OpDialog, [{
  1247. key: "createStore",
  1248. value: function createStore(key) {
  1249. return LocalStore.create(this, key);
  1250. }
  1251. }]);
  1252.  
  1253. function OpDialog(template) {
  1254. var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
  1255.  
  1256. classCallCheck(this, OpDialog);
  1257.  
  1258. defineProperty(this, "confirmText", '确定');
  1259.  
  1260. this.root = $$1(template);
  1261. this.title = options.title || '';
  1262.  
  1263. if (options.confirmText) {
  1264. this.confirmText = options.confirmText;
  1265. }
  1266.  
  1267. this.bindContext();
  1268. this.createDialog();
  1269. this.bootstrap();
  1270. }
  1271.  
  1272. createClass(OpDialog, [{
  1273. key: "bindContext",
  1274. value: function bindContext() {
  1275. this.show = this.show.bind(this);
  1276. this.hide = this.hide.bind(this);
  1277. this.onConfirm = this.onConfirm.bind(this);
  1278. this.onCancel = this.onCancel.bind(this);
  1279. }
  1280. }, {
  1281. key: "createDialog",
  1282. value: function createDialog() {
  1283. this.dialog = confirmDialog({
  1284. title: this.title,
  1285. body: this.root,
  1286. sureText: this.confirmText,
  1287. onSure: this.onConfirm,
  1288. onCancel: this.onCancel
  1289. });
  1290. }
  1291. /**
  1292. * 选择对话框内的内容。
  1293. * @param selector
  1294. * @returns {JQuery<HTMLElement>}
  1295. */
  1296.  
  1297. }, {
  1298. key: "$",
  1299. value: function $(selector) {
  1300. return $$1(selector, this.root);
  1301. }
  1302. /**
  1303. * Bind events.
  1304. */
  1305.  
  1306. }, {
  1307. key: "bootstrap",
  1308. value: function bootstrap() {
  1309. return this;
  1310. }
  1311. }, {
  1312. key: "show",
  1313. value: function show() {
  1314. this.dialog.show();
  1315. }
  1316. }, {
  1317. key: "hide",
  1318. value: function hide() {
  1319. this.dialog.hide();
  1320. }
  1321. }, {
  1322. key: "onConfirm",
  1323. value: function () {
  1324. var _onConfirm = asyncToGenerator( /*#__PURE__*/regenerator.mark(function _callee() {
  1325. return regenerator.wrap(function _callee$(_context) {
  1326. while (1) {
  1327. switch (_context.prev = _context.next) {
  1328. case 0:
  1329. this.hide();
  1330.  
  1331. case 1:
  1332. case "end":
  1333. return _context.stop();
  1334. }
  1335. }
  1336. }, _callee, this);
  1337. }));
  1338.  
  1339. function onConfirm() {
  1340. return _onConfirm.apply(this, arguments);
  1341. }
  1342.  
  1343. return onConfirm;
  1344. }()
  1345. }, {
  1346. key: "onCancel",
  1347. value: function onCancel() {
  1348. this.hide();
  1349. }
  1350. }]);
  1351.  
  1352. return OpDialog;
  1353. }();
  1354.  
  1355. function ownKeys$1(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }
  1356.  
  1357. function _objectSpread$1(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys$1(Object(source), true).forEach(function (key) { defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys$1(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
  1358.  
  1359. function _createSuper(Derived) { return function () { var Super = getPrototypeOf(Derived), result; if (_isNativeReflectConstruct()) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
  1360.  
  1361. function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
  1362. /* 依赖函数表 */
  1363.  
  1364. function isCodeValid(code) {
  1365. // 百度现在改了规则;
  1366. // 只允许:由数字字母组成的提取码,并且不能全部都是同一个字符。
  1367. return /^[\da-z]{4}$/i.test(code) && new Set(code).size > 1;
  1368. }
  1369.  
  1370. function fixCode(code) {
  1371. return code.replace(/"/g, '&#x22;').replace(/]/g, '&#x5D;');
  1372. }
  1373.  
  1374. function fixWidthDigits(d) {
  1375. return "0".concat(d.toString()).slice(-2);
  1376. }
  1377.  
  1378. function makeDate(d) {
  1379. return "".concat(d.getFullYear(), ".").concat(fixWidthDigits(d.getMonth() + 1), ".").concat(fixWidthDigits(d.getDate()));
  1380. }
  1381.  
  1382. function genKey() {
  1383. var size = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 4;
  1384. // length => 26 + 10, 36
  1385. var keySet = 'abcdefghijklmnopqrstuvwxyz0123456789';
  1386. var r = '';
  1387.  
  1388. for (var i = size; i--;) {
  1389. // eslint-disable-next-line no-bitwise
  1390. r += keySet[0 | Math.random() * 36];
  1391. }
  1392.  
  1393. return r;
  1394. }
  1395.  
  1396. function getFileId(item) {
  1397. return item.fs_id;
  1398. }
  1399.  
  1400. var CustomShareDialog = /*#__PURE__*/function (_OpDialog) {
  1401. inherits(CustomShareDialog, _OpDialog);
  1402.  
  1403. var _super = _createSuper(CustomShareDialog);
  1404.  
  1405. createClass(CustomShareDialog, null, [{
  1406. key: "create",
  1407.  
  1408. /**
  1409. * @param {Object} config
  1410. * @return CustomShareDialog
  1411. */
  1412. value: function create() {
  1413. var config = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
  1414. return new CustomShareDialog(config);
  1415. }
  1416. /**
  1417. * @param {Object} config
  1418. */
  1419.  
  1420. }]);
  1421.  
  1422. function CustomShareDialog() {
  1423. var config = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
  1424.  
  1425. classCallCheck(this, CustomShareDialog);
  1426.  
  1427. return _super.call(this, template, _objectSpread$1({
  1428. title: '自定义分享'
  1429. }, config));
  1430. }
  1431.  
  1432. createClass(CustomShareDialog, [{
  1433. key: "bindContext",
  1434. value: function bindContext() {
  1435. get(getPrototypeOf(CustomShareDialog.prototype), "bindContext", this).call(this);
  1436.  
  1437. this.validateCode = this.validateCode.bind(this);
  1438. this.hideError = this.hideError.bind(this);
  1439. }
  1440. }, {
  1441. key: "bootstrap",
  1442. value: function bootstrap() {
  1443. this.codeStore = LocalStore.create(this, 'code');
  1444. this.$error = this.$('.jx_errmsg');
  1445. this.$footer = this.dialog.find(getDialog().QUERY.dialogFooter);
  1446. this.$key = this.$('#jx_shareKey').val(this.codeStore.value || genKey());
  1447. this.$key.on('input change blur', this.validateCode);
  1448. this.$key.on('focus', this.hideError);
  1449. }
  1450. }, {
  1451. key: "onConfirm",
  1452. value: function () {
  1453. var _onConfirm = asyncToGenerator( /*#__PURE__*/regenerator.mark(function _callee() {
  1454. var key, sharedItems, resp, url, title, code;
  1455. return regenerator.wrap(function _callee$(_context) {
  1456. while (1) {
  1457. switch (_context.prev = _context.next) {
  1458. case 0:
  1459. this.hide();
  1460. key = this.$key.val();
  1461.  
  1462. if (!isCodeValid(key)) {
  1463. key = genKey(4);
  1464. this.value = key;
  1465. }
  1466.  
  1467. this.codeStore.value = key;
  1468. showTip({
  1469. mode: 'loading',
  1470. msg: '正在分享,请稍后 ...',
  1471. autoClose: false
  1472. });
  1473. sharedItems = getCheckedItems();
  1474. _context.next = 8;
  1475. return ajax({
  1476. url: '/share/set',
  1477. type: 'POST',
  1478. data: {
  1479. fid_list: JSON.stringify(sharedItems.map(getFileId)),
  1480. schannel: 4,
  1481. channel_list: '[]',
  1482. pwd: key,
  1483. // 0: 永久
  1484. // 1、7: 天数
  1485. period: 0
  1486. },
  1487. dataType: 'json'
  1488. });
  1489.  
  1490. case 8:
  1491. resp = _context.sent;
  1492. hideTip();
  1493.  
  1494. if (!(resp.errno || !resp.shorturl)) {
  1495. _context.next = 13;
  1496. break;
  1497. }
  1498.  
  1499. showTip({
  1500. mode: 'failure',
  1501. msg: "\u5206\u4EAB\u5931\u8D25\uFF1A".concat(resp.error)
  1502. });
  1503. return _context.abrupt("return");
  1504.  
  1505. case 13:
  1506. showTip({
  1507. mode: 'success',
  1508. msg: '分享成功!'
  1509. });
  1510. this.$footer.children('.g-button-blue-large').hide();
  1511. this.$footer.children('.g-button-large').find('.text').text('关闭');
  1512. url = "".concat(resp.shorturl, "#").concat(key);
  1513. this.$('#jx_shortUrl').val(url);
  1514. this.$('#jx_shareCode').val(key);
  1515. this.root.toggleClass('jx_hide');
  1516. title = fixCode(sharedItems[0].server_filename) + (sharedItems.length === 1 ? '' : ' 等文件');
  1517. code = "[dlbox title=\"".concat(escapeHtml(title), "\" from=\"\u6D69\u701A\u7684\u5B87\u5B99\" time=\"").concat(makeDate(new Date()), "\" ") + "info=\"\u63D0\u53D6\uFF1A".concat(escapeHtml(key), "\" link1=\"\u5EA6\u5A18|").concat(url, "\"][/dlbox]");
  1518. this.$('#jx_dlboxCode').val(code);
  1519. this.show();
  1520.  
  1521. case 24:
  1522. case "end":
  1523. return _context.stop();
  1524. }
  1525. }
  1526. }, _callee, this);
  1527. }));
  1528.  
  1529. function onConfirm() {
  1530. return _onConfirm.apply(this, arguments);
  1531. }
  1532.  
  1533. return onConfirm;
  1534. }()
  1535. /**
  1536. * @returns string
  1537. */
  1538.  
  1539. }, {
  1540. key: "hideError",
  1541. value: function hideError() {
  1542. this.$error.addClass('jx_hide');
  1543. }
  1544. }, {
  1545. key: "validateCode",
  1546. value: function validateCode() {
  1547. this.$error.toggleClass('jx_hide', this.isValueValid);
  1548. }
  1549. }, {
  1550. key: "value",
  1551. get: function get() {
  1552. return this.$key.val();
  1553. },
  1554. set: function set(value) {
  1555. return this.$key.val(value);
  1556. }
  1557. }, {
  1558. key: "isValueValid",
  1559. get: function get() {
  1560. return isCodeValid(this.value);
  1561. }
  1562. }]);
  1563.  
  1564. return CustomShareDialog;
  1565. }(OpDialog);
  1566.  
  1567. var template$1 = "<p>\n <label for=\"jx_nameRule\">请输入新的命名规则 (自动储存)</label>:\n <input id=\"jx_nameRule\" class=\"jx-input\" style=\"width:20em\" />\n</p>\n\n<p style=\"line-height: 1; padding-top: 1em;\">\n <code>:n</code> 表示不带扩展名的文件名; <code>:e</code> 表示扩展名; <code>:E</code> 表示 .扩展名;\n <br><code>:d</code> 表示一位随机数字; <code>:c</code> 表示一位随机字符; <code>:t</code> 表示当前时间戳\n</p>\n";
  1568.  
  1569. var getMessage = lazyCache(function () {
  1570. return load('system-core:system/baseService/message/message.js');
  1571. });
  1572. function trigger(event) {
  1573. getMessage().trigger(event);
  1574. }
  1575. /**
  1576. * 刷新当前文件列表
  1577. */
  1578.  
  1579. function refreshFileListView() {
  1580. trigger('system-refresh');
  1581. }
  1582.  
  1583. function ownKeys$2(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }
  1584.  
  1585. function _objectSpread$2(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys$2(Object(source), true).forEach(function (key) { defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys$2(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
  1586.  
  1587. function _createSuper$1(Derived) { return function () { var Super = getPrototypeOf(Derived), result; if (_isNativeReflectConstruct$1()) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
  1588.  
  1589. function _isNativeReflectConstruct$1() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
  1590. var fixRules = {
  1591. n: function n(name) {
  1592. var match = name.match(/^(.+)\./);
  1593. return match ? match[1] : match;
  1594. },
  1595. c: function c() {
  1596. return String.fromCharCode(97 + Math.random() * 26);
  1597. },
  1598. d: function d() {
  1599. return Math.random().toString().slice(3, 4);
  1600. },
  1601. t: function t() {
  1602. return Date.now();
  1603. },
  1604. e: function e(name) {
  1605. var ext = name.match(/\.([^.]+)$/);
  1606. return ext ? ext[1] : '';
  1607. },
  1608. E: function E(name) {
  1609. return name.match(/\.[^.]+$/) || '';
  1610. }
  1611. };
  1612. /* 依赖函数表 */
  1613.  
  1614. function fixName(name, code) {
  1615. var fn = fixRules[code];
  1616.  
  1617. if (fn) {
  1618. return fn(name);
  1619. }
  1620.  
  1621. return null;
  1622. }
  1623.  
  1624. var BatchRenameDialog = /*#__PURE__*/function (_OpDialog) {
  1625. inherits(BatchRenameDialog, _OpDialog);
  1626.  
  1627. var _super = _createSuper$1(BatchRenameDialog);
  1628.  
  1629. createClass(BatchRenameDialog, null, [{
  1630. key: "create",
  1631.  
  1632. /**
  1633. * @param {Object} config
  1634. * @return StandardCodeDialog
  1635. */
  1636. value: function create() {
  1637. var config = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
  1638. return new BatchRenameDialog(config);
  1639. }
  1640. /**
  1641. * @param {Object} config
  1642. */
  1643.  
  1644. }]);
  1645.  
  1646. function BatchRenameDialog() {
  1647. var config = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
  1648.  
  1649. classCallCheck(this, BatchRenameDialog);
  1650.  
  1651. return _super.call(this, template$1, _objectSpread$2({
  1652. title: '批量重命名'
  1653. }, config));
  1654. }
  1655.  
  1656. createClass(BatchRenameDialog, [{
  1657. key: "bindContext",
  1658. value: function bindContext() {
  1659. get(getPrototypeOf(BatchRenameDialog.prototype), "bindContext", this).call(this);
  1660.  
  1661. this.namePatternStore = this.createStore('pattern');
  1662. }
  1663. }, {
  1664. key: "bootstrap",
  1665. value: function bootstrap() {
  1666. this.$namePattern = this.$('#jx_nameRule');
  1667. this.$namePattern.val(this.namePatternStore.value || '[GalACG] :d:d:d:d:d:d:d:d:d:d:E');
  1668. }
  1669. }, {
  1670. key: "onConfirm",
  1671. value: function () {
  1672. var _onConfirm = asyncToGenerator( /*#__PURE__*/regenerator.mark(function _callee() {
  1673. var namePattern, fileList, resp;
  1674. return regenerator.wrap(function _callee$(_context) {
  1675. while (1) {
  1676. switch (_context.prev = _context.next) {
  1677. case 0:
  1678. this.hide();
  1679. namePattern = this.$namePattern.val();
  1680. this.namePatternStore.value = namePattern;
  1681. fileList = getCheckedItems().map(function (item) {
  1682. return {
  1683. path: item.path,
  1684. newname: namePattern.replace(/:([cdeEnt])/g, function (_, code) {
  1685. return fixName(item.server_filename, code);
  1686. })
  1687. };
  1688. });
  1689. showTip({
  1690. mode: 'loading',
  1691. msg: '正在批量重命名,请稍后 ...',
  1692. autoClose: false
  1693. });
  1694. _context.next = 7;
  1695. return ajax({
  1696. url: '/api/filemanager?opera=rename',
  1697. type: 'POST',
  1698. data: {
  1699. filelist: JSON.stringify(fileList)
  1700. }
  1701. });
  1702.  
  1703. case 7:
  1704. resp = _context.sent;
  1705. hideTip();
  1706. refreshFileListView();
  1707.  
  1708. if (resp.errno) {
  1709. showTip({
  1710. mode: 'failure',
  1711. msg: "\u6279\u91CF\u91CD\u547D\u540D\u5931\u8D25, \u8BF7\u7A0D\u540E\u91CD\u8BD5! (".concat(resp.error, ")")
  1712. });
  1713. } else {
  1714. showTip({
  1715. mode: 'success',
  1716. msg: '重命名成功!'
  1717. });
  1718. }
  1719.  
  1720. case 11:
  1721. case "end":
  1722. return _context.stop();
  1723. }
  1724. }
  1725. }, _callee, this);
  1726. }));
  1727.  
  1728. function onConfirm() {
  1729. return _onConfirm.apply(this, arguments);
  1730. }
  1731.  
  1732. return onConfirm;
  1733. }()
  1734. }]);
  1735.  
  1736. return BatchRenameDialog;
  1737. }(OpDialog);
  1738.  
  1739. function menuInsertAfter(list, name, item, noPush) {
  1740. for (var i = 0; i < list.length; i++) {
  1741. if (list[i] instanceof Array) {
  1742. if (menuInsertAfter(list[i], name, item, true)) {
  1743. return false;
  1744. }
  1745. } else if (list[i].title === name) {
  1746. i++;
  1747. list.splice(i, 0, item);
  1748. return true;
  1749. }
  1750. }
  1751.  
  1752. if (!noPush) list.push(item);
  1753. return false;
  1754. }
  1755.  
  1756. function injectMenu() {
  1757. var faceData = load('system-core:data/faceData.js');
  1758. var fileCtxMenu = faceData.getData().contextMenu.file;
  1759. menuInsertAfter(fileCtxMenu, '分享', {
  1760. index: 8,
  1761. keyboard: 'u',
  1762. title: '自定义分享',
  1763. display: anythingChecked,
  1764. action: CustomShareDialog.create
  1765. });
  1766. fileCtxMenu.forEach(function (m) {
  1767. if (m.index >= 2) {
  1768. m.index += 1;
  1769. }
  1770. });
  1771. fileCtxMenu.push({
  1772. index: 2,
  1773. // '删除' 的 index。
  1774. keyboard: 'r',
  1775. position: 'bottom',
  1776. title: '批量重命名',
  1777. display: anythingChecked,
  1778. action: BatchRenameDialog.create
  1779. });
  1780. }
  1781.  
  1782. var template$2 = "<form>\n <p>\n <label>\n <textarea class=\"jx jx_code jx-input\" rows=\"7\" autocorrect=\"off\" autocapitalize=\"off\" spellcheck=\"false\"></textarea>\n </label>\n </p>\n\n <!-- 选择覆盖的時候好像并不会生效? -->\n <section class=\"jx-form-options jx_hide\">\n 文件重复时:\n <label><input name=\"ondup\" type=\"radio\" value=\"newcopy\" checked /> 建立副本</label>\n <label><input name=\"ondup\" type=\"radio\" value=\"overwrite\" disabled /> 覆盖</label>\n </section>\n\n <p style=\"text-align:left\">\n <em>文件列表</em> (版本: <span class=\"jx_version\" style=\"color:black\">--</span>):\n </p>\n <ul class=\"jx_list\"></ul>\n <p class=\"jx_c_warn jx_hide jx_errmsg\">识别不出任何有效的秒传链接。</p>\n</form>\n";
  1783.  
  1784. function debounce(fn) {
  1785. var timer;
  1786. return function () {
  1787. cancelAnimationFrame(timer);
  1788. timer = requestAnimationFrame(fn);
  1789. };
  1790. }
  1791.  
  1792. function _arrayWithHoles(arr) {
  1793. if (Array.isArray(arr)) return arr;
  1794. }
  1795.  
  1796. var arrayWithHoles = _arrayWithHoles;
  1797.  
  1798. function _iterableToArrayLimit(arr, i) {
  1799. if (typeof Symbol === "undefined" || !(Symbol.iterator in Object(arr))) return;
  1800. var _arr = [];
  1801. var _n = true;
  1802. var _d = false;
  1803. var _e = undefined;
  1804.  
  1805. try {
  1806. for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) {
  1807. _arr.push(_s.value);
  1808.  
  1809. if (i && _arr.length === i) break;
  1810. }
  1811. } catch (err) {
  1812. _d = true;
  1813. _e = err;
  1814. } finally {
  1815. try {
  1816. if (!_n && _i["return"] != null) _i["return"]();
  1817. } finally {
  1818. if (_d) throw _e;
  1819. }
  1820. }
  1821.  
  1822. return _arr;
  1823. }
  1824.  
  1825. var iterableToArrayLimit = _iterableToArrayLimit;
  1826.  
  1827. function _arrayLikeToArray(arr, len) {
  1828. if (len == null || len > arr.length) len = arr.length;
  1829.  
  1830. for (var i = 0, arr2 = new Array(len); i < len; i++) {
  1831. arr2[i] = arr[i];
  1832. }
  1833.  
  1834. return arr2;
  1835. }
  1836.  
  1837. var arrayLikeToArray = _arrayLikeToArray;
  1838.  
  1839. function _unsupportedIterableToArray(o, minLen) {
  1840. if (!o) return;
  1841. if (typeof o === "string") return arrayLikeToArray(o, minLen);
  1842. var n = Object.prototype.toString.call(o).slice(8, -1);
  1843. if (n === "Object" && o.constructor) n = o.constructor.name;
  1844. if (n === "Map" || n === "Set") return Array.from(n);
  1845. if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return arrayLikeToArray(o, minLen);
  1846. }
  1847.  
  1848. var unsupportedIterableToArray = _unsupportedIterableToArray;
  1849.  
  1850. function _nonIterableRest() {
  1851. throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
  1852. }
  1853.  
  1854. var nonIterableRest = _nonIterableRest;
  1855.  
  1856. function _slicedToArray(arr, i) {
  1857. return arrayWithHoles(arr) || iterableToArrayLimit(arr, i) || unsupportedIterableToArray(arr, i) || nonIterableRest();
  1858. }
  1859.  
  1860. var slicedToArray = _slicedToArray;
  1861.  
  1862. /**
  1863. * 将数值转换为 2 位数的十六进制文本。
  1864. * @param {Number} value
  1865. * @returns {string}
  1866. */
  1867. function toStdHex(value) {
  1868. var hex = Math.floor(value).toString(16);
  1869. return "0".concat(hex).slice(-2);
  1870. }
  1871.  
  1872. var slice = Function.prototype.call.bind(Array.prototype.slice);
  1873. /**
  1874. * 一个简单的类似于 NodeJS Buffer 的实现.
  1875. * 用于解析游侠度娘提取码。
  1876. */
  1877.  
  1878. var SimpleBuffer = /*#__PURE__*/function () {
  1879. /**
  1880. * @param {String} str
  1881. */
  1882. function SimpleBuffer(str) {
  1883. classCallCheck(this, SimpleBuffer);
  1884.  
  1885. this.fromString(str);
  1886. }
  1887.  
  1888. createClass(SimpleBuffer, [{
  1889. key: "fromString",
  1890. value: function fromString(str) {
  1891. var len = str.length;
  1892. this.buf = new Uint8Array(len);
  1893.  
  1894. for (var i = 0; i < len; i++) {
  1895. this.buf[i] = str.charCodeAt(i);
  1896. }
  1897. }
  1898. }, {
  1899. key: "readUnicode",
  1900. value: function readUnicode(index, size) {
  1901. var bufText = slice(this.buf, index, index + size).map(toStdHex);
  1902. var buf = [''];
  1903.  
  1904. for (var i = 0; i < size; i += 2) {
  1905. buf.push(bufText[i + 1] + bufText[i]);
  1906. }
  1907.  
  1908. return JSON.parse("\"".concat(buf.join("\\u"), "\""));
  1909. }
  1910. }, {
  1911. key: "readNumber",
  1912. value: function readNumber(index, size) {
  1913. var ret = 0;
  1914.  
  1915. for (var i = index + size; i > index;) {
  1916. ret = this.buf[--i] + ret * 256;
  1917. }
  1918.  
  1919. return ret;
  1920. }
  1921. }, {
  1922. key: "readUInt",
  1923. value: function readUInt(index) {
  1924. return this.readNumber(index, 4);
  1925. }
  1926. }, {
  1927. key: "readULong",
  1928. value: function readULong(index) {
  1929. return this.readNumber(index, 8);
  1930. }
  1931. }, {
  1932. key: "readHex",
  1933. value: function readHex(index, size) {
  1934. return Array.prototype.slice.call(this.buf, index, index + size).map(toStdHex).join('');
  1935. }
  1936. }]);
  1937.  
  1938. return SimpleBuffer;
  1939. }();
  1940.  
  1941. /**
  1942. * UTF-8 字符转换成 base64 后在 JS 里解析会出毛病。
  1943. * @param str
  1944. * @returns {string}
  1945. */
  1946.  
  1947. function decodeBase64(str) {
  1948. try {
  1949. str = atob(str);
  1950. } catch (e) {
  1951. console.error('%s: base64 decode failed: %s', TAG, str);
  1952. console.trace(e);
  1953. return '';
  1954. }
  1955.  
  1956. return decodeURIComponent(str.replace(/[^\x00-\x7F]/g, function (z) {
  1957. return "%".concat(toStdHex(z.charCodeAt(0)));
  1958. }));
  1959. }
  1960.  
  1961. function _createForOfIteratorHelper(o) { if (typeof Symbol === "undefined" || o[Symbol.iterator] == null) { if (Array.isArray(o) || (o = _unsupportedIterableToArray$1(o))) { var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e) { throw _e; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var it, normalCompletion = true, didErr = false, err; return { s: function s() { it = o[Symbol.iterator](); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e2) { didErr = true; err = _e2; }, f: function f() { try { if (!normalCompletion && it["return"] != null) it["return"](); } finally { if (didErr) throw err; } } }; }
  1962.  
  1963. function _unsupportedIterableToArray$1(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray$1(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(n); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray$1(o, minLen); }
  1964.  
  1965. function _arrayLikeToArray$1(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }
  1966.  
  1967. var trim = function trim(str) {
  1968. return String.prototype.trim.call(str);
  1969. };
  1970. /**
  1971. * 百度网盘用的(非官方)标准提取码。
  1972. * 支持解析:
  1973. * 1. 游侠的 `BDLINK` 提取码
  1974. * 2. 我的“标准提取码”
  1975. * 3. PanDownload 的 `bdpan://` 协议。
  1976. */
  1977.  
  1978.  
  1979. var DuParser = /*#__PURE__*/function () {
  1980. function DuParser() {
  1981. classCallCheck(this, DuParser);
  1982.  
  1983. this.reset();
  1984. }
  1985.  
  1986. createClass(DuParser, [{
  1987. key: "reset",
  1988. value: function reset() {
  1989. this.results = [];
  1990. this.versions = new Set();
  1991. }
  1992. /**
  1993. * 判断地址类型并解析。
  1994. * @param url
  1995. */
  1996.  
  1997. }, {
  1998. key: "parse",
  1999. value: function parse(url) {
  2000. // 游侠的格式是多行,不好判断结束位置。
  2001. // 所以一次只能解析一条数据。
  2002. if (url.indexOf('BDLINK') === 0) {
  2003. this.parseAli(url);
  2004. return;
  2005. } // 其他两个格式一行一个文件信息。
  2006.  
  2007.  
  2008. var links = url.split('\n').map(trim);
  2009.  
  2010. var _iterator = _createForOfIteratorHelper(links),
  2011. _step;
  2012.  
  2013. try {
  2014. for (_iterator.s(); !(_step = _iterator.n()).done;) {
  2015. var link = _step.value;
  2016.  
  2017. if (link.startsWith('bdpan://')) {
  2018. this.parsePanDownload(link);
  2019. } else {
  2020. this.parseStandard(link);
  2021. }
  2022. }
  2023. } catch (err) {
  2024. _iterator.e(err);
  2025. } finally {
  2026. _iterator.f();
  2027. }
  2028. }
  2029. }, {
  2030. key: "hasResults",
  2031. value: function hasResults() {
  2032. return this.results.length;
  2033. }
  2034. }, {
  2035. key: "parseAli",
  2036. value: function parseAli(url) {
  2037. var raw = atob(url.slice(6).replace(/\s/g, ''));
  2038. if (raw.slice(0, 5) !== 'BDFS\x00') return null;
  2039. var buf = new SimpleBuffer(raw);
  2040. var ptr = 9;
  2041. var fileCount = buf.readUInt(5);
  2042.  
  2043. if (fileCount === 0) {
  2044. return null;
  2045. }
  2046.  
  2047. this.versions.add('游侠 v1');
  2048.  
  2049. for (var i = 0; i < fileCount; i++) {
  2050. // 大小 (8 bytes)
  2051. // MD5 + MD5S (0x20)
  2052. // nameSize (4 bytes)
  2053. // Name (unicode)
  2054. var fileInfo = Object.create(null);
  2055. fileInfo.size = buf.readULong(ptr);
  2056. fileInfo.md5 = buf.readHex(ptr + 8, 0x10);
  2057. fileInfo.md5s = buf.readHex(ptr + 0x18, 0x10);
  2058. var sizeofName = buf.readUInt(ptr + 0x28) * 2;
  2059. ptr += 0x2C;
  2060. fileInfo.name = buf.readUnicode(ptr, sizeofName);
  2061. this.results.push(fileInfo);
  2062. ptr += sizeofName;
  2063. }
  2064.  
  2065. return true;
  2066. }
  2067. }, {
  2068. key: "parseStandard",
  2069. value: function parseStandard(szUrl) {
  2070. var match = szUrl.trim().match(/^([\dA-F]{32})#([\dA-F]{32})#([\d]{1,20})#([\s\S]+)$/i);
  2071.  
  2072. if (match) {
  2073. var _match = slicedToArray(match, 5),
  2074. md5 = _match[1],
  2075. md5s = _match[2],
  2076. size = _match[3],
  2077. name = _match[4];
  2078.  
  2079. this.versions.add('梦姬标准');
  2080. this.results.push({
  2081. md5: md5,
  2082. md5s: md5s,
  2083. size: size,
  2084. name: name
  2085. });
  2086. }
  2087.  
  2088. return null;
  2089. }
  2090. }, {
  2091. key: "parsePanDownload",
  2092. value: function parsePanDownload(szUrl) {
  2093. var match = decodeBase64(szUrl.slice(8)).match(/^([\s\S]+)\|([\d]{1,20})\|([\dA-F]{32})\|([\dA-F]{32})$/i);
  2094.  
  2095. if (match) {
  2096. var _match2 = slicedToArray(match, 5),
  2097. name = _match2[1],
  2098. size = _match2[2],
  2099. md5 = _match2[3],
  2100. md5s = _match2[4];
  2101.  
  2102. this.versions.add('PanDownload');
  2103. this.results.push({
  2104. md5: md5,
  2105. md5s: md5s,
  2106. size: size,
  2107. name: name
  2108. });
  2109. }
  2110.  
  2111. return null;
  2112. }
  2113. }]);
  2114.  
  2115. return DuParser;
  2116. }();
  2117.  
  2118. /**
  2119. * 将文本形式的文件大小转换为
  2120. * @param {string} size
  2121. * @returns {string}
  2122. */
  2123. function parseSize(size) {
  2124. var unit = 'MiB';
  2125. var sizeInUnit = parseInt(size, 10) / 1024 / 1024; // 超过 GB
  2126.  
  2127. if (sizeInUnit > 1024) {
  2128. unit = 'GiB';
  2129. sizeInUnit /= 1024;
  2130. }
  2131.  
  2132. return "".concat(sizeInUnit.toFixed(2), " ").concat(unit);
  2133. }
  2134.  
  2135. function itemInfo(item) {
  2136. var name = escapeHtml(item.name);
  2137. return "\n <span class=\"name\" title=\"".concat(name, "\">").concat(name, "</span>\n <span class=\"size\">(").concat(escapeHtml(parseSize(item.size)), ")</span>\n ");
  2138. }
  2139.  
  2140. function wrapTag(tag) {
  2141. return function (html) {
  2142. return "<".concat(tag, ">").concat(html, "</").concat(tag, ">");
  2143. };
  2144. }
  2145.  
  2146. var lower = Function.prototype.call.bind(String.prototype.toLowerCase);
  2147. var upper = Function.prototype.call.bind(String.prototype.toUpperCase);
  2148. function rapidUploadOnce(_x, _x2, _x3, _x4, _x5, _x6) {
  2149. return _rapidUploadOnce.apply(this, arguments);
  2150. }
  2151.  
  2152. function _rapidUploadOnce() {
  2153. _rapidUploadOnce = asyncToGenerator( /*#__PURE__*/regenerator.mark(function _callee(dir, name, md5, md5s, size, ondup) {
  2154. return regenerator.wrap(function _callee$(_context) {
  2155. while (1) {
  2156. switch (_context.prev = _context.next) {
  2157. case 0:
  2158. if (dir.slice(-1) !== '/') {
  2159. dir += '/';
  2160. }
  2161.  
  2162. return _context.abrupt("return", ajax({
  2163. url: '/api/rapidupload?rtype=1',
  2164. type: 'POST',
  2165. // https://github.com/iikira/BaiduPCS-Go/blob/9837f8e24328e5f881d6a07cf1249508c485a063/baidupcs/prepare.go#L272-L279
  2166. data: {
  2167. // overwrite: 表示覆盖同名文件; newcopy: 表示生成文件副本并进行重命名,命名规则为“文件名_日期.后缀”
  2168. ondup: ondup,
  2169. path: dir + name,
  2170. 'content-md5': md5,
  2171. 'slice-md5': md5s,
  2172. 'content-length': size,
  2173. local_mtime: ''
  2174. }
  2175. }));
  2176.  
  2177. case 2:
  2178. case "end":
  2179. return _context.stop();
  2180. }
  2181. }
  2182. }, _callee);
  2183. }));
  2184. return _rapidUploadOnce.apply(this, arguments);
  2185. }
  2186.  
  2187. function rapidUpload(_x7, _x8, _x9) {
  2188. return _rapidUpload.apply(this, arguments);
  2189. }
  2190.  
  2191. function _rapidUpload() {
  2192. _rapidUpload = asyncToGenerator( /*#__PURE__*/regenerator.mark(function _callee2(dir, file, ondup) {
  2193. var name, md5, md5s, size, resp;
  2194. return regenerator.wrap(function _callee2$(_context2) {
  2195. while (1) {
  2196. switch (_context2.prev = _context2.next) {
  2197. case 0:
  2198. name = file.name, md5 = file.md5, md5s = file.md5s, size = file.size; // 先尝试小写,如果失败则尝试大写。如果都失败则不重试。
  2199.  
  2200. _context2.next = 3;
  2201. return rapidUploadOnce(dir, name, lower(md5), lower(md5s), size, ondup);
  2202.  
  2203. case 3:
  2204. resp = _context2.sent;
  2205.  
  2206. if (!(resp.errno === 0)) {
  2207. _context2.next = 6;
  2208. break;
  2209. }
  2210.  
  2211. return _context2.abrupt("return", resp);
  2212.  
  2213. case 6:
  2214. return _context2.abrupt("return", rapidUploadOnce(dir, name, upper(md5), upper(md5s), size, ondup));
  2215.  
  2216. case 7:
  2217. case "end":
  2218. return _context2.stop();
  2219. }
  2220. }
  2221. }, _callee2);
  2222. }));
  2223. return _rapidUpload.apply(this, arguments);
  2224. }
  2225.  
  2226. function statusHtml(result) {
  2227. var className = result.success ? 'success' : 'fail';
  2228. return "<span class=\"jx-status jx-status-".concat(className, "\">").concat(result.error, "</span>");
  2229. }
  2230.  
  2231. function _createForOfIteratorHelper$1(o) { if (typeof Symbol === "undefined" || o[Symbol.iterator] == null) { if (Array.isArray(o) || (o = _unsupportedIterableToArray$2(o))) { var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e) { throw _e; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var it, normalCompletion = true, didErr = false, err; return { s: function s() { it = o[Symbol.iterator](); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e2) { didErr = true; err = _e2; }, f: function f() { try { if (!normalCompletion && it["return"] != null) it["return"](); } finally { if (didErr) throw err; } } }; }
  2232.  
  2233. function _unsupportedIterableToArray$2(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray$2(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(n); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray$2(o, minLen); }
  2234.  
  2235. function _arrayLikeToArray$2(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }
  2236.  
  2237. function ownKeys$3(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }
  2238.  
  2239. function _objectSpread$3(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys$3(Object(source), true).forEach(function (key) { defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys$3(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
  2240.  
  2241. function _createSuper$2(Derived) { return function () { var Super = getPrototypeOf(Derived), result; if (_isNativeReflectConstruct$2()) { var NewTarget = getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return possibleConstructorReturn(this, result); }; }
  2242.  
  2243. function _isNativeReflectConstruct$2() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
  2244.  
  2245. var defaultConfirmCallback = /*#__PURE__*/function () {
  2246. var _ref = asyncToGenerator( /*#__PURE__*/regenerator.mark(function _callee() {
  2247. return regenerator.wrap(function _callee$(_context) {
  2248. while (1) {
  2249. switch (_context.prev = _context.next) {
  2250. case 0:
  2251. return _context.abrupt("return", true);
  2252.  
  2253. case 1:
  2254. case "end":
  2255. return _context.stop();
  2256. }
  2257. }
  2258. }, _callee);
  2259. }));
  2260.  
  2261. return function defaultConfirmCallback() {
  2262. return _ref.apply(this, arguments);
  2263. };
  2264. }();
  2265.  
  2266. var StandardCodeDialog = /*#__PURE__*/function (_OpDialog) {
  2267. inherits(StandardCodeDialog, _OpDialog);
  2268.  
  2269. var _super = _createSuper$2(StandardCodeDialog);
  2270.  
  2271. createClass(StandardCodeDialog, null, [{
  2272. key: "create",
  2273.  
  2274. /**
  2275. * @param {Object} config
  2276. * @return StandardCodeDialog
  2277. */
  2278. value: function create(config) {
  2279. return new StandardCodeDialog(config);
  2280. }
  2281. }]);
  2282.  
  2283. function StandardCodeDialog() {
  2284. var _this;
  2285.  
  2286. var config = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
  2287.  
  2288. classCallCheck(this, StandardCodeDialog);
  2289.  
  2290. _this = _super.call(this, template$2, _objectSpread$3({
  2291. title: '从秒传链接导入'
  2292. }, config));
  2293.  
  2294. defineProperty(assertThisInitialized(_this), "confirmText", '导入');
  2295.  
  2296. defineProperty(assertThisInitialized(_this), "confirmCallback", defaultConfirmCallback);
  2297.  
  2298. if (config) {
  2299. _this.setText(config.content);
  2300.  
  2301. _this.setDirectory(config.directory);
  2302.  
  2303. _this.setConfirmCallback(config.confirmCallback);
  2304.  
  2305. _this.forceRefresh = config.forceRefresh || false;
  2306. }
  2307.  
  2308. return _this;
  2309. }
  2310.  
  2311. createClass(StandardCodeDialog, [{
  2312. key: "bindContext",
  2313. value: function bindContext() {
  2314. get(getPrototypeOf(StandardCodeDialog.prototype), "bindContext", this).call(this);
  2315.  
  2316. this.hideError = this.hideError.bind(this);
  2317. this.updatePreview = this.updatePreview.bind(this);
  2318. this.parser = new DuParser();
  2319. this.directory = getCurrentDirectory();
  2320. }
  2321. }, {
  2322. key: "bootstrap",
  2323. value: function bootstrap() {
  2324. this.jx_list = this.$('.jx_list');
  2325. this.jx_code = this.$('.jx_code');
  2326. this.jx_errmsg = this.$('.jx_errmsg');
  2327. this.jx_version = this.$('.jx_version');
  2328. this.jx_ondup = this.$('input[name="ondup"]');
  2329. this.ondup = this.root[0].elements.ondup;
  2330. this.ondupStore = this.createStore('ondup');
  2331. this.jx_ondup.filter("[value=\"".concat(this.ondupStore.value, "\"]")).prop('checked', true);
  2332. this.jx_code.on('blur input', debounce(this.updatePreview));
  2333. this.jx_code.on('focus', this.hideError);
  2334. }
  2335. }, {
  2336. key: "hideError",
  2337. value: function hideError() {
  2338. this.jx_errmsg.addClass('jx_hide');
  2339. }
  2340. }, {
  2341. key: "updatePreview",
  2342. value: function updatePreview() {
  2343. var code = this.getText();
  2344. this.parser.reset();
  2345. this.parser.parse(code);
  2346. var hasResults = this.parser.hasResults(); // 如果输入框不为空却没有解析到任何内容
  2347.  
  2348. this.jx_errmsg.toggleClass('jx_hide', Boolean(!code || hasResults));
  2349.  
  2350. if (hasResults) {
  2351. this.jx_version.text(this.versions);
  2352. this.jx_list.html(this.results.map(itemInfo).map(wrapTag('li')).join(''));
  2353. } else {
  2354. this.jx_version.text('--');
  2355. this.jx_list.text('');
  2356. }
  2357. }
  2358. }, {
  2359. key: "setText",
  2360. value: function setText(content) {
  2361. this.jx_code.val(content || '');
  2362. this.updatePreview();
  2363. }
  2364. }, {
  2365. key: "getText",
  2366. value: function getText() {
  2367. return this.jx_code.val();
  2368. }
  2369. }, {
  2370. key: "getDirectory",
  2371. value: function getDirectory() {
  2372. return this.directory;
  2373. }
  2374. }, {
  2375. key: "setConfirmCallback",
  2376. value: function setConfirmCallback(confirmCallback) {
  2377. this.confirmCallback = confirmCallback || defaultConfirmCallback;
  2378. }
  2379. }, {
  2380. key: "setDirectory",
  2381. value: function setDirectory(directory) {
  2382. if (!directory) {
  2383. directory = getCurrentDirectory();
  2384. }
  2385.  
  2386. this.directory = directory;
  2387. }
  2388. }, {
  2389. key: "onConfirm",
  2390. value: function () {
  2391. var _onConfirm = asyncToGenerator( /*#__PURE__*/regenerator.mark(function _callee2() {
  2392. var ondup, totalCount, failed, counter, _iterator, _step, file, resp;
  2393.  
  2394. return regenerator.wrap(function _callee2$(_context2) {
  2395. while (1) {
  2396. switch (_context2.prev = _context2.next) {
  2397. case 0:
  2398. this.hide(); // 取消了操作
  2399.  
  2400. _context2.next = 3;
  2401. return this.confirmCallback();
  2402.  
  2403. case 3:
  2404. if (_context2.sent) {
  2405. _context2.next = 5;
  2406. break;
  2407. }
  2408.  
  2409. return _context2.abrupt("return");
  2410.  
  2411. case 5:
  2412. ondup = this.ondup.value;
  2413. this.ondupStore.value = ondup;
  2414. totalCount = this.results.length;
  2415. failed = 0;
  2416. counter = 1;
  2417. _iterator = _createForOfIteratorHelper$1(this.results);
  2418. _context2.prev = 11;
  2419.  
  2420. _iterator.s();
  2421.  
  2422. case 13:
  2423. if ((_step = _iterator.n()).done) {
  2424. _context2.next = 27;
  2425. break;
  2426. }
  2427.  
  2428. file = _step.value;
  2429. showTip({
  2430. mode: 'loading',
  2431. msg: "\u6B63\u5728\u8F6C\u5B58\u6587\u4EF6 (".concat(counter, "/").concat(totalCount, "), \u8BF7\u7A0D\u540E .."),
  2432. autoClose: false
  2433. });
  2434. _context2.next = 18;
  2435. return rapidUpload(this.getDirectory(), file, ondup);
  2436.  
  2437. case 18:
  2438. resp = _context2.sent;
  2439. file.success = resp.errno === 0;
  2440. file.errno = resp.errno;
  2441. file.error = resp.error;
  2442. file.resp = resp;
  2443.  
  2444. if (!file.success) {
  2445. failed++;
  2446. }
  2447.  
  2448. counter++;
  2449.  
  2450. case 25:
  2451. _context2.next = 13;
  2452. break;
  2453.  
  2454. case 27:
  2455. _context2.next = 32;
  2456. break;
  2457.  
  2458. case 29:
  2459. _context2.prev = 29;
  2460. _context2.t0 = _context2["catch"](11);
  2461.  
  2462. _iterator.e(_context2.t0);
  2463.  
  2464. case 32:
  2465. _context2.prev = 32;
  2466.  
  2467. _iterator.f();
  2468.  
  2469. return _context2.finish(32);
  2470.  
  2471. case 35:
  2472. if (this.forceRefresh || this.getDirectory() === getCurrentDirectory()) {
  2473. refreshFileListView();
  2474. }
  2475.  
  2476. infoDialog({
  2477. title: "\u8F6C\u5B58\u5B8C\u6BD5 (\u5931\u8D25 ".concat(failed, " \u4E2A, \u5171 ").concat(totalCount, " \u4E2A)!"),
  2478. body: "\n <ul class=\"save-complete-details jx_list\">\n ".concat(this.results.map(function (result) {
  2479. return "".concat(itemInfo(result)).concat(statusHtml(result));
  2480. }).map(wrapTag('li')).join(''), "\n </ul>\n "),
  2481. cancel: false
  2482. });
  2483.  
  2484. case 37:
  2485. case "end":
  2486. return _context2.stop();
  2487. }
  2488. }
  2489. }, _callee2, this, [[11, 29, 32, 35]]);
  2490. }));
  2491.  
  2492. function onConfirm() {
  2493. return _onConfirm.apply(this, arguments);
  2494. }
  2495.  
  2496. return onConfirm;
  2497. }()
  2498. }, {
  2499. key: "versions",
  2500. get: function get() {
  2501. return Array.from(this.parser.versions).join('、');
  2502. }
  2503. }, {
  2504. key: "results",
  2505. get: function get() {
  2506. return this.parser.results;
  2507. }
  2508. }]);
  2509.  
  2510. return StandardCodeDialog;
  2511. }(OpDialog);
  2512.  
  2513. function registerPlugin() {
  2514. // 注入到 manifest 定义文件
  2515. window.define('function-widget:jixun/standard-code.js', function (require, exports) {
  2516. // require, exports, module
  2517. exports.start = StandardCodeDialog.create;
  2518. });
  2519. window.manifest = window.manifest.filter(function (plugin) {
  2520. return !pluginBlacklist.includes(plugin.name);
  2521. });
  2522. window.manifest.push({
  2523. name: '秒传链接支持',
  2524. group: 'moe.jixun.code',
  2525. version: '1.0',
  2526. type: '1',
  2527. description: '类似于 115 的标准提取码',
  2528. filesType: '*',
  2529. buttons: [{
  2530. index: 2,
  2531. disabled: 'none',
  2532. color: 'violet',
  2533. icon: 'icon-upload',
  2534. title: '秒传链接',
  2535. buttonStyle: 'normal',
  2536. pluginId: 'JIXUNSTDCODE',
  2537. position: 'tools'
  2538. }],
  2539. preload: false,
  2540. depsFiles: [],
  2541. entranceFile: 'function-widget:jixun/standard-code.js',
  2542. pluginId: 'JIXUNSTDCODE'
  2543. });
  2544. }
  2545.  
  2546. // Copyright Joyent, Inc. and other Node contributors.
  2547. //
  2548. // Permission is hereby granted, free of charge, to any person obtaining a
  2549. // copy of this software and associated documentation files (the
  2550. // "Software"), to deal in the Software without restriction, including
  2551. // without limitation the rights to use, copy, modify, merge, publish,
  2552. // distribute, sublicense, and/or sell copies of the Software, and to permit
  2553. // persons to whom the Software is furnished to do so, subject to the
  2554. // following conditions:
  2555. //
  2556. // The above copyright notice and this permission notice shall be included
  2557. // in all copies or substantial portions of the Software.
  2558. //
  2559. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
  2560. // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  2561. // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
  2562. // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
  2563. // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
  2564. // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
  2565. // USE OR OTHER DEALINGS IN THE SOFTWARE.
  2566. // If obj.hasOwnProperty has been overridden, then calling
  2567. // obj.hasOwnProperty(prop) will break.
  2568. // See: https://github.com/joyent/node/issues/1707
  2569. function hasOwnProperty(obj, prop) {
  2570. return Object.prototype.hasOwnProperty.call(obj, prop);
  2571. }
  2572.  
  2573. function parseQueryString(qs, sep, eq, options) {
  2574. sep = sep || '&';
  2575. eq = eq || '=';
  2576. var obj = {};
  2577.  
  2578. if (typeof qs !== 'string' || qs.length === 0) {
  2579. return obj;
  2580. }
  2581.  
  2582. qs = qs.split(sep);
  2583. var maxKeys = 1000;
  2584.  
  2585. if (options && typeof options.maxKeys === 'number') {
  2586. maxKeys = options.maxKeys;
  2587. }
  2588.  
  2589. var len = qs.length; // maxKeys <= 0 means that we should not limit keys count
  2590.  
  2591. if (maxKeys > 0 && len > maxKeys) {
  2592. len = maxKeys;
  2593. }
  2594.  
  2595. for (var i = 0; i < len; ++i) {
  2596. var x = qs[i];
  2597. var idx = x.indexOf(eq);
  2598. var kstr = void 0;
  2599. var vstr = void 0;
  2600.  
  2601. if (idx >= 0) {
  2602. kstr = x.substr(0, idx);
  2603. vstr = x.substr(idx + 1);
  2604. } else {
  2605. kstr = x;
  2606. vstr = '';
  2607. }
  2608.  
  2609. var k = decodeURIComponent(kstr);
  2610. var v = decodeURIComponent(vstr);
  2611.  
  2612. if (!hasOwnProperty(obj, k)) {
  2613. obj[k] = v;
  2614. } else if (Array.isArray(obj[k])) {
  2615. obj[k].push(v);
  2616. } else {
  2617. obj[k] = [obj[k], v];
  2618. }
  2619. }
  2620.  
  2621. return obj;
  2622. }
  2623.  
  2624. var Query = /*#__PURE__*/function () {
  2625. function Query() {
  2626. classCallCheck(this, Query);
  2627.  
  2628. this.search = {};
  2629. }
  2630.  
  2631. createClass(Query, [{
  2632. key: "parse",
  2633. value: function parse(source) {
  2634. this.search = parseQueryString(source.replace(/^(#\??|\?)/g, '').replace(/\+/g, '%2b'));
  2635. }
  2636. }, {
  2637. key: "has",
  2638. value: function has(name) {
  2639. return Object.prototype.hasOwnProperty.call(this.search, name);
  2640. }
  2641. }, {
  2642. key: "get",
  2643. value: function get(name) {
  2644. return this.search[name];
  2645. }
  2646. }]);
  2647.  
  2648. return Query;
  2649. }();
  2650.  
  2651. var css_248z$2 = ".jx-prev-path > span {\n white-space: nowrap;\n display: flex;\n padding: 0 12px;\n}\n\n.jx-prev-path code {\n padding-left: 0.5em;\n flex-grow: 1;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n";
  2652. styleInject(css_248z$2);
  2653.  
  2654. var css_248z$3 = ".jx-checkbox {\n display: none;\n}\n\n.jx-label {\n cursor: pointer;\n}\n\n.jx-label span {\n display: flex;\n}\n\n.jx-checkbox + span::before {\n content: '';\n padding-left: 20px;\n background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADYAAAAOBAMAAACWQvIuAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAwUExURQAAAP///8rKyujt8TWJ4ViV2/b29srb7vLy8m2l4fX2+K3L6lKt8u7y93/G+Pn5+VodYkgAAAABdFJOUwBA5thmAAAAbElEQVQY02NQggAGZAATUzYGASMUOZiYRqIgEAihyIHFLIQY1AQx5UBiUjOFGBSxyIHElrpswi5nLCgf4roIq5yyy8WlLgexm6nt4h7iKYjDvhIXl4O45MRdPAVxyQmWPMQtJyGIWw4ihiesAfWzHJ0JZlnhAAAAAElFTkSuQmCC') no-repeat left;\n}\n\n.jx-checkbox:checked + span::before {\n background-position-x: -40px;\n}\n";
  2655. styleInject(css_248z$3);
  2656.  
  2657. var Checkbox = /*#__PURE__*/function () {
  2658. function Checkbox() {
  2659. var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
  2660.  
  2661. classCallCheck(this, Checkbox);
  2662.  
  2663. var _options$content = options.content,
  2664. content = _options$content === void 0 ? '' : _options$content,
  2665. _options$className = options.className,
  2666. className = _options$className === void 0 ? '' : _options$className,
  2667. _options$checked = options.checked,
  2668. checked = _options$checked === void 0 ? false : _options$checked;
  2669. this.root = $$1('<label class="jx-label">').addClass(className);
  2670. this.$input = $$1('<input class="jx-checkbox" type="checkbox" />');
  2671. this.$text = $$1('<span>');
  2672.  
  2673. if (typeof content === 'string') {
  2674. this.$text.text(content);
  2675. } else {
  2676. this.$text.append(content);
  2677. }
  2678.  
  2679. this.$input.prop('checked', checked);
  2680. this.root.append(this.$input).append(this.$text);
  2681. }
  2682.  
  2683. createClass(Checkbox, [{
  2684. key: "appendTo",
  2685. value: function appendTo(target) {
  2686. this.root.appendTo(target);
  2687. }
  2688. }, {
  2689. key: "checked",
  2690. get: function get() {
  2691. return this.$input.prop('checked');
  2692. },
  2693. set: function set(checked) {
  2694. return this.$input.prop('checked', Boolean(checked));
  2695. }
  2696. }]);
  2697.  
  2698. return Checkbox;
  2699. }();
  2700.  
  2701. var ImportOnLoad = /*#__PURE__*/function () {
  2702. createClass(ImportOnLoad, null, [{
  2703. key: "create",
  2704. value: function create(content) {
  2705. return new ImportOnLoad(content);
  2706. }
  2707. }]);
  2708.  
  2709. function ImportOnLoad() {
  2710. var content = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : '';
  2711.  
  2712. classCallCheck(this, ImportOnLoad);
  2713.  
  2714. this.content = content;
  2715. this.onConfirm = this.onConfirm.bind(this);
  2716. this.selectDirectory = this.selectDirectory.bind(this);
  2717. this.tryAndInitTreeSelector()["catch"](console.error);
  2718. }
  2719.  
  2720. createClass(ImportOnLoad, [{
  2721. key: "tryAndInitTreeSelector",
  2722. value: function () {
  2723. var _tryAndInitTreeSelector = asyncToGenerator( /*#__PURE__*/regenerator.mark(function _callee() {
  2724. var i;
  2725. return regenerator.wrap(function _callee$(_context) {
  2726. while (1) {
  2727. switch (_context.prev = _context.next) {
  2728. case 0:
  2729. i = 5;
  2730.  
  2731. case 1:
  2732. if (!(i >= 0)) {
  2733. _context.next = 16;
  2734. break;
  2735. }
  2736.  
  2737. _context.prev = 2;
  2738. _context.next = 5;
  2739. return this.initTreeSelector();
  2740.  
  2741. case 5:
  2742. return _context.abrupt("return");
  2743.  
  2744. case 8:
  2745. _context.prev = 8;
  2746. _context.t0 = _context["catch"](2);
  2747. console.error(_context.t0);
  2748.  
  2749. case 11:
  2750. _context.next = 13;
  2751. return new Promise(function (resolve) {
  2752. return setTimeout(resolve, 5000);
  2753. });
  2754.  
  2755. case 13:
  2756. i--;
  2757. _context.next = 1;
  2758. break;
  2759.  
  2760. case 16:
  2761. throw new Error('Could not init tree selector.');
  2762.  
  2763. case 17:
  2764. case "end":
  2765. return _context.stop();
  2766. }
  2767. }
  2768. }, _callee, this, [[2, 8]]);
  2769. }));
  2770.  
  2771. function tryAndInitTreeSelector() {
  2772. return _tryAndInitTreeSelector.apply(this, arguments);
  2773. }
  2774.  
  2775. return tryAndInitTreeSelector;
  2776. }()
  2777. }, {
  2778. key: "initTreeSelector",
  2779. value: function () {
  2780. var _initTreeSelector = asyncToGenerator( /*#__PURE__*/regenerator.mark(function _callee2() {
  2781. return regenerator.wrap(function _callee2$(_context2) {
  2782. while (1) {
  2783. switch (_context2.prev = _context2.next) {
  2784. case 0:
  2785. _context2.next = 2;
  2786. return loadAsync('disk-system:widget/plugin/moveCopy/start.js');
  2787.  
  2788. case 2:
  2789. _context2.next = 4;
  2790. return loadAsync('disk-system:widget/system/uiService/fileTreeDialog/fileTreeDialog.js');
  2791.  
  2792. case 4:
  2793. this.fileTreeDialog = _context2.sent;
  2794. this.ui = getContext().ui;
  2795. this.directoryStore = LocalStore.create(this, 'import_dir');
  2796. this.prevPath = this.directoryStore.value || '/';
  2797. this.confirmFileList();
  2798.  
  2799. case 9:
  2800. case "end":
  2801. return _context2.stop();
  2802. }
  2803. }
  2804. }, _callee2, this);
  2805. }));
  2806.  
  2807. function initTreeSelector() {
  2808. return _initTreeSelector.apply(this, arguments);
  2809. }
  2810.  
  2811. return initTreeSelector;
  2812. }()
  2813. }, {
  2814. key: "selectDirectory",
  2815. value: function selectDirectory() {
  2816. var _this = this;
  2817.  
  2818. this.dirSelectDialog = this.fileTreeDialog.show({
  2819. title: '导入至…',
  2820. confirm: this.onConfirm,
  2821. isZip: true,
  2822. showShareDir: false,
  2823. path: '/'
  2824. });
  2825. this.$dialogBody = this.dirSelectDialog.dialog.$dialog.find(getDialog().QUERY.dialogBody);
  2826. this.checkUsePrevPath = new Checkbox({
  2827. content: '使用上次储存的位置',
  2828. className: 'jx-prev-path',
  2829. checked: true
  2830. });
  2831. this.checkUsePrevPath.appendTo(this.$dialogBody);
  2832. this.$prevPath = $('<code>').text(this.prevPath);
  2833. this.checkUsePrevPath.$text.append(this.$prevPath);
  2834. this.checkUsePrevPath.root.prop('title', this.prevPath);
  2835. return new Promise(function (resolve) {
  2836. _this.resolveDirectorySelect = resolve;
  2837. });
  2838. }
  2839. }, {
  2840. key: "confirmFileList",
  2841. value: function confirmFileList() {
  2842. var content = this.content;
  2843. this.stdCodeDialog = StandardCodeDialog.create({
  2844. content: content,
  2845. forceRefresh: true,
  2846. confirmText: '选择目录',
  2847. confirmCallback: this.selectDirectory
  2848. });
  2849. }
  2850. }, {
  2851. key: "onConfirm",
  2852. value: function onConfirm(targetDir) {
  2853. this.fileTreeDialog.hide();
  2854. var directory = this.checkUsePrevPath.checked ? this.prevPath : targetDir;
  2855. this.directoryStore.value = directory;
  2856. this.stdCodeDialog.setDirectory(directory);
  2857. this.resolveDirectorySelect(true);
  2858. }
  2859. }]);
  2860.  
  2861. return ImportOnLoad;
  2862. }();
  2863.  
  2864. var KEY_BDLINK = 'bdlink';
  2865. var _window$location = window.location,
  2866. search = _window$location.search,
  2867. hash = _window$location.hash;
  2868. function initialiseQueryLink() {
  2869. var query = new Query();
  2870. query.parse(search);
  2871.  
  2872. if (!query.has(KEY_BDLINK)) {
  2873. query.parse(hash);
  2874. }
  2875.  
  2876. if (query.has(KEY_BDLINK)) {
  2877. ImportOnLoad.create(decodeBase64(query.get(KEY_BDLINK).replace(/#.{4}$/, '')));
  2878. }
  2879. }
  2880.  
  2881. hook('disk-system:widget/system/uiRender/menu/listMenu.js', injectMenu);
  2882. hook('system-core:pluginHub/register/register.js', registerPlugin);
  2883. hook('system-core:system/uiService/list/list.js', initialiseQueryLink); // ESC 将关闭所有漂浮窗口
  2884.  
  2885. document.addEventListener('keyup', function (e) {
  2886. if (e.keyCode === 0x1b) {
  2887. $$1('.dialog-close').click();
  2888. }
  2889. }, false);
  2890.  
  2891.  
  2892. // eslint-disable-next-line no-unused-vars
  2893. function styleInject(css) {
  2894. function addStyle(cssText) {
  2895. const style = document.createElement('style');
  2896. style.textContent = cssText;
  2897. document.head.appendChild(style);
  2898. }
  2899.  
  2900. if (document.head) {
  2901. addStyle(css);
  2902. } else if (styleInject.pending) {
  2903. styleInject.pending.push(css);
  2904. } else {
  2905. const injectPendingCSS = () => {
  2906. styleInject.pending.forEach(addStyle);
  2907. styleInject.pending = undefined;
  2908. window.removeEventListener('DOMContentLoaded', injectPendingCSS);
  2909. };
  2910.  
  2911. styleInject.pending = [css];
  2912. window.addEventListener('DOMContentLoaded', injectPendingCSS);
  2913. }
  2914. }
  2915.  
  2916. }
  2917.  
  2918. const isGm = (typeof unsafeWindow !== 'undefined') && (unsafeWindow !== window);
  2919. if (isGm) {
  2920. const INFO = '[仓库助手]';
  2921.  
  2922. console.info('%s 以 GreaseMonkey 兼容模式执行。该脚本管理器所遇到的问题不能保证能够修复。', INFO);
  2923. unsafeWindow.eval(`;(${entryPoint})();`);
  2924. } else {
  2925. entryPoint();
  2926. }
  2927.  

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址