forked from remy/mit-license
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Swap fs-extra for more specialised modules
Signed-off-by: Richie Bendall <[email protected]>
- Loading branch information
Showing
5 changed files
with
67 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
const fs = require('fs-extra') | ||
const path = require('path') | ||
const btoa = require('btoa') | ||
const { version } = require(path.join(__dirname, '..', 'package.json')) | ||
const size = require('any-size') | ||
const { Octokit } = require('@octokit/rest') | ||
const pathExists = require('path-exists') | ||
const writeJsonFile = require('write-json-file') | ||
const github = new Octokit({ | ||
// GitHub personal access token | ||
auth: process.env.github_token, | ||
|
@@ -57,7 +58,7 @@ module.exports = async (req, res) => { | |
} | ||
|
||
// Check if the user file exists in the users directory | ||
const exists = await fs.pathExists(path.join(__dirname, '..', 'users', `${id}.json`)) | ||
const exists = await pathExists(path.join(__dirname, '..', 'users', `${id}.json`)) | ||
if (exists) { | ||
res | ||
.status(409) | ||
|
@@ -88,21 +89,19 @@ module.exports = async (req, res) => { | |
} | ||
|
||
try { | ||
const fileContent = JSON.stringify(userData, 0, 2) | ||
|
||
await github.repos.createOrUpdateFileContents({ | ||
owner: 'remy', | ||
repo: 'mit-license', | ||
path: `users/${id}.json`, | ||
message: `Automated creation of user ${id}.`, | ||
content: btoa(fileContent), | ||
content: btoa(JSON.stringify(userData, 0, 2)), | ||
committer: { | ||
name: 'MIT License Bot', | ||
email: '[email protected]' | ||
} | ||
}) | ||
|
||
await fs.writeFile(path.join(__dirname, '..', 'users', `${id}.json`), fileContent) | ||
await writeJsonFile(path.join(__dirname, '..', 'users', `${id}.json`), userData, { indent: undefined }) | ||
|
||
res.status(201).send(`MIT license page created: https://${hostname}`) | ||
} catch (err) { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -417,11 +417,6 @@ [email protected]: | |
resolved "https://registry.yarnpkg.com/async/-/async-0.9.2.tgz#aea74d5e61c1f899613bf64bda66d4c78f2fd17d" | ||
integrity sha1-rqdNXmHB+JlhO/ZL2mbUx48v0X0= | ||
|
||
at-least-node@^1.0.0: | ||
version "1.0.0" | ||
resolved "https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2" | ||
integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg== | ||
|
||
atob@^2.1.2: | ||
version "2.1.2" | ||
resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" | ||
|
@@ -1015,6 +1010,11 @@ destroy@~1.0.4: | |
resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" | ||
integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA= | ||
|
||
detect-indent@^6.0.0: | ||
version "6.0.0" | ||
resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-6.0.0.tgz#0abd0f549f69fc6659a254fe96786186b6f528fd" | ||
integrity sha512-oSyFlqaTHCItVRGK5RmrmjB+CmaMOW7IaNA/kdxqhoa6d17j/5ce9O9eWXmV/KEdRwqpQA+Vqe8a8Bsybu4YnA== | ||
|
||
[email protected]: | ||
version "2.1.0" | ||
resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-2.1.0.tgz#f41f1c10be4b00e87b5f13da680759f2c5bfd3e2" | ||
|
@@ -1675,16 +1675,6 @@ [email protected]: | |
resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" | ||
integrity sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac= | ||
|
||
fs-extra@^9.0.1: | ||
version "9.0.1" | ||
resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.0.1.tgz#910da0062437ba4c39fedd863f1675ccfefcb9fc" | ||
integrity sha512-h2iAoN838FqAFJY2/qVpzFXy+EBxfVE220PalAqQLDVsFOHLJrZvut5puAbCdNv6WJk+B8ihI+k0c7JK5erwqQ== | ||
dependencies: | ||
at-least-node "^1.0.0" | ||
graceful-fs "^4.2.0" | ||
jsonfile "^6.0.1" | ||
universalify "^1.0.0" | ||
|
||
fs.realpath@^1.0.0: | ||
version "1.0.0" | ||
resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" | ||
|
@@ -1827,7 +1817,7 @@ got@^9.6.0: | |
to-readable-stream "^1.0.0" | ||
url-parse-lax "^3.0.0" | ||
|
||
[email protected], graceful-fs@^4.0.0, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0: | ||
[email protected], graceful-fs@^4.0.0, graceful-fs@^4.1.15, graceful-fs@^4.1.2: | ||
version "4.2.3" | ||
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.3.tgz#4a12ff1b60376ef09862c2093edd908328be8423" | ||
integrity sha512-a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ== | ||
|
@@ -2220,6 +2210,11 @@ is-path-inside@^3.0.1: | |
resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.2.tgz#f5220fc82a3e233757291dddc9c5877f2a1f3017" | ||
integrity sha512-/2UGPSgmtqwo1ktx8NDHjuPwZWmHhO+gj0f93EkhLB5RgW9RZevWYYlIkS6zePc6U2WpOdQYIwHe9YC4DWEBVg== | ||
|
||
is-plain-obj@^2.0.0: | ||
version "2.1.0" | ||
resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287" | ||
integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA== | ||
|
||
is-plain-object@^3.0.0: | ||
version "3.0.0" | ||
resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-3.0.0.tgz#47bfc5da1b5d50d64110806c199359482e75a928" | ||
|
@@ -2370,15 +2365,6 @@ json-stable-stringify-without-jsonify@^1.0.1: | |
resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" | ||
integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE= | ||
|
||
jsonfile@^6.0.1: | ||
version "6.0.1" | ||
resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.0.1.tgz#98966cba214378c8c84b82e085907b40bf614179" | ||
integrity sha512-jR2b5v7d2vIOust+w3wtFKZIfpC2pnRmFAhAC/BuweZFQR8qZzxH1OyrQ10HmdVYiXWkYUqPVsz91cG7EL2FBg== | ||
dependencies: | ||
universalify "^1.0.0" | ||
optionalDependencies: | ||
graceful-fs "^4.1.6" | ||
|
||
jsx-ast-utils@^2.1.0: | ||
version "2.2.3" | ||
resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-2.2.3.tgz#8a9364e402448a3ce7f14d357738310d9248054f" | ||
|
@@ -2454,6 +2440,16 @@ load-json-file@^5.2.0: | |
strip-bom "^3.0.0" | ||
type-fest "^0.3.0" | ||
|
||
load-json-file@^6.2.0: | ||
version "6.2.0" | ||
resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-6.2.0.tgz#5c7770b42cafa97074ca2848707c61662f4251a1" | ||
integrity sha512-gUD/epcRms75Cw8RT1pUdHugZYM5ce64ucs2GEISABwkRsOQr0q2wm/MV2TKThycIe5e0ytRweW2RZxclogCdQ== | ||
dependencies: | ||
graceful-fs "^4.1.15" | ||
parse-json "^5.0.0" | ||
strip-bom "^4.0.0" | ||
type-fest "^0.6.0" | ||
|
||
locate-path@^2.0.0: | ||
version "2.0.0" | ||
resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" | ||
|
@@ -3932,6 +3928,13 @@ slice-ansi@^2.1.0: | |
astral-regex "^1.0.0" | ||
is-fullwidth-code-point "^2.0.0" | ||
|
||
sort-keys@^4.0.0: | ||
version "4.0.0" | ||
resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-4.0.0.tgz#56dc5e256637bfe3fec8db0dc57c08b1a2be22d6" | ||
integrity sha512-hlJLzrn/VN49uyNkZ8+9b+0q9DjmmYcYOnbMQtpkLrYpPwRApDPZfmqbUfJnAA3sb/nRib+nDot7Zi/1ER1fuA== | ||
dependencies: | ||
is-plain-obj "^2.0.0" | ||
|
||
source-map-resolve@^0.5.2: | ||
version "0.5.3" | ||
resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.3.tgz#190866bece7553e1f8f267a2ee82c606b5509a1a" | ||
|
@@ -4132,6 +4135,11 @@ strip-bom@^3.0.0: | |
resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" | ||
integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM= | ||
|
||
strip-bom@^4.0.0: | ||
version "4.0.0" | ||
resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-4.0.0.tgz#9c3505c1db45bcedca3d9cf7a16f5c5aa3901878" | ||
integrity sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w== | ||
|
||
strip-eof@^1.0.0: | ||
version "1.0.0" | ||
resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" | ||
|
@@ -4323,6 +4331,11 @@ type-fest@^0.3.0: | |
resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.3.1.tgz#63d00d204e059474fe5e1b7c011112bbd1dc29e1" | ||
integrity sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ== | ||
|
||
type-fest@^0.6.0: | ||
version "0.6.0" | ||
resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b" | ||
integrity sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg== | ||
|
||
type-fest@^0.8.1: | ||
version "0.8.1" | ||
resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" | ||
|
@@ -4407,11 +4420,6 @@ universal-user-agent@^6.0.0: | |
resolved "https://registry.yarnpkg.com/universal-user-agent/-/universal-user-agent-6.0.0.tgz#3381f8503b251c0d9cd21bc1de939ec9df5480ee" | ||
integrity sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w== | ||
|
||
universalify@^1.0.0: | ||
version "1.0.0" | ||
resolved "https://registry.yarnpkg.com/universalify/-/universalify-1.0.0.tgz#b61a1da173e8435b2fe3c67d29b9adf8594bd16d" | ||
integrity sha512-rb6X1W158d7pRQBg5gkR8uPaSfiids68LTJQYOtEUhoJUWBdaQHsuT/EUduxXYxcrt4r5PJ4fuHW1MHT6p0qug== | ||
|
||
[email protected], unpipe@~1.0.0: | ||
version "1.0.0" | ||
resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" | ||
|
@@ -4585,6 +4593,18 @@ write-file-atomic@^3.0.0: | |
signal-exit "^3.0.2" | ||
typedarray-to-buffer "^3.1.5" | ||
|
||
write-json-file@^4.3.0: | ||
version "4.3.0" | ||
resolved "https://registry.yarnpkg.com/write-json-file/-/write-json-file-4.3.0.tgz#908493d6fd23225344af324016e4ca8f702dd12d" | ||
integrity sha512-PxiShnxf0IlnQuMYOPPhPkhExoCQuTUNPOa/2JWCYTmBquU9njyyDuwRKN26IZBlp4yn1nt+Agh2HOOBl+55HQ== | ||
dependencies: | ||
detect-indent "^6.0.0" | ||
graceful-fs "^4.1.15" | ||
is-plain-obj "^2.0.0" | ||
make-dir "^3.0.0" | ||
sort-keys "^4.0.0" | ||
write-file-atomic "^3.0.0" | ||
|
||
[email protected]: | ||
version "1.0.3" | ||
resolved "https://registry.yarnpkg.com/write/-/write-1.0.3.tgz#0800e14523b923a387e415123c865616aae0f5c3" | ||
|