extension.js 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357
  1. /******/ (() => { // webpackBootstrap
  2. /******/ var __webpack_modules__ = ({
  3. /***/ 51:
  4. /***/ ((module) => {
  5. var replacements = [
  6. [/\*/g, '\\*', 'asterisks'],
  7. [/#/g, '\\#', 'number signs'],
  8. [/\//g, '\\/', 'slashes'],
  9. [/\(/g, '\\(', 'parentheses'],
  10. [/\)/g, '\\)', 'parentheses'],
  11. [/\[/g, '\\[', 'square brackets'],
  12. [/\]/g, '\\]', 'square brackets'],
  13. [/</g, '&lt;', 'angle brackets'],
  14. [/>/g, '&gt;', 'angle brackets'],
  15. [/_/g, '\\_', 'underscores']
  16. ]
  17. module.exports = function (string, skips) {
  18. skips = skips || []
  19. return replacements.reduce(function (string, replacement) {
  20. var name = replacement[2]
  21. return name && skips.indexOf(name) !== -1
  22. ? string
  23. : string.replace(replacement[0], replacement[1])
  24. }, string)
  25. }
  26. /***/ }),
  27. /***/ 2:
  28. /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
  29. "use strict";
  30. Object.defineProperty(exports, "__esModule", ({ value: true }));
  31. exports.request = void 0;
  32. const url_1 = __webpack_require__(28);
  33. const https = __webpack_require__(26);
  34. const qs = __webpack_require__(53);
  35. /**
  36. * Parse a request body based on known MIME types, based on the Content-Type
  37. * header. If unknown or undefined, will return the original request body.
  38. * @param {Object} opts - The request options.
  39. * @param {Object|string} body - The request body.
  40. * @returns {Object|string} A parsed request body for known MIME types, or the original request body.
  41. */
  42. function parse(opts = {}, body) {
  43. if (opts.headers == null) {
  44. return body;
  45. }
  46. switch (opts.headers['Content-Type']) {
  47. case 'application/json': return JSON.stringify(body);
  48. case 'application/x-www-form-urlencoded': return qs.stringify(body);
  49. default: return body;
  50. }
  51. }
  52. /**
  53. * Make an asynchronous request to an HTTP or HTTPS address. Automatically
  54. * derives protocol from URL input, and content length from the request body.
  55. * @param {URL|string} url - The request URL.
  56. * @param {Object} opts - The request options.
  57. * @param {Object|string} body - The request body.
  58. * @returns {Promise} A promise to return either a response object, or an error.
  59. */
  60. function request(url, opts = {}, body = '') {
  61. const data = parse(opts, body);
  62. if (opts.headers == null) {
  63. opts.headers = {};
  64. }
  65. return new Promise((resolve, reject) => {
  66. if (!(url instanceof url_1.URL)) {
  67. url = new url_1.URL(url);
  68. }
  69. const tick = new Date().getTime();
  70. const request = https.request(url, opts, (response) => {
  71. const chunks = [];
  72. response.on('data', (chunk) => {
  73. chunks.push(chunk);
  74. });
  75. response.on('end', () => {
  76. try {
  77. const { headers } = response;
  78. const body = chunks.join('');
  79. resolve({ headers, body });
  80. }
  81. catch (error) {
  82. reject(error);
  83. }
  84. });
  85. response.on('error', (error) => {
  86. reject(error);
  87. });
  88. });
  89. request.write(data);
  90. request.end();
  91. });
  92. }
  93. exports.request = request;
  94. /***/ }),
  95. /***/ 1:
  96. /***/ ((module) => {
  97. "use strict";
  98. module.exports = require("vscode");
  99. /***/ }),
  100. /***/ 26:
  101. /***/ ((module) => {
  102. "use strict";
  103. module.exports = require("https");
  104. /***/ }),
  105. /***/ 53:
  106. /***/ ((module) => {
  107. "use strict";
  108. module.exports = require("querystring");
  109. /***/ }),
  110. /***/ 28:
  111. /***/ ((module) => {
  112. "use strict";
  113. module.exports = require("url");
  114. /***/ }),
  115. /***/ 50:
  116. /***/ ((__unused_webpack_module, exports) => {
  117. "use strict";
  118. /**
  119. * Copyright (C) 2017-present by Andrea Giammarchi - @WebReflection
  120. *
  121. * Permission is hereby granted, free of charge, to any person obtaining a copy
  122. * of this software and associated documentation files (the "Software"), to deal
  123. * in the Software without restriction, including without limitation the rights
  124. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  125. * copies of the Software, and to permit persons to whom the Software is
  126. * furnished to do so, subject to the following conditions:
  127. *
  128. * The above copyright notice and this permission notice shall be included in
  129. * all copies or substantial portions of the Software.
  130. *
  131. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  132. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  133. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  134. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  135. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  136. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  137. * THE SOFTWARE.
  138. */
  139. const {replace} = '';
  140. // escape
  141. const es = /&(?:amp|#38|lt|#60|gt|#62|apos|#39|quot|#34);/g;
  142. const ca = /[&<>'"]/g;
  143. const esca = {
  144. '&': '&amp;',
  145. '<': '&lt;',
  146. '>': '&gt;',
  147. "'": '&#39;',
  148. '"': '&quot;'
  149. };
  150. const pe = m => esca[m];
  151. /**
  152. * Safely escape HTML entities such as `&`, `<`, `>`, `"`, and `'`.
  153. * @param {string} es the input to safely escape
  154. * @returns {string} the escaped input, and it **throws** an error if
  155. * the input type is unexpected, except for boolean and numbers,
  156. * converted as string.
  157. */
  158. const escape = es => replace.call(es, ca, pe);
  159. exports.escape = escape;
  160. // unescape
  161. const unes = {
  162. '&amp;': '&',
  163. '&#38;': '&',
  164. '&lt;': '<',
  165. '&#60;': '<',
  166. '&gt;': '>',
  167. '&#62;': '>',
  168. '&apos;': "'",
  169. '&#39;': "'",
  170. '&quot;': '"',
  171. '&#34;': '"'
  172. };
  173. const cape = m => unes[m];
  174. /**
  175. * Safely unescape previously escaped entities such as `&`, `<`, `>`, `"`,
  176. * and `'`.
  177. * @param {string} un a previously escaped string
  178. * @returns {string} the unescaped input, and it **throws** an error if
  179. * the input type is unexpected, except for boolean and numbers,
  180. * converted as string.
  181. */
  182. const unescape = un => replace.call(un, es, cape);
  183. exports.unescape = unescape;
  184. /***/ })
  185. /******/ });
  186. /************************************************************************/
  187. /******/ // The module cache
  188. /******/ var __webpack_module_cache__ = {};
  189. /******/
  190. /******/ // The require function
  191. /******/ function __webpack_require__(moduleId) {
  192. /******/ // Check if module is in cache
  193. /******/ var cachedModule = __webpack_module_cache__[moduleId];
  194. /******/ if (cachedModule !== undefined) {
  195. /******/ return cachedModule.exports;
  196. /******/ }
  197. /******/ // Create a new module (and put it into the cache)
  198. /******/ var module = __webpack_module_cache__[moduleId] = {
  199. /******/ // no module.id needed
  200. /******/ // no module.loaded needed
  201. /******/ exports: {}
  202. /******/ };
  203. /******/
  204. /******/ // Execute the module function
  205. /******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
  206. /******/
  207. /******/ // Return the exports of the module
  208. /******/ return module.exports;
  209. /******/ }
  210. /******/
  211. /************************************************************************/
  212. var __webpack_exports__ = {};
  213. // This entry need to be wrapped in an IIFE because it need to be in strict mode.
  214. (() => {
  215. "use strict";
  216. var exports = __webpack_exports__;
  217. Object.defineProperty(exports, "__esModule", ({ value: true }));
  218. exports.deactivate = exports.activate = void 0;
  219. // The module 'vscode' contains the VS Code extensibility API
  220. // Import the module and reference it with the alias vscode in your code below
  221. const vscode = __webpack_require__(1);
  222. const html_escaper_1 = __webpack_require__(50);
  223. const requests_1 = __webpack_require__(2);
  224. const markdownEscape = __webpack_require__(51);
  225. // this method is called when your extension is activated
  226. // your extension is activated the very first time the command is executed
  227. function activate(context) {
  228. // Use the console to output diagnostic information (console.log) and errors (console.error)
  229. // This line of code will only be executed once when your extension is activated
  230. console.log('Congratulations, your extension "wikipedia-hyperlinker" is now active!');
  231. // The command has been defined in the package.json file
  232. // Now provide the implementation of the command with registerCommand
  233. // The commandId parameter must match the command field in package.json
  234. let disposable = vscode.commands.registerCommand('wikipedia-hyperlinker.addHyperlink', () => {
  235. // The code you place here will be executed every time your command is executed
  236. var editor = vscode.window.activeTextEditor;
  237. if (editor !== undefined) {
  238. const currentSelection = editor.selection;
  239. const text = editor.document.getText(currentSelection);
  240. if (text.trim() === '') {
  241. vscode.window.showErrorMessage('No text is selected');
  242. return false;
  243. }
  244. vscode.window.withProgress({
  245. location: vscode.ProgressLocation.Window,
  246. cancellable: false,
  247. title: 'Loading article from wikipedia...'
  248. }, async (progress) => {
  249. progress.report({ increment: 0 });
  250. // Make a request to wikipedia to get short description
  251. try {
  252. const response = await (0, requests_1.request)(`https://en.wikipedia.org/w/api.php?format=json&action=query&prop=info|extracts&exintro&explaintext&&inprop=url&redirects=1&titles=${encodeURIComponent(text)}`);
  253. const body = JSON.parse(response.body);
  254. progress.report({ increment: 100 });
  255. console.log(response);
  256. const summary = body['query']['pages'][Object.keys(body['query']['pages'])[0]]['extract'];
  257. const url = body['query']['pages'][Object.keys(body['query']['pages'])[0]]['fullurl'];
  258. if (summary.includes("may refer to:")) {
  259. vscode.window
  260. .showInformationMessage(`There are multiple articles under the term ${text}. Do you want to see all the possible articles in wikipedia inside your browser?`, { modal: true }, ...["Yes", "No"])
  261. .then((answer) => {
  262. if (answer === "Yes") {
  263. vscode.env.openExternal(vscode.Uri.parse(url));
  264. }
  265. else {
  266. vscode.window.showInformationMessage("Okay, you can refine your text anytime and use the command again");
  267. }
  268. });
  269. return false;
  270. }
  271. var currentLanguage = editor?.document.languageId;
  272. // vscode.window.showInformationMessage(`Added wikipedia article for ${text}`);
  273. if (currentLanguage === "markdown") {
  274. editor?.edit(editBuilder => {
  275. editBuilder.replace(currentSelection, `[${markdownEscape(text)}](${url} "${markdownEscape(summary)}")`);
  276. });
  277. }
  278. else if (currentLanguage === "html" || currentLanguage === "jinja") {
  279. editor?.edit(editBuilder => {
  280. editBuilder.replace(currentSelection, `<a href="${url}" title="${(0, html_escaper_1.escape)(summary)}">${(0, html_escaper_1.escape)(text)}</a>`);
  281. });
  282. }
  283. else {
  284. vscode.window.showWarningMessage(`The current language (${currentLanguage}) is not supported`, ...["Use HTML", "Use Markdown", "Cancel"]).then((answer) => {
  285. if (answer === "Use HTML") {
  286. editor?.edit(editBuilder => {
  287. editBuilder.replace(currentSelection, `<a href="${url}" title="${(0, html_escaper_1.escape)(summary)}">${(0, html_escaper_1.escape)(text)}</a>`);
  288. });
  289. }
  290. else if (answer === "Use Markdown") {
  291. editor?.edit(editBuilder => {
  292. editBuilder.replace(currentSelection, `[${markdownEscape(text)}](${url} "${markdownEscape(summary)}")`);
  293. });
  294. }
  295. });
  296. }
  297. }
  298. catch (error) {
  299. vscode.window.showErrorMessage(`Request failed`);
  300. console.error(error);
  301. }
  302. });
  303. // Display a message box to the user
  304. }
  305. else {
  306. vscode.window.showInformationMessage('No window is active');
  307. }
  308. });
  309. context.subscriptions.push(disposable);
  310. }
  311. exports.activate = activate;
  312. // this method is called when your extension is deactivated
  313. function deactivate() { }
  314. exports.deactivate = deactivate;
  315. })();
  316. module.exports = __webpack_exports__;
  317. /******/ })()
  318. ;
  319. //# sourceMappingURL=extension.js.map