first commit

This commit is contained in:
2024-03-10 14:58:35 +01:00
commit daf0d31efd
46 changed files with 19872 additions and 0 deletions

27
.gitignore vendored Normal file
View File

@@ -0,0 +1,27 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# dependencies
/node_modules
/.pnp
.pnp.js
# testing
/coverage
# production
/build
# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# configuration files
config.js
.env

70
README.md Normal file
View File

@@ -0,0 +1,70 @@
# Getting Started with Create React App
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
## Available Scripts
In the project directory, you can run:
### `npm start`
Runs the app in the development mode.\
Open [http://localhost:3000](http://localhost:3000) to view it in your browser.
The page will reload when you make changes.\
You may also see any lint errors in the console.
### `npm test`
Launches the test runner in the interactive watch mode.\
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
### `npm run build`
Builds the app for production to the `build` folder.\
It correctly bundles React in production mode and optimizes the build for the best performance.
The build is minified and the filenames include the hashes.\
Your app is ready to be deployed!
See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
### `npm run eject`
**Note: this is a one-way operation. Once you `eject`, you can't go back!**
If you aren't satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own.
You don't have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it.
## Learn More
You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
To learn React, check out the [React documentation](https://reactjs.org/).
### Code Splitting
This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting)
### Analyzing the Bundle Size
This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size)
### Making a Progressive Web App
This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app)
### Advanced Configuration
This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration)
### Deployment
This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment)
### `npm run build` fails to minify
This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify)

18661
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

44
package.json Normal file
View File

@@ -0,0 +1,44 @@
{
"name": "hsp-gdh_front",
"version": "0.1.0",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"node-fetch": "^3.3.2",
"pino": "^8.19.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.51.0",
"react-router": "^6.22.2",
"react-router-dom": "^6.22.2",
"react-scripts": "5.0.1",
"tailwindcss": "^3.4.1",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}

6
postcss.config.js Normal file
View File

@@ -0,0 +1,6 @@
module.exports = {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
}

BIN
public/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

43
public/index.html Normal file
View File

@@ -0,0 +1,43 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta
name="description"
content="Web site created using create-react-app"
/>
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
<!--
manifest.json provides metadata used when your web app is installed on a
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
-->
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
<!--
Notice the use of %PUBLIC_URL% in the tags above.
It will be replaced with the URL of the `public` folder during the build.
Only files inside the `public` folder can be referenced from the HTML.
Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>HSP-GDH</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<!--
This HTML file is a template.
If you open it directly in the browser, you will see an empty page.
You can add webfonts, meta tags, or analytics to this file.
The build step will place the bundled scripts into the <body> tag.
To begin the development, run `npm start` or `yarn start`.
To create a production bundle, use `npm run build` or `yarn build`.
-->
</body>
</html>

BIN
public/logo192.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

BIN
public/logo512.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.4 KiB

25
public/manifest.json Normal file
View File

@@ -0,0 +1,25 @@
{
"short_name": "React App",
"name": "Create React App Sample",
"icons": [
{
"src": "favicon.ico",
"sizes": "64x64 32x32 24x24 16x16",
"type": "image/x-icon"
},
{
"src": "logo192.png",
"type": "image/png",
"sizes": "192x192"
},
{
"src": "logo512.png",
"type": "image/png",
"sizes": "512x512"
}
],
"start_url": ".",
"display": "standalone",
"theme_color": "#000000",
"background_color": "#ffffff"
}

3
public/robots.txt Normal file
View File

@@ -0,0 +1,3 @@
# https://www.robotstxt.org/robotstxt.html
User-agent: *
Disallow:

BIN
src/assets/hero.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 115 KiB

View File

@@ -0,0 +1,30 @@
function Login() {
return (
<div className="bg-hero w-screen h-screen object-fit bg-cover flex justify-center items-center">
<div className="w-screen h-screen flex justify-center items-center bg-shdw">
<form action="" method="post" className="flex flex-col bg-white px-5 py-4 w-2/3 2xl:w-3/12 gap-8 rounded-lg">
<div className="text-2xl text-center">
<h2>Connexion</h2>
</div>
<div className="flex flex-row justify-between">
<div className="flex flex-col w-1/3 gap-4">
<label htmlFor="email">Email</label>
<br />
<label htmlFor="password">Mot de passe</label>
</div>
<div className="flex flex-col w-2/3 gap-4">
<input type="email" name="email" id="email" className="border-b-2 border-cyan-800"/>
<input type="password" name="password" id="password" className="border-b-2 border-cyan-800 focus:outline-none"/>
</div>
</div>
<div className="flex flex-col gap-2 justify-center items-center">
<button type="submit" className="bg-cyan-800 px-4 py-3 rounded-lg text-white">Connexion</button>
<p>Si vous n'avez pas de compte, <a href="register" className="text-blue-900">créez en un</a></p>
</div>
</form>
</div>
</div>
)
}
export default Login;

View File

@@ -0,0 +1,63 @@
import { useForm } from 'react-hook-form';
import { useState } from 'react';
// import process from 'process';
import { post } from '../../../modules/fetchManager.js';
function Register() {
const [error, setError] = useState(null);
const { register, handleSubmit} = useForm();
const onSubmit = (e) => {
if(e.password !== e.confirm_pass){
setError("Les mots de passe ne correspondent pas");
return;
}
post('users/register', e)
.then(data => {
if(data.error){
setError(data.error);
}
console.log(data);
});
}
return (
<div className="bg-hero w-screen h-screen object-fit bg-cover flex justify-center items-center">
<div className="w-screen h-screen flex justify-center items-center bg-shdw">
<form action="" onSubmit={handleSubmit(onSubmit)} method="post" className="flex flex-col bg-white px-5 py-4 w-2/3 2xl:w-3/12 gap-8 rounded-lg">
<div className="text-2xl text-center">
<h2>Inscription</h2>
</div>
<div className='flex justify-center items-center'>
{error ? <p className="text-red-600 my-4">{error}</p> : null}
</div>
<div className="flex flex-row justify-between">
<div className="flex flex-col justify-between w-1/3">
<label className="py-1" htmlFor="username">Nom d'utilisateur</label>
<label className="py-1" htmlFor="first_name">Prénom</label>
<label className="py-1" htmlFor="last_name">Nom de famille</label>
<label className="py-1" htmlFor="email">Email</label>
<label className="py-1" htmlFor="phone">Téléphone</label>
<label className="py-1" htmlFor="password">Mot de passe</label>
<label className="py-1" htmlFor="confirm_pass">Confirmation</label>
</div>
<div className="flex flex-col w-2/3 gap-4">
<input {...register("username", {required: true})} id="username" className="border-b-2 border-cyan-800 focus:outline-none" />
<input {...register("first_name", {required: true})} id="first_name" className="border-b-2 border-cyan-800 focus:outline-none"/>
<input {...register("last_name", {required: true})} id="last_name" className="border-b-2 border-cyan-800 focus:outline-none"/>
<input type="email" {...register("email", {required: true})} id="email" className="border-b-2 border-cyan-800 focus:outline-none"/>
<input type="tel" {...register("phone")} id="phone" className="border-b-2 border-cyan-800 focus:outline-none" />
<input type="password" {...register("password", {required: true})} id="password" className="border-b-2 border-cyan-800 focus:outline-none"/>
<input type="password" {...register("confirm_pass", {required: true})} id="confirm_pass" className="border-b-2 border-cyan-800 focus:outline-none"/>
</div>
</div>
<div className="flex flex-col gap-2 justify-center items-center">
<button type="submit" className="bg-cyan-800 px-4 py-3 rounded-lg text-white">Connexion</button>
<p>Vous avez déjà un compte, <a href="login" className="text-blue-900">connectez-vous</a></p>
</div>
</form>
</div>
</div>
);
}
export default Register;

View File

@@ -0,0 +1,11 @@
import HeadTitle from "../head-title";
function Appointment() {
return (
<div>
<HeadTitle title="Rendez-vous"/>
</div>
);
}
export default Appointment;

View File

@@ -0,0 +1,9 @@
function HeadTitle({title}) {
return(
<div className="text-4xl text-center">
<h1 className="min-h-16">{title}</h1>
</div>
)
}
export default HeadTitle;

View File

@@ -0,0 +1,11 @@
import HeadTitle from "../head-title"
function Home() {
return(
<div className="">
<HeadTitle title="Accueil"/>
</div>
)
}
export default Home;

View File

@@ -0,0 +1,18 @@
import Navbarre from "./navbarre";
import Layout from "./layout";
import PageHandler from "./page-handler";
import { useState } from "react";
function Dashboard() {
const [page, setPage] = useState("home");
return(
<div>
<Navbarre setPage={setPage}/>
<Layout>
<PageHandler page={page}/>
</Layout>
</div>
);
}
export default Dashboard;

View File

@@ -0,0 +1,9 @@
function Layout({children}) {
return(
<main className="fixed top-0 right-0 min-h-full w-5/6 p-4">
{children}
</main>
)
}
export default Layout;

View File

@@ -0,0 +1,11 @@
import HeadTitle from "../head-title";
function MedicalFile() {
return (
<div>
<HeadTitle title="Dossier Médical"/>
</div>
);
}
export default MedicalFile;

View File

@@ -0,0 +1,48 @@
function Navbarre({setPage}) {
const handleClick = (e) => {
// e.preventDefault();
setPage(e.target.getAttribute("id"));
};
return (
<aside className="fixed left-0 top-0 h-screen w-1/6 bg-cyan-800 flex flex-col justify-between items-center">
<div className="py-10 text-center text-3xl flex flex-col gap-5 text-white">
<div className="h-36 w-36 bg-gray-400 rounded-full">
</div>
<div>
<h3 className="min-h-10">John Doe</h3>
</div>
</div>
<div className="text-2xl text-white">
<ul id="dash-nav">
<li className="relative my-4 hover:text-green-500 hover:cursor-pointer z-10" id="home" onClick={handleClick}>
<p className="transition-all duration-500" id="home">Accueil</p>
<div className="w-full h-1 bg-white mt-1" id="home"></div>
<div className="absolute h-1 w-0 bg-green-500 mt-1 z-10 bottom-0 left-0 transition-all duration-500" id="home"></div>
</li>
<li className="relative my-4 hover:text-green-500 hover:cursor-pointer" id="appointment" onClick={handleClick}>
<p className="transition duration-500" id="appointment">Rendez-vous</p>
<div className="w-full h-1 bg-white mt-1" id="appointment"></div>
<div className="absolute h-1 w-0 bg-green-500 mt-1 z-10 bottom-0 left-0 transition-all duration-500" id="appointment"></div>
</li>
<li className="relative my-4 hover:text-green-500 hover:cursor-pointer" id="prescription" onClick={handleClick}>
<p className="transition duration-500" id="prescription">Préscriptions</p>
<div className="w-full h-1 bg-white mt-1" id="prescription"></div>
<div className="absolute h-1 w-0 bg-green-500 mt-1 z-10 bottom-0 left-0 transition-all duration-500" id="prescription"></div>
</li>
<li className="relative my-4 hover:text-green-500 hover:cursor-pointer" id="medical-file" onClick={handleClick}>
<p className="transition duration-500" id="medical-file">Dossier Médical</p>
<div className="w-full h-1 bg-white mt-1" id="medical-file"></div>
<div className="absolute h-1 w-0 bg-green-500 mt-1 z-10 bottom-0 left-0 transition-all duration-500" id="medical-file"></div>
</li>
</ul>
</div>
<div className="py-24">
<button className="bg-red-500 text-white p-5 rounded-lg text-3xl">Déconnexion</button>
</div>
</aside>
)
}
export default Navbarre;

View File

@@ -0,0 +1,22 @@
import Home from "../home";
import Prescription from "../prescription";
import MedicalFile from "../medical-file";
import Appointment from "../appointment";
function PageHandler({page}) {
switch (page) {
case "home":
return <Home />;
case "prescription":
return <Prescription />;
case "medical-file":
return <MedicalFile />;
case "appointment":
return <Appointment />;
default:
return <Home />;
}
}
export default PageHandler;

View File

@@ -0,0 +1,11 @@
import HeadTitle from "../head-title";
function Prescription() {
return (
<div>
<HeadTitle title="Préscription"/>
</div>
);
}
export default Prescription;

View File

@@ -0,0 +1,14 @@
import Header from "../vitrine/header";
import Footer from "../vitrine/footer";
function Layout({children}) {
return (
<div className="min-h-screen">
<Header />
{children}
<Footer />
</div>
)
}
export default Layout;

View File

@@ -0,0 +1,9 @@
function Logo() {
return(
<div className="h-32 w-32 md:h-12 md:w-12 bg-black rounded-full">
</div>
)
}
export default Logo;

View File

@@ -0,0 +1,9 @@
function Footer() {
return (
<footer>
<p>© 2021</p>
</footer>
)
}
export default Footer;

View File

@@ -0,0 +1,13 @@
import Navbarre from "../navbarre";
import Hero from "../hero";
function Header() {
return (
<div className="h-screen flex">
<Navbarre />
<Hero />
</div>
)
}
export default Header;

View File

@@ -0,0 +1,11 @@
function Hero() {
return (
<div className="bg-hero object-fit bg-cover h-full w-full">
<div className="bg-shdw flex justify-center items-center h-full w-full text-6xl text-white">
<h1 className="min-h-20 h-auto max-h-96 w-full text-center">Hôpital Sud Paris</h1>
</div>
</div>
)
}
export default Hero;

View File

@@ -0,0 +1,11 @@
import Layout from "../../layout";
function Home () {
return (
<Layout>
<h1>Content</h1>
</Layout>
);
}
export default Home;

View File

@@ -0,0 +1,9 @@
function NavListItem({ children }) {
return (
<li className="py-5 md:py-0">
{children}
</li>
);
}
export default NavListItem;

View File

@@ -0,0 +1,47 @@
import { useState} from "react";
import NavListItem from "../nav-li";
import Logo from "../../logo";
function Navbarre() {
const [isOpen, setIsOpen] = useState(false);
const classList = "transition-all flex flex-col justify-between h-screen fixed bg-white md:top-0 md:left-0 md:right-0 md:flex-row md:justify-between md:h-24 items-center py-24 md:px-5 md:py-4 w-full text-3xl md:text-xl shadow-xl z-10";
const classOpen = classList + " top-0";
const classClose = classList + " top-mfull";
const toggle = () => {
setIsOpen(!isOpen);
}
return (
<div className="h-24 relative shadow-xl md:shadow-none">
<div className="md:hidden fixed top-0 left-0 right-0 z-20 flex flex-row-reverse justify-between items-center h-24 px-5 bg-white">
<button onClick={toggle}className="flex flex-col justify-around items-center gap-3 py-3">
<div className="h-1 w-12 bg-black rounded-full"></div>
<div className="h-1 w-12 bg-black rounded-full"></div>
<div className="h-1 w-12 bg-black rounded-full"></div>
</button>
<div className={isOpen ? "hidden" : ""}>
<div className="h-20 w-20 md:h-12 md:w-12 bg-black rounded-full"></div>
</div>
</div>
<nav className={isOpen ? classOpen : classClose}>
<Logo />
<ul className="flex flex-col md:flex-row justify-between items-center list-none font-semibold w-full md:w-1/2">
<NavListItem><a href="./">Accueil</a></NavListItem>
<NavListItem><a href="./">A propos</a></NavListItem>
<NavListItem><a href="./">Services</a></NavListItem>
<NavListItem><a href="./">Contact</a></NavListItem>
</ul>
<div>
<a href="login">
<button className="px-4 py-3 bg-cyan-800 rounded-xl text-white">
Connexion
</button>
</a>
</div>
</nav>
</div>
)
}
export default Navbarre;

11
src/index.css Normal file
View File

@@ -0,0 +1,11 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
* {
overflow-x: hidden;
}
#dash-nav > li:hover > div.absolute {
width: 100%;
}

37
src/index.js Normal file
View File

@@ -0,0 +1,37 @@
import React from 'react';
import ReactDOM from 'react-dom/client';
import {
createBrowserRouter,
RouterProvider,
} from "react-router-dom";
import './index.css';
import Home from './components/vitrine/home';
import Login from './components/auth/login';
import Register from './components/auth/register';
import Dashboard from './components/dashboard';
const router = createBrowserRouter([
{
path: "/",
element: <Home />,
},
{
path: "login",
element: <Login />,
},
{
path: "register",
element: <Register />,
},
{
path: "dashboard",
element: <Dashboard />,
}
]);
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(
<React.StrictMode>
<RouterProvider router={router} />
</React.StrictMode>
);

1
src/logo.svg Normal file
View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 841.9 595.3"><g fill="#61DAFB"><path d="M666.3 296.5c0-32.5-40.7-63.3-103.1-82.4 14.4-63.6 8-114.2-20.2-130.4-6.5-3.8-14.1-5.6-22.4-5.6v22.3c4.6 0 8.3.9 11.4 2.6 13.6 7.8 19.5 37.5 14.9 75.7-1.1 9.4-2.9 19.3-5.1 29.4-19.6-4.8-41-8.5-63.5-10.9-13.5-18.5-27.5-35.3-41.6-50 32.6-30.3 63.2-46.9 84-46.9V78c-27.5 0-63.5 19.6-99.9 53.6-36.4-33.8-72.4-53.2-99.9-53.2v22.3c20.7 0 51.4 16.5 84 46.6-14 14.7-28 31.4-41.3 49.9-22.6 2.4-44 6.1-63.6 11-2.3-10-4-19.7-5.2-29-4.7-38.2 1.1-67.9 14.6-75.8 3-1.8 6.9-2.6 11.5-2.6V78.5c-8.4 0-16 1.8-22.6 5.6-28.1 16.2-34.4 66.7-19.9 130.1-62.2 19.2-102.7 49.9-102.7 82.3 0 32.5 40.7 63.3 103.1 82.4-14.4 63.6-8 114.2 20.2 130.4 6.5 3.8 14.1 5.6 22.5 5.6 27.5 0 63.5-19.6 99.9-53.6 36.4 33.8 72.4 53.2 99.9 53.2 8.4 0 16-1.8 22.6-5.6 28.1-16.2 34.4-66.7 19.9-130.1 62-19.1 102.5-49.9 102.5-82.3zm-130.2-66.7c-3.7 12.9-8.3 26.2-13.5 39.5-4.1-8-8.4-16-13.1-24-4.6-8-9.5-15.8-14.4-23.4 14.2 2.1 27.9 4.7 41 7.9zm-45.8 106.5c-7.8 13.5-15.8 26.3-24.1 38.2-14.9 1.3-30 2-45.2 2-15.1 0-30.2-.7-45-1.9-8.3-11.9-16.4-24.6-24.2-38-7.6-13.1-14.5-26.4-20.8-39.8 6.2-13.4 13.2-26.8 20.7-39.9 7.8-13.5 15.8-26.3 24.1-38.2 14.9-1.3 30-2 45.2-2 15.1 0 30.2.7 45 1.9 8.3 11.9 16.4 24.6 24.2 38 7.6 13.1 14.5 26.4 20.8 39.8-6.3 13.4-13.2 26.8-20.7 39.9zm32.3-13c5.4 13.4 10 26.8 13.8 39.8-13.1 3.2-26.9 5.9-41.2 8 4.9-7.7 9.8-15.6 14.4-23.7 4.6-8 8.9-16.1 13-24.1zM421.2 430c-9.3-9.6-18.6-20.3-27.8-32 9 .4 18.2.7 27.5.7 9.4 0 18.7-.2 27.8-.7-9 11.7-18.3 22.4-27.5 32zm-74.4-58.9c-14.2-2.1-27.9-4.7-41-7.9 3.7-12.9 8.3-26.2 13.5-39.5 4.1 8 8.4 16 13.1 24 4.7 8 9.5 15.8 14.4 23.4zM420.7 163c9.3 9.6 18.6 20.3 27.8 32-9-.4-18.2-.7-27.5-.7-9.4 0-18.7.2-27.8.7 9-11.7 18.3-22.4 27.5-32zm-74 58.9c-4.9 7.7-9.8 15.6-14.4 23.7-4.6 8-8.9 16-13 24-5.4-13.4-10-26.8-13.8-39.8 13.1-3.1 26.9-5.8 41.2-7.9zm-90.5 125.2c-35.4-15.1-58.3-34.9-58.3-50.6 0-15.7 22.9-35.6 58.3-50.6 8.6-3.7 18-7 27.7-10.1 5.7 19.6 13.2 40 22.5 60.9-9.2 20.8-16.6 41.1-22.2 60.6-9.9-3.1-19.3-6.5-28-10.2zM310 490c-13.6-7.8-19.5-37.5-14.9-75.7 1.1-9.4 2.9-19.3 5.1-29.4 19.6 4.8 41 8.5 63.5 10.9 13.5 18.5 27.5 35.3 41.6 50-32.6 30.3-63.2 46.9-84 46.9-4.5-.1-8.3-1-11.3-2.7zm237.2-76.2c4.7 38.2-1.1 67.9-14.6 75.8-3 1.8-6.9 2.6-11.5 2.6-20.7 0-51.4-16.5-84-46.6 14-14.7 28-31.4 41.3-49.9 22.6-2.4 44-6.1 63.6-11 2.3 10.1 4.1 19.8 5.2 29.1zm38.5-66.7c-8.6 3.7-18 7-27.7 10.1-5.7-19.6-13.2-40-22.5-60.9 9.2-20.8 16.6-41.1 22.2-60.6 9.9 3.1 19.3 6.5 28.1 10.2 35.4 15.1 58.3 34.9 58.3 50.6-.1 15.7-23 35.6-58.4 50.6zM320.8 78.4z"/><circle cx="420.9" cy="296.5" r="45.7"/><path d="M520.5 78.1z"/></g></svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@@ -0,0 +1,48 @@
import cron from 'node-cron';
const daysOfWeek = ['sunday', 'monday', 'tuesday', 'wednesday', 'thursday', 'friday', 'saturday'];
const hoursOfDay = [...Array(24).keys()].map(hour => hour.toString());
const minutesOfHour = [...Array(60).keys()].map(minute => minute.toString());
function toCronExpression(str) {
switch (str.toLowerCase()) {
case 'everyfiveseconds': {
return '*/5 * * * * *';
}
case 'everythirtyseconds': {
return '*/30 * * * * *';
}
case 'everyminute': {
return '* * * * *';
}
case 'everyfiveminutes': {
return '*/5 * * * *';
}
case 'everyfifteenminutes': {
return '*/15 * * * *';
}
case 'everythirtyminutes': {
return '*/30 * * * *';
}
case 'everyday': {
return '0 0 * * *';
}
case 'weekdays': {
return '0 0 * * 1-5';
}
case 'weekends': {
return '0 0 * * 6,7';
}
default: {
const [day, hour, minute] = str.toLowerCase().split(' ');
const dayIndex = daysOfWeek.indexOf(day);
const hourIndex = hoursOfDay.indexOf(hour);
const minuteIndex = minutesOfHour.indexOf(minute);
return `${minuteIndex} ${hourIndex} * * ${dayIndex}`;
}
}
}
export function createCron(rate, exec) {
cron.schedule(toCronExpression(rate), exec);
}

View File

@@ -0,0 +1,26 @@
import mysql from 'mysql2';
const connection = mysql.createConnection({
host: process.env.DATABASE_HOST,
user: process.env.DATABASE_USER,
password: process.env.DATABASE_PASSWORD,
database: process.env.DATABASE_NAME,
});
const pool = mysql.createPool({
host: process.env.DATABASE_HOST,
user: process.env.DATABASE_USER,
password: process.env.DATABASE_PASSWORD,
database: process.env.DATABASE_NAME,
}).promise();
function createPool(host, user, password, db) {
const newPool = mysql.createPool({
host: host,
user: user,
password: password,
database: db,
}).promise();
return newPool;
}
export { connection, pool, createPool };

View File

@@ -0,0 +1,77 @@
import { error } from './logManager';
import config from '../config.js';
function selectUrl(url) {
return url.includes('http') ? url : `${config.api}/${url}`;
}
async function get(url, token = 'none') {
const options = {
method: 'GET',
headers: { 'Content-Type': 'application/json', authorization: `${token}` },
};
return await fetch(selectUrl(url), options)
.then(res => res.json())
.then(json => {
return json;
})
.catch(err => error(err));
}
async function post(url, body, token = 'none') {
const options = {
method: 'POST',
mode: 'cors',
headers: { 'Content-Type': 'application/json', authorization: `${token}` },
body: JSON.stringify(body),
};
console.log(body);
return await fetch(selectUrl(url), options)
.then(res => res.json())
.then(json => {
return json;
})
.catch(err => error(err));
}
async function patch(url, body, token = 'none') {
const options = {
method: 'PATCH',
mode: 'cors',
headers: { 'Content-Type': 'application/json', authorization: `${token}` },
body: JSON.stringify(body),
};
return await fetch(selectUrl(url), options)
.then(res => res.json())
.then(json => {
return json;
})
.catch(err => error(err));
}
async function put(url, body, token = 'none') {
const options = {
method: 'PUT',
mode: 'cors',
headers: { 'Content-Type': 'application/json', authorization: `${token}` },
body: JSON.stringify(body),
};
return await fetch(selectUrl(url), options)
.then(res => res.json())
.then(json => {
return json;
})
.catch(err => error(err));
}
export {
get,
post,
patch,
put,
};

View File

@@ -0,0 +1,83 @@
import fs from 'fs';
import { Readable } from 'stream';
import { finished } from 'stream/promises';
import { random } from './random';
function fileExist(path) {
try {
fs.readFileSync(path);
return true;
}
catch (err) {
return false;
}
}
function fileDelete(path) {
try {
fs.unlinkSync(path);
return true;
}
catch (err) {
return false;
}
}
async function fileDownload(url, path) {
try {
const stream = fs.createWriteStream(path);
const { body } = await fetch(url);
await finished(Readable.fromWeb(body).pipe(stream));
return true;
}
catch (err) {
return false;
}
}
function folderExist(path) {
try {
if (fs.existsSync(path)) {
return true;
}
else {
return false;
}
}
catch (err) {
return false;
}
}
function getFilesFromFolder(path) {
try {
return fs.readdirSync(path);
}
catch (err) {
return false;
}
}
function randomFileFromFolder(path) {
try {
if (getFilesFromFolder(path)) {
return random(0, getFilesFromFolder(path).length);
}
else {
return false;
}
}
catch (err) {
return false;
}
}
export {
fileExist,
fileDelete,
fileDownload,
folderExist,
getFilesFromFolder,
randomFileFromFolder,
};

View File

@@ -0,0 +1,30 @@
import dns from 'dns';
export function isEmailDomainValid(email) {
const domain = email.split('@')[1];
return new Promise((resolve, reject) => {
dns.lookup(domain, (err, address) => {
if (err) {
reject(err);
}
else {
const isIPAddress = /^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$/.test(address);
resolve(isIPAddress);
}
});
});
}
export function isValidEmail(email) {
const emailRegex = /\S+@\S+\.\S+/;
return emailRegex.test(email);
}
export function isNumber(x) {
return /^-?[\d.]+(?:e-?\d+)?$/.test(x);
}
export function isPhoneNumber(phone) {
const phoneRegex = /^\d{10}$/;
return phoneRegex.test(phone);
}

19
src/modules/logManager.js Normal file
View File

@@ -0,0 +1,19 @@
import pino from 'pino';
const logger = pino();
export function log(x) {
logger.info(x);
}
export function debug(x) {
logger.debug(x);
}
export function warn(x) {
logger.warn(x);
}
export function error(x) {
logger.error(x);
}

View File

@@ -0,0 +1,70 @@
import nodemailer from 'nodemailer';
import { random } from './random';
const transporter = nodemailer.createTransport({
host: process.env.SMTP,
port: 465,
secure: true,
auth: {
user: process.env.MAIL,
pass: process.env.MAIL_PASS,
},
});
function sendMail(email, head, body) {
try {
// setup email data
const mailOptions = {
from: `"AirJet" <${process.env.MAIL}>`,
to: email,
subject: head,
text: body,
};
// send mail with defined transport object
transporter.sendMail(mailOptions, (error, info) => {
if (error) {
console.log(error);
}
else {
console.log('Email sent: ' + info.response);
}
});
return true;
}
catch (err) {
return false;
}
}
function sendVerification(email, userId, type = 'register', code = null) {
try {
code ? code : random(100000, 999999);
let title, body;
switch (type) {
case 'email':
title = 'Your verification code for HSP-GDH';
body = `Verification code: ${code}\nLink: ${process.env.DOMAIN}/email/verify?code=${code}`;
break;
case 'password':
title = 'Your password reset code for HSP-GDH';
body = `Verification code: ${code}\nLink: ${process.env.DOMAIN}/password/reset?u=${userId}&c=${code}`;
break;
case '2fa':
title = 'Your 2FA code for HSP-GDH';
body = `Verification code: ${code}`;
break;
default:
return false;
}
if (sendMail(email, title, body)) return code;
return false;
}
catch (err) {
return false;
}
}
export {
sendMail,
sendVerification,
};

View File

@@ -0,0 +1,83 @@
import { pool } from './databaseManager.js';
import { respondWithStatus } from './requestHandler.js';
import { error } from './logManager.js';
export async function userExists(userId) {
try {
const [user] = await pool.execute('SELECT * FROM users WHERE id = ? LIMIT 1', [userId]);
if (user.length === 0) return false;
return true;
}
catch (err) {
error(err);
return false;
}
}
export async function isBanned(userId) {
try {
const [bannedUser] = await pool.execute('SELECT * FROM bans WHERE user_id = ? LIMIT 1', [userId]);
if (bannedUser.length > 0) return true;
return false;
}
catch (err) {
error(err);
return true;
}
}
// permissionType is bitfield
// 1 = read
// 2 = write
// 4 = delete
export async function verifyPermissions(userId, permissionName, permissionType) {
try {
const [perms] = await pool.execute(`SELECT r.${permissionName}_bitfield AS permissionBitfield FROM users u INNER JOIN user_roles ur ON u.id = ur.user_id INNER JOIN roles r ON ur.role_id = r.id WHERE u.id = ?`, [userId]);
for (const row of perms) {
if (row.permissionBitfield & permissionType) {
return true;
}
}
}
catch (err) {
error(err);
return false;
}
}
export async function checkIfUserEmailIsVerified(userId) {
try {
const [user] = await pool.execute('SELECT email_verified FROM users WHERE id = ? LIMIT 1', [userId]);
if (user.length === 0) return false;
return user[0].email_verified;
}
catch (err) {
error(err);
return false;
}
}
export async function checkUserExists(req, res, next) {
const userId = req.userId;
if (!userExists(userId)) return await respondWithStatus(res, 404, 'User not found');
next();
}
export async function checkBanned(req, res, next) {
const userId = req.userId;
if (isBanned(userId)) return await respondWithStatus(res, 403, 'User is banned');
next();
}
export const checkPermissions = (permissionName, permissionType) => async (req, res, next) => {
const userId = req.userId;
if (!verifyPermissions(userId, permissionName, permissionType)) return await respondWithStatus(res, 403, 'Missing permission');
next();
};
export const checkEmailVerified = async (req, res, next) => {
const userId = req.userId;
if (!checkIfUserEmailIsVerified(userId)) return await respondWithStatus(res, 403, 'Email not verified');
next();
};

22
src/modules/random.js Normal file
View File

@@ -0,0 +1,22 @@
import crypto from 'crypto';
export function random(x, y) {
return crypto.randomInt(x, y + 1);
}
export function random2(min, max) {
const range = max - min + 1;
const byteLength = Math.ceil(Math.log2(range) / 8);
let randomValue;
do {
const randomBytes = crypto.randomBytes(byteLength);
randomValue = parseInt(randomBytes.toString('hex'), 16);
} while (randomValue >= range);
return randomValue + min;
}
export function randomHEX(x) {
return crypto.randomBytes(x).toString('hex');
}

View File

@@ -0,0 +1,56 @@
import rateLimit from 'express-rate-limit';
import slowDown from 'express-slow-down';
import http from 'http';
import os from 'os';
import { log } from './logManager';
const requestLimiter = rateLimit({
windowMs: 60 * 1000,
max: 5,
standardHeaders: true,
legacyHeaders: false,
message: 'Too many requests from this IP, please try again later',
});
const speedLimiter = slowDown({
windowMs: 60 * 1000,
delayAfter: 5,
delayMs: (hits) => hits * 100,
});
function checkSystemLoad(req, res, next) {
const load = os.loadavg()[0];
const cores = os.cpus().length;
const threshold = cores * 0.7;
if (load > threshold) {
log('System load too high, please try again later');
return res.status(503).send(http.STATUS_CODES[503]);
}
return next();
}
function respondWithStatus(res, statusCode, message) {
const response = { status: statusCode, message: message };
if (statusCode >= 400 && statusCode <= 599) {
response.error = http.STATUS_CODES[statusCode];
}
return res.status(statusCode).json(response);
}
function respondWithStatusJSON(res, statusCode, JSON) {
const response = { status: statusCode, JSON };
if (statusCode >= 400 && statusCode <= 599) {
response.error = http.STATUS_CODES[statusCode];
}
return res.status(statusCode).json(response);
}
export {
requestLimiter,
speedLimiter,
checkSystemLoad,
respondWithStatus,
respondWithStatusJSON,
};

View File

@@ -0,0 +1,41 @@
import jwt from 'jsonwebtoken';
import { Level } from 'level';
import { pool } from './databaseManager';
import { respondWithStatus } from './requestHandler';
const db = new Level('tokens', { valueEncoding: 'json' });
export async function generateToken(userId, password) {
const token = jwt.sign({ userId: userId, password: password }, process.env.JWT_SECRET, { expiresIn: '7d' });
await db.put(token, 'valid');
return token;
}
export async function verifyToken(req, res, next) {
const token = req.headers.authorization;
if (!token) return await respondWithStatus(res, 401, 'No token provided');
try {
const decoded = jwt.verify(token, process.env.JWT_SECRET);
req.userId = decoded.userId;
const [user] = await pool.execute('SELECT * FROM users WHERE id = ? LIMIT 1', [req.userId]);
if (user.length === 0) return await respondWithStatus(res, 404, 'User not found');
const passwordMatch = await Bun.password.verify(decoded.password, user[0].password);
if (!passwordMatch) return await respondWithStatus(res, 401, 'Token is invalid');
const tokenStatus = await db.get(token);
if (tokenStatus != 'valid') {
return await respondWithStatus(res, 401, 'Token has been revoked ');
}
next();
}
catch (error) {
return await respondWithStatus(res, 401, 'Invalid user');
}
}
export async function revokeToken(token) {
db.put(token, 'revoked');
}

23
tailwind.config.js Normal file
View File

@@ -0,0 +1,23 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
colors: {
'shdw': 'rgba(0, 0, 0, 0.5)'
},
backgroundImage: {
'hero': "url('/src/assets/hero.jpg')",
},
spacing: {
'mfull' : '-100%'
}
},
},
plugins: [],
}