diff --git a/staff/juanp-arias/unsocial/api/data/index.js b/staff/juanp-arias/unsocial/api/data/index.js new file mode 100644 index 000000000..a46d47b50 --- /dev/null +++ b/staff/juanp-arias/unsocial/api/data/index.js @@ -0,0 +1,7 @@ +import storage from './storage.js' +import uuid from './uuid.js' + +export { + storage, + uuid +} \ No newline at end of file diff --git a/staff/juanp-arias/unsocial/api/data/posts.json b/staff/juanp-arias/unsocial/api/data/posts.json new file mode 100644 index 000000000..419e9a109 --- /dev/null +++ b/staff/juanp-arias/unsocial/api/data/posts.json @@ -0,0 +1,20 @@ +[ + { + "id": "m2xahzukhr", + "image": "https://media.giphy.com/media/3ohhwfAa9rbXaZe86c/giphy.gif?cid=790b7611vkbow49vtlhlh26tztuwge5f7tsvouu717wswm5m&ep=v1_gifs_trending&rid=giphy.gif&ct=g", + "text": "dancing", + "author": "m2x63gb7wns", + "date": "2024-10-31T12:36:34.365Z", + "likes": [], + "comments": [] + }, + { + "id": "m2xcwohcvqk", + "image": "https://media.giphy.com/media/3ohhwfAa9rbXaZe86c/giphy.gif?cid=790b7611vkbow49vtlhlh26tztuwge5f7tsvouu717wswm5m&ep=v1_gifs_trending&rid=giphy.gif&ct=g", + "text": "dancing", + "author": "m2x63gb7wns", + "date": "2024-10-31T13:43:58.704Z", + "likes": [], + "comments": [] + } +] \ No newline at end of file diff --git a/staff/juanp-arias/unsocial/api/data/storage.js b/staff/juanp-arias/unsocial/api/data/storage.js new file mode 100644 index 000000000..23c6ef895 --- /dev/null +++ b/staff/juanp-arias/unsocial/api/data/storage.js @@ -0,0 +1,31 @@ +import fs from 'fs' + +export default { + get users() { + const json = fs.readFileSync('./data/users.json', 'utf-8') + + const users = JSON.parse(json) + + return users + }, + + set users(users) { + const json = JSON.stringify(users) + + fs.writeFileSync('./data/users.json', json) + }, + + get posts() { + const json = fs.readFileSync('./data/posts.json', 'utf-8') + + const posts = JSON.parse(json) + + return posts + }, + + set posts(posts) { + const json = JSON.stringify(posts) + + fs.writeFileSync('./data/posts.json', json) + } +} \ No newline at end of file diff --git a/staff/juanp-arias/unsocial/api/data/storage.test.js b/staff/juanp-arias/unsocial/api/data/storage.test.js new file mode 100644 index 000000000..2e9dc66ba --- /dev/null +++ b/staff/juanp-arias/unsocial/api/data/storage.test.js @@ -0,0 +1,11 @@ +import uuid from './uuid.js' + +import storage from './storage.js' + +storage.users = [ + { id: uuid(), name: 'Juan Pablo', email: 'juan@pablo.com', username: 'juanpablo', password: '123456' } +] + +storage.posts = [] + +console.log(storage.users) \ No newline at end of file diff --git a/staff/juanp-arias/unsocial/api/data/users.json b/staff/juanp-arias/unsocial/api/data/users.json new file mode 100644 index 000000000..38e061ed3 --- /dev/null +++ b/staff/juanp-arias/unsocial/api/data/users.json @@ -0,0 +1,23 @@ +[ + { + "id": "m2x3s1fei2j", + "name": "Juan Pablo", + "email": "juan@pablo.com", + "username": "juanpablo", + "password": "123456" + }, + { + "id": "m2x63gb7wns", + "name": "Pepito Grillo", + "email": "pepito@grillo.com", + "username": "pepitogrillo", + "password": "123456" + }, + { + "id": "m2xaj3bwtyn", + "name": "Coco Drilo", + "email": "coco@drilo.com", + "username": "cocodrilo", + "password": "123123123" + } +] \ No newline at end of file diff --git a/staff/juanp-arias/unsocial/api/data/uuid.js b/staff/juanp-arias/unsocial/api/data/uuid.js new file mode 100644 index 000000000..dda113a0e --- /dev/null +++ b/staff/juanp-arias/unsocial/api/data/uuid.js @@ -0,0 +1,3 @@ +const uuid = () => (Date.now() + Math.random()).toString(36).replace('.', '') + +export default uuid \ No newline at end of file diff --git a/staff/juanp-arias/unsocial/api/index.js b/staff/juanp-arias/unsocial/api/index.js new file mode 100644 index 000000000..3c072ff9c --- /dev/null +++ b/staff/juanp-arias/unsocial/api/index.js @@ -0,0 +1,68 @@ +import express, { json } from 'express' +import logic from './logic/index.js' + +const server = express() + +const jsonBodyParser = express.json() + +server.use(express.static('public')) + +server.post('/authenticate', jsonBodyParser, (req, res) => { + const { username, password } = req.body + + try { + const userId = logic.authenticateUser(username, password) + + res.json(userId) + } catch (error) { + res.status(401).json({ error: error.constructor.name, message: error.message }) + + console.error(error) + } +}) + +server.post('/register', jsonBodyParser, (req, res) => { + const { name, email, username, password, 'password-repeat': passwordRepeat } = req.body + + try { + logic.registerUser(name, email, username, password, passwordRepeat) + + res.status(201).send() + } catch (error) { + res.status(400).json({ error: error.constructor.name, message: error.message }) + + console.error(error) + } +}) + +server.get('/users/:userId/name', (req, res) => { + const { userId } = req.params + + try { + const name = logic.getUserName(userId) + + res.json(name) + } catch (error) { + res.status(400).json({ error: error.constructor.name, message: error.message }) + + console.error(error) + } +}) + +server.post('/posts', jsonBodyParser, (req, res) => { + const userId = req.headers.authorization.slice(6) + + const { image, text } = req.body + + try { + logic.createPost(userId, image, text) + + res.status(201).send() + } catch (error) { + res.status(400).json({ error: error.constructor.name, message: error.message }) + } +}) + + + +server.listen(7070, () => console.log('api is up')) \ No newline at end of file diff --git a/staff/juanp-arias/unsocial/api/logic/authenticateUser.js b/staff/juanp-arias/unsocial/api/logic/authenticateUser.js new file mode 100644 index 000000000..9f5a9a458 --- /dev/null +++ b/staff/juanp-arias/unsocial/api/logic/authenticateUser.js @@ -0,0 +1,16 @@ +import { storage } from '../data/index.js' +import validate from './helpers/validate.js' + +export default (username, password) => { + validate.username(username) + validate.password(password) + + const { users } = storage + + const user = users.find(user => user.username === username && user.password === password) + + if (user === undefined) + throw new Error('wrong credentials') + + return user.id +} \ No newline at end of file diff --git a/staff/juanp-arias/unsocial/api/logic/authenticateUser.test.js b/staff/juanp-arias/unsocial/api/logic/authenticateUser.test.js new file mode 100644 index 000000000..2be854b70 --- /dev/null +++ b/staff/juanp-arias/unsocial/api/logic/authenticateUser.test.js @@ -0,0 +1,8 @@ +import authenticateUser from './authenticateUser.js' + +try { + console.log(authenticateUser('juanpablo', '123456')) + console.log('logged in') +} catch (error) { + console.error(error) +} \ No newline at end of file diff --git a/staff/juanp-arias/unsocial/api/logic/createPost.js b/staff/juanp-arias/unsocial/api/logic/createPost.js new file mode 100644 index 000000000..d2ae30030 --- /dev/null +++ b/staff/juanp-arias/unsocial/api/logic/createPost.js @@ -0,0 +1,29 @@ +import validate from './helpers/validate.js' + +import { storage, uuid } from '../data/index.js' + +export default (userId, image, text) => { + validate.id(userId, 'userId') + validate.image(image) + validate.text(text) + + const { users, posts } = storage + + const found = users.some(({ id }) => id === userId) + + if (!found) throw new Error('user not found') + + const post = { + id: uuid(), + image: image, + text: text, + author: userId, + date: new Date, + likes: [], + comments: [] + } + + posts.push(post) + + storage.posts = posts +} diff --git a/staff/juanp-arias/unsocial/api/logic/createPost.test.js b/staff/juanp-arias/unsocial/api/logic/createPost.test.js new file mode 100644 index 000000000..5c3e888b3 --- /dev/null +++ b/staff/juanp-arias/unsocial/api/logic/createPost.test.js @@ -0,0 +1,7 @@ +import createPost from './createPost.js' + +try { + createPost('m2x63gb7wns', 'https://media.giphy.com/media/3ohhwfAa9rbXaZe86c/giphy.gif?cid=790b7611vkbow49vtlhlh26tztuwge5f7tsvouu717wswm5m&ep=v1_gifs_trending&rid=giphy.gif&ct=g', 'dancing') +} catch (error) { + console.error(error) +} \ No newline at end of file diff --git a/staff/juanp-arias/unsocial/api/logic/getUserName.js b/staff/juanp-arias/unsocial/api/logic/getUserName.js new file mode 100644 index 000000000..6226081ba --- /dev/null +++ b/staff/juanp-arias/unsocial/api/logic/getUserName.js @@ -0,0 +1,14 @@ +import { storage } from '../data/index.js' +import validate from './helpers/validate.js' + +export default userId => { + validate.id(userId, 'userId') + + const { users } = storage + + const user = users.find(user => user.id === userId) + + if (!user) throw new Error('user not found') + + return user.name +} \ No newline at end of file diff --git a/staff/juanp-arias/unsocial/api/logic/getUserName.test.js b/staff/juanp-arias/unsocial/api/logic/getUserName.test.js new file mode 100644 index 000000000..bb00bf8a5 --- /dev/null +++ b/staff/juanp-arias/unsocial/api/logic/getUserName.test.js @@ -0,0 +1,7 @@ +import getUserName from './getUserName.js' + +try { + console.log(getUserName('m2x3s1fei2j')) +} catch (error) { + console.error(error) +} \ No newline at end of file diff --git a/staff/juanp-arias/unsocial/api/logic/helpers/index.js b/staff/juanp-arias/unsocial/api/logic/helpers/index.js new file mode 100644 index 000000000..33ffa3938 --- /dev/null +++ b/staff/juanp-arias/unsocial/api/logic/helpers/index.js @@ -0,0 +1,5 @@ +import validate from './validate.js' + +export default { + validate +} \ No newline at end of file diff --git a/staff/juanp-arias/unsocial/api/logic/helpers/validate.js b/staff/juanp-arias/unsocial/api/logic/helpers/validate.js new file mode 100644 index 000000000..607edc38c --- /dev/null +++ b/staff/juanp-arias/unsocial/api/logic/helpers/validate.js @@ -0,0 +1,54 @@ +const validateName = name => { + if (typeof name !== 'string') throw new Error('invalid name') + if (name.length < 2) + throw new Error('invalid name length') +} + +const validateEmail = email => { + if (typeof email !== 'string') throw new Error('invalid email') + if (!/^(([^<>()[\]\.,;:\s@\"]+(\.[^<>()[\]\.,;:\s@\"]+)*)|(\".+\"))@(([^<>()[\]\.,;:\s@\"]+\.)+[^<>()[\]\.,;:\s@\"]{2,})$/i.test(email)) + throw new Error('invalid e-mail') +} + +const validateUsername = username => { + if (typeof username !== 'string') throw new Error('invalid username') + if (username.length < 4 || username.length > 12) + throw new Error('invalid username length') +} + +const validatePassword = password => { + if (typeof password !== 'string') throw new Error('invalid password') + if (password.length < 4) + throw new Error('invalid password length') +} + +const validatePasswordsMatch = (password, passwordRepeat) => { + if (typeof passwordRepeat !== 'string') throw new Error('invalid password repeat') + if (password !== passwordRepeat) + throw new Error('passwords do not match') +} + +const validateImage = image => { + if (typeof image !== 'string') throw new Error('invalid image') +} + +const validateText = text => { + if (typeof text !== 'string') throw new Error('invalid text') +} + +const validateId = (id, explain = 'id') => { + if (typeof id !== 'string') throw new Error(`invalid ${explain}`) +} + +const validate = { + name: validateName, + email: validateEmail, + username: validateUsername, + password: validatePassword, + passwordsMatch: validatePasswordsMatch, + image: validateImage, + text: validateText, + id: validateId +} + +export default validate \ No newline at end of file diff --git a/staff/juanp-arias/unsocial/api/logic/index.js b/staff/juanp-arias/unsocial/api/logic/index.js new file mode 100644 index 000000000..7fcac320e --- /dev/null +++ b/staff/juanp-arias/unsocial/api/logic/index.js @@ -0,0 +1,14 @@ +import authenticateUser from './authenticateUser.js' +import registerUser from './registerUser.js' +import getUserName from './getUserName.js' +import createPost from './createPost.js' + +const logic = { + authenticateUser, + registerUser, + getUserName, + + createPost +} + +export default logic \ No newline at end of file diff --git a/staff/juanp-arias/unsocial/api/logic/registerUser.js b/staff/juanp-arias/unsocial/api/logic/registerUser.js new file mode 100644 index 000000000..849e35fe6 --- /dev/null +++ b/staff/juanp-arias/unsocial/api/logic/registerUser.js @@ -0,0 +1,24 @@ +import { storage, uuid } from '../data/index.js' + +import validate from './helpers/validate.js' + +export default (name, email, username, password, passwordRepeat) => { + validate.name(name) + validate.email(email) + validate.username(username) + validate.password(password) + validate.passwordsMatch(password, passwordRepeat) + + const { users } = storage + + let user = users.find(user => user.username === username || user.emai === email) + + if (user !== undefined) + throw new Error('user already exists') + + user = { id: uuid(), name: name, email: email, username: username, password: password } + + users.push(user) + + storage.users = users +} \ No newline at end of file diff --git a/staff/juanp-arias/unsocial/api/logic/registerUser.test.js b/staff/juanp-arias/unsocial/api/logic/registerUser.test.js new file mode 100644 index 000000000..e3786dfce --- /dev/null +++ b/staff/juanp-arias/unsocial/api/logic/registerUser.test.js @@ -0,0 +1,7 @@ +import registerUser from './registerUser.js' + +try { + registerUser('Coco Drilo', 'coco@drilo.com', 'cocodrilo', '123123123', '123123123') +} catch (error) { + console.error(error) +} diff --git a/staff/juanp-arias/unsocial/api/package-lock.json b/staff/juanp-arias/unsocial/api/package-lock.json new file mode 100644 index 000000000..8a93a0c82 --- /dev/null +++ b/staff/juanp-arias/unsocial/api/package-lock.json @@ -0,0 +1,773 @@ +{ + "name": "api", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "api", + "version": "1.0.0", + "license": "ISC", + "dependencies": { + "express": "^4.21.1" + } + }, + "node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "license": "MIT", + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", + "license": "MIT" + }, + "node_modules/body-parser": { + "version": "1.20.3", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.3.tgz", + "integrity": "sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==", + "license": "MIT", + "dependencies": { + "bytes": "3.1.2", + "content-type": "~1.0.5", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.13.0", + "raw-body": "2.5.2", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/call-bind": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", + "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "license": "MIT", + "dependencies": { + "safe-buffer": "5.2.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.1.tgz", + "integrity": "sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", + "license": "MIT" + }, + "node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/define-data-property": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "license": "MIT", + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", + "license": "MIT" + }, + "node_modules/encodeurl": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", + "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/es-define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", + "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", + "license": "MIT", + "dependencies": { + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", + "license": "MIT" + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/express": { + "version": "4.21.1", + "resolved": "https://registry.npmjs.org/express/-/express-4.21.1.tgz", + "integrity": "sha512-YSFlK1Ee0/GC8QaO91tHcDxJiE/X4FbpAyQWkxAvG6AXCuR65YzK8ua6D9hvi/TzUfZMpc+BwuM1IPw8fmQBiQ==", + "license": "MIT", + "dependencies": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.3", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.7.1", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.3.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.3", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.10", + "proxy-addr": "~2.0.7", + "qs": "6.13.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.19.0", + "serve-static": "1.16.2", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/finalhandler": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.1.tgz", + "integrity": "sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==", + "license": "MIT", + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-intrinsic": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", + "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "license": "MIT", + "dependencies": { + "get-intrinsic": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", + "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "license": "MIT", + "dependencies": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "license": "ISC" + }, + "node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/merge-descriptors": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz", + "integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "license": "MIT", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "license": "MIT", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/object-inspect": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.2.tgz", + "integrity": "sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "license": "MIT", + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/path-to-regexp": { + "version": "0.1.10", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.10.tgz", + "integrity": "sha512-7lf7qcQidTku0Gu3YDPc8DJ1q7OOucfa/BSsIwjuh56VU7katFvuM8hULfkwB3Fns/rsVF7PwPKVw1sl5KQS9w==", + "license": "MIT" + }, + "node_modules/proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "license": "MIT", + "dependencies": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/qs": { + "version": "6.13.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz", + "integrity": "sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==", + "license": "BSD-3-Clause", + "dependencies": { + "side-channel": "^1.0.6" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/raw-body": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", + "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", + "license": "MIT", + "dependencies": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "license": "MIT" + }, + "node_modules/send": { + "version": "0.19.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.19.0.tgz", + "integrity": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==", + "license": "MIT", + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/send/node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/send/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "license": "MIT" + }, + "node_modules/serve-static": { + "version": "1.16.2", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz", + "integrity": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==", + "license": "MIT", + "dependencies": { + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.19.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/set-function-length": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", + "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", + "license": "MIT", + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "license": "ISC" + }, + "node_modules/side-channel": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", + "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4", + "object-inspect": "^1.13.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "license": "MIT", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "license": "MIT", + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "license": "MIT", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + } + } +} diff --git a/staff/juanp-arias/unsocial/api/package.json b/staff/juanp-arias/unsocial/api/package.json new file mode 100644 index 000000000..8f74a31bd --- /dev/null +++ b/staff/juanp-arias/unsocial/api/package.json @@ -0,0 +1,16 @@ +{ + "name": "api", + "version": "1.0.0", + "main": "index.js", + "type": "module", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "keywords": [], + "author": "", + "license": "ISC", + "description": "", + "dependencies": { + "express": "^4.21.1" + } +} \ No newline at end of file diff --git a/staff/juanp-arias/unsocial/api/test/authenticate-user.sh b/staff/juanp-arias/unsocial/api/test/authenticate-user.sh new file mode 100644 index 000000000..f0f11a241 --- /dev/null +++ b/staff/juanp-arias/unsocial/api/test/authenticate-user.sh @@ -0,0 +1 @@ + curl -H 'Content-Type: application/json' -d '{"username":"pepitogrillo","password":"123456"}' http://localhost:7070/authenticate -v \ No newline at end of file diff --git a/staff/juanp-arias/unsocial/api/test/create-post.sh b/staff/juanp-arias/unsocial/api/test/create-post.sh new file mode 100644 index 000000000..b5ebdb387 --- /dev/null +++ b/staff/juanp-arias/unsocial/api/test/create-post.sh @@ -0,0 +1 @@ + curl -H 'Authorization: Basic m2x63gb7wns' -H 'Content-Type: application/json' -d '{"image":"https://media.giphy.com/media/3ohhwfAa9rbXaZe86c/giphy.gif?cid=790b7611vkbow49vtlhlh26tztuwge5f7tsvouu717wswm5m&ep=v1_gifs_trending&rid=giphy.gif&ct=g","text":"dancing"}' http://localhost:7070/posts -v \ No newline at end of file diff --git a/staff/juanp-arias/unsocial/api/test/get-user-name.sh b/staff/juanp-arias/unsocial/api/test/get-user-name.sh new file mode 100644 index 000000000..5911a0766 --- /dev/null +++ b/staff/juanp-arias/unsocial/api/test/get-user-name.sh @@ -0,0 +1 @@ + curl http://localhost:7070/users/m2x63gb7wns/name -v \ No newline at end of file diff --git a/staff/juanp-arias/unsocial/api/test/register-user.sh b/staff/juanp-arias/unsocial/api/test/register-user.sh new file mode 100644 index 000000000..59b6b910a --- /dev/null +++ b/staff/juanp-arias/unsocial/api/test/register-user.sh @@ -0,0 +1 @@ + curl -H 'Content-Type: application/json' -d '{"name":"Pepito Grillo","email":"pepito@grillo.com","username":"pepitogrillo","password":"123456","password-repeat":"123456"}' http://localhost:7070/register -v \ No newline at end of file diff --git a/staff/juanp-arias/unsocial/app/.eslintrc.cjs b/staff/juanp-arias/unsocial/app/.eslintrc.cjs new file mode 100644 index 000000000..810aa8857 --- /dev/null +++ b/staff/juanp-arias/unsocial/app/.eslintrc.cjs @@ -0,0 +1,20 @@ +module.exports = { + root: true, + env: { browser: true, es2020: true }, + extends: [ + 'eslint:recommended', + 'plugin:react/recommended', + 'plugin:react/jsx-runtime', + 'plugin:react-hooks/recommended', + ], + ignorePatterns: ['dist', '.eslintrc.cjs'], + parserOptions: { ecmaVersion: 'latest', sourceType: 'module' }, + settings: { react: { version: '18.2' } }, + plugins: ['react-refresh'], + rules: { + 'react-refresh/only-export-components': [ + 'warn', + { allowConstantExport: true }, + ], + }, +} \ No newline at end of file diff --git a/staff/juanp-arias/unsocial/.gitignore b/staff/juanp-arias/unsocial/app/.gitignore similarity index 100% rename from staff/juanp-arias/unsocial/.gitignore rename to staff/juanp-arias/unsocial/app/.gitignore diff --git a/staff/juanp-arias/unsocial/README.md b/staff/juanp-arias/unsocial/app/README.md similarity index 100% rename from staff/juanp-arias/unsocial/README.md rename to staff/juanp-arias/unsocial/app/README.md diff --git a/staff/juanp-arias/unsocial/index.html b/staff/juanp-arias/unsocial/app/index.html similarity index 86% rename from staff/juanp-arias/unsocial/index.html rename to staff/juanp-arias/unsocial/app/index.html index fd495b7ba..21d2d513b 100644 --- a/staff/juanp-arias/unsocial/index.html +++ b/staff/juanp-arias/unsocial/app/index.html @@ -11,7 +11,7 @@
- +