aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/github/index.js
diff options
context:
space:
mode:
authorLibravatar Vijay A <avijayr@protonmail.com>2021-09-12 15:58:12 +0530
committerLibravatar Vijay A <avijayr@protonmail.com>2021-09-12 15:58:12 +0530
commit93738624ed1dd4473fb4e6cdfb859e6250437104 (patch)
tree567024bee405a95be8957ba7e77a68b094bc09cd /recipes/github/index.js
parentNew recipe: 'udemy' (fixes #464) (#696) (diff)
downloadferdium-recipes-93738624ed1dd4473fb4e6cdfb859e6250437104.tar.gz
ferdium-recipes-93738624ed1dd4473fb4e6cdfb859e6250437104.tar.zst
ferdium-recipes-93738624ed1dd4473fb4e6cdfb859e6250437104.zip
Merged 'github_enterprise' recipe into 'github' with the extra bits.
Diffstat (limited to 'recipes/github/index.js')
-rw-r--r--recipes/github/index.js20
1 files changed, 19 insertions, 1 deletions
diff --git a/recipes/github/index.js b/recipes/github/index.js
index 23607bd..dfcd7d1 100644
--- a/recipes/github/index.js
+++ b/recipes/github/index.js
@@ -1 +1,19 @@
1module.exports = Ferdi => Ferdi; 1module.exports = Ferdi => class GitHub extends Ferdi {
2 async validateUrl(url) {
3 try {
4 const resp = await window.fetch(`${url}/api/v3`, {
5 method: 'GET',
6 headers: {
7 'Content-Type': 'application/json',
8 Accept: 'application/vnd.github.v3+json',
9 },
10 });
11 // doc: https://developer.github.com/enterprise/2.17/v3/#current-version
12 return resp.status.toString().startsWith('2');
13 } catch (err) {
14 console.error(err);
15 }
16
17 return false;
18 }
19};