-
Notifications
You must be signed in to change notification settings - Fork 0
/
Download github repo sub-folder.user.js
330 lines (321 loc) · 12.1 KB
/
Download github repo sub-folder.user.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
// ==UserScript==
// @name Download github repo sub-folder
// @version 0.3.0
// @author Saiya
// @description download github sub-folder via one click, copy the single file's source code easily
// @supportURL https://github.com/oe/download-git-userscript/issues
// @match https://github.com/*
// @match https://gist.github.com/*
// @namespace https://app.evecalm.com
// @name:zh-CN 在线下载Github仓库文件夹
// @description:zh-CN 无需克隆GitHub仓库, 一键在线下载 Github仓库子文件夹; 同时还能在源码详情页一键复制源码
// @homepageURL https://github.com/oe/download-git-userscript
// @licence MIT
// @icon https://github.githubassets.com/pinned-octocat.svg
// @connect cdn.jsdelivr.net
// @grant GM_setClipboard
// @grant GM_xmlhttpRequest
// @noframes
// ==/UserScript==
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
/******/
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
/******/
/******/ // Check if module is in cache
/******/ if(installedModules[moduleId]) {
/******/ return installedModules[moduleId].exports;
/******/ }
/******/ // Create a new module (and put it into the cache)
/******/ var module = installedModules[moduleId] = {
/******/ i: moduleId,
/******/ l: false,
/******/ exports: {}
/******/ };
/******/
/******/ // Execute the module function
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
/******/
/******/ // Flag the module as loaded
/******/ module.l = true;
/******/
/******/ // Return the exports of the module
/******/ return module.exports;
/******/ }
/******/
/******/
/******/ // expose the modules object (__webpack_modules__)
/******/ __webpack_require__.m = modules;
/******/
/******/ // expose the module cache
/******/ __webpack_require__.c = installedModules;
/******/
/******/ // define getter function for harmony exports
/******/ __webpack_require__.d = function(exports, name, getter) {
/******/ if(!__webpack_require__.o(exports, name)) {
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
/******/ }
/******/ };
/******/
/******/ // define __esModule on exports
/******/ __webpack_require__.r = function(exports) {
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
/******/ }
/******/ Object.defineProperty(exports, '__esModule', { value: true });
/******/ };
/******/
/******/ // create a fake namespace object
/******/ // mode & 1: value is a module id, require it
/******/ // mode & 2: merge all properties of value into the ns
/******/ // mode & 4: return value when already ns object
/******/ // mode & 8|1: behave like require
/******/ __webpack_require__.t = function(value, mode) {
/******/ if(mode & 1) value = __webpack_require__(value);
/******/ if(mode & 8) return value;
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
/******/ var ns = Object.create(null);
/******/ __webpack_require__.r(ns);
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
/******/ return ns;
/******/ };
/******/
/******/ // getDefaultExport function for compatibility with non-harmony modules
/******/ __webpack_require__.n = function(module) {
/******/ var getter = module && module.__esModule ?
/******/ function getDefault() { return module['default']; } :
/******/ function getModuleExports() { return module; };
/******/ __webpack_require__.d(getter, 'a', getter);
/******/ return getter;
/******/ };
/******/
/******/ // Object.prototype.hasOwnProperty.call
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
/******/
/******/ // __webpack_public_path__
/******/ __webpack_require__.p = "";
/******/
/******/
/******/ // Load entry module and return exports
/******/ return __webpack_require__(__webpack_require__.s = 1);
/******/ })
/************************************************************************/
/******/ ([
/* 0 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.openLink = exports.getCurrentUrlPath = exports.getRawBtn = exports.getUrlTextResponse = exports.isTextBasedSinglePage = exports.isRepoRootDir = exports.isPrivateRepo = exports.isRepo = exports.isGist = void 0;
/**
* is gist website
*/
function isGist() {
return location.hostname === 'gist.github.com';
}
exports.isGist = isGist;
function isRepo() {
if (!document.querySelector('.repository-content'))
return false;
const meta = document.querySelector('meta[name="selected-link"]');
if (meta && meta.getAttribute('value') === 'repo_commits')
return false;
if (document.querySelector('.js-navigation-container>.TimelineItem'))
return false;
return true;
}
exports.isRepo = isRepo;
function isPrivateRepo() {
const label = document.querySelector('#js-repo-pjax-container .hide-full-screen .Label');
return label && label.textContent === 'Private';
}
exports.isPrivateRepo = isPrivateRepo;
function isRepoRootDir() {
return !!document.querySelector('.repository-content get-repo');
}
exports.isRepoRootDir = isRepoRootDir;
function isTextBasedSinglePage() {
if (!getRawBtn())
return;
if (document.getElementById('readme'))
return true;
const boxBody = document.querySelector('table.highlight');
if (boxBody)
return true;
return false;
}
exports.isTextBasedSinglePage = isTextBasedSinglePage;
function getUrlTextResponse(url) {
// https://github.com/oe/search/raw/gh-pages/app-icon-retina.f492fc13.png
// https://cdn.jsdelivr.net/gh/oe/search@gh-pages/app-icon-retina.f492fc13.png
// https://github.com/oe/search/raw/master/CNAME
let apiUrl = url
.replace('github.com/', 'cdn.jsdelivr.net/gh/')
.replace('/raw/', '@');
return new Promise((resolve, reject) => {
// @ts-ignore
GM_xmlhttpRequest({
url: apiUrl,
method: 'GET',
onload: (s) => {
resolve(s.responseText);
}
});
});
}
exports.getUrlTextResponse = getUrlTextResponse;
// if is single file page, then it has a raw btn
function getRawBtn() {
return document.getElementById('raw-url');
}
exports.getRawBtn = getRawBtn;
// remove qeurystring & hash
function getCurrentUrlPath() {
const url = location.origin + location.pathname;
return url.replace(/\/$/, '');
}
exports.getCurrentUrlPath = getCurrentUrlPath;
function openLink(url) {
const link = document.createElement('a');
link.target = '_blank';
link.href = url;
link.click();
}
exports.openLink = openLink;
/***/ }),
/* 1 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
__setModuleDefault(result, mod);
return result;
};
Object.defineProperty(exports, "__esModule", { value: true });
const utils = __importStar(__webpack_require__(0));
const utils_1 = __webpack_require__(0);
(function () {
const DOWNLOAD_BTN_ID = 'xiu-download-btn';
main();
observePageChange();
function main() {
if (!utils.isRepo())
return;
addDownloadBtn();
addCopyTextBtn();
}
function observePageChange() {
// Select the node that will be observed for mutations
let targetNode;
if (utils.isGist()) {
targetNode = document.querySelector('#gist-pjax-container');
}
else {
// to deal with octree, it append elements as siblings of #js-repo-pjax-container
// which is inside of child of .application-main
targetNode = document.querySelector('#js-repo-pjax-container');
}
if (!targetNode)
return;
let tid = 0;
// Callback function to execute when mutations are observed
const callback = function (mutationsList) {
clearTimeout(tid);
// if download button exists, and textContent just been changed
// e.g. translated by browser
if (mutationsList.some(mutation => {
if (mutation.type === 'childList' &&
mutation.target.id === DOWNLOAD_BTN_ID &&
mutation.target.textContent !== 'Download')
return true;
}))
return;
tid = setTimeout(main, 200);
};
// Create an observer instance linked to the callback function
const observer = new MutationObserver(callback);
// Start observing the target node for configured mutations
observer.observe(targetNode, { childList: true, subtree: true });
}
function addDownloadBtn() {
let $navi = document.querySelector('.repository-content .file-navigation');
if ($navi) {
const downloadBtn = getDownloadBtn($navi);
if ($navi.contains(downloadBtn))
return;
$navi.appendChild(downloadBtn);
return;
}
const moreBtn = document.querySelector('#blob-more-options-details');
if (!moreBtn)
return;
$navi = moreBtn.parentElement;
const downloadBtn = getDownloadBtn($navi);
if ($navi.contains(downloadBtn))
return;
moreBtn.insertAdjacentElement('afterend', downloadBtn);
}
function getDownloadBtn($fileNavi) {
let downloadBtn = document.getElementById(DOWNLOAD_BTN_ID);
if (!downloadBtn) {
downloadBtn = document.createElement('a');
downloadBtn.id = DOWNLOAD_BTN_ID;
}
downloadBtn.className = 'btn d-none d-md-block ml-2';
downloadBtn.target = '_blank';
let url = '';
if (utils.isRepoRootDir()) {
const link = $fileNavi.querySelector('get-repo a[href$=".zip"]');
url = link.href;
}
else {
url = `https://downgit.evecalm.com/#/home?url=${encodeURIComponent(utils.getCurrentUrlPath())}`;
}
downloadBtn.textContent = 'Download';
downloadBtn.href = url;
return downloadBtn;
}
function addCopyTextBtn() {
if (!utils.isTextBasedSinglePage() || document.getElementById('xiu-copy-btn')) {
return;
}
const rawBtn = utils_1.getRawBtn();
// <a href="/Kyome22/IronKeyboard/raw/master/Keyboard/Line1.swift" id="raw-url" role="button" class="btn btn-sm BtnGroup-item ">Raw</a>
const copyBtn = document.createElement('a');
copyBtn.setAttribute('role', 'button');
copyBtn.className = 'btn btn-sm BtnGroup-item';
copyBtn.href = '#';
copyBtn.id = 'xiu-copy-btn';
copyBtn.textContent = 'Copy';
copyBtn.onclick = async (e) => {
e.preventDefault();
try {
const text = await utils.getUrlTextResponse(rawBtn.href);
// @ts-ignore
GM_setClipboard(text);
}
catch (error) {
console.warn(error);
}
};
rawBtn.insertAdjacentElement('beforebegin', copyBtn);
}
})();
/***/ })
/******/ ]);