create manage-view, update message zulip

This commit is contained in:
joseph le 2023-08-30 15:58:10 +07:00
parent b6bfd7e201
commit 0c66b10a6e
30 changed files with 31058 additions and 49 deletions

View File

@ -22,7 +22,8 @@
"@adonisjs/core",
"@adonisjs/lucid",
"@adonisjs/auth",
"@adonisjs/session"
"@adonisjs/session",
"@adonisjs/view"
],
"aceProviders": [
"@adonisjs/repl"
@ -40,5 +41,11 @@
},
"testProviders": [
"@japa/preset-adonis/TestsProvider"
],
"metaFiles": [
{
"pattern": "resources/views/**/*.edge",
"reloadServer": false
}
]
}

View File

@ -10,3 +10,4 @@ MYSQL_USER=lucid
MYSQL_PASSWORD=
MYSQL_DB_NAME=lucid
SESSION_DRIVER=cookie
CACHE_VIEWS=false

View File

@ -279,7 +279,7 @@ export default class ErpsController {
* @param {String} fileName url file log tren server log
* @param {Integer} line dong chua serial number trong log
* @param {Integer} range khoang dong truoc/sau line
* @author {Bearer Token} req.headers.authorization //token xac thuc
* @author {Token} req.headers.authorization //token xac thuc
*/
public async getParagraph({ request, response }: HttpContextContract) {
const { fileName, line, range } = request.all();
@ -305,7 +305,9 @@ export default class ErpsController {
}
}
public async store({}: HttpContextContract) {}
public async store({request, response}: HttpContextContract) {
}
public async show({}: HttpContextContract) {}

View File

@ -9,4 +9,6 @@ SM-
WS-X68
WS-X68
WS-X68
yellow
yellow
SM-
WS-X68

View File

@ -122,9 +122,11 @@ export async function runtimeCheckLogs(folderPath) {
if (lines.length === 0) {
console.log(`${fileName} has changed (${eventType})---Good`);
} else {
console.log(
`${fileName} has changed (${eventType})---SOS---${lines.length}`
);
let fileDetect = await LogDetectFile.findBy(
"file_name",
fileName
@ -135,20 +137,13 @@ export async function runtimeCheckLogs(folderPath) {
fileDetect?.id_ldf
);
let content = "| | Item/error | Line | Detected at | Report\n|---|:---:|:---:|:---:|:-----------:\n";
let content = "| |Detected at | Line | Item/error | Content | Report\n|---|:---:|:---:|:---:|:---:|:-----------:\n";
let spoiler = "";
let file = await fs
.readFileSync(filePath)
.toString()
?.split("\n");
if (logsDetect[0].length > 10) {
// content =
// content +
// "|1|**" +
// logsDetect[0][0].detected_content +
// "**|" +
// logsDetect[0][0].line +
// "|" +
// logsDetect[0][0].created_at +
// "|[View](https://logs.danielvu.com/api/log/showLog/" +
// fileName +
// ")\n|...|**...**|...|...|...\n";
spoiler = spoiler + "```spoiler ..."+ (logsDetect[0].length - 5) +" more items\n" + content
logsDetect[0].reverse()
@ -159,11 +154,11 @@ export async function runtimeCheckLogs(folderPath) {
"|" +
(logsDetect[0].length - index) +
"|**" +
log.detected_content +
moment(log.created_at).format("HH:mm - DD/MM") +
"**|" +
log.line +
"|" +
log.created_at +
log.detected_content + "|"+ file[log.line+1] +
"|[View](https://logs.danielvu.com/api/log/showLog/" +
fileName +
")\n";
@ -177,11 +172,11 @@ export async function runtimeCheckLogs(folderPath) {
"|" +
(logsDetect[0].length - index - 5) +
"|**" +
log.detected_content +
moment(log.created_at).format("HH:mm - DD/MM") +
"**|" +
log.line +
"|" +
log.created_at +
log.detected_content + "|"+ file[log.line+1] +
"|[View](https://logs.danielvu.com/api/log/showLog/" +
fileName +
")\n";
@ -195,14 +190,14 @@ export async function runtimeCheckLogs(folderPath) {
"|" +
(logsDetect[0].length - index) +
"|**" +
log.detected_content +
"**|" +
log.line +
"|" +
log.created_at +
"|[View](https://logs.danielvu.com/api/log/showLog/" +
fileName +
")\n";
moment(log.created_at).format("HH:mm - DD/MM") +
"**|" +
log.line +
"|" +
log.detected_content + "|"+ file[log.line+1] +
"|[View](https://logs.danielvu.com/api/log/showLog/" +
fileName +
")\n";
});
}
// setTimeout(() => {

View File

@ -20,7 +20,7 @@ const corsConfig: CorsConfig = {
| you can define a function to enable/disable it on per request basis as well.
|
*/
enabled: false,
enabled: true,
// You can also use a function that return true or false.
// enabled: (request) => request.url().startsWith('/api')

23
manage-view/.gitignore vendored Normal file
View File

@ -0,0 +1,23 @@
# 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*

70
manage-view/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)

30270
manage-view/package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

39
manage-view/package.json Normal file
View File

@ -0,0 +1,39 @@
{
"name": "manage-view",
"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",
"axios": "^1.5.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "5.0.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"
]
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

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>React App</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>

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.4 KiB

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"
}

View File

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

38
manage-view/src/App.css Normal file
View File

@ -0,0 +1,38 @@
.App {
text-align: center;
}
.App-logo {
height: 40vmin;
pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
.App-logo {
animation: App-logo-spin infinite 20s linear;
}
}
.App-header {
background-color: #282c34;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-size: calc(10px + 2vmin);
color: white;
}
.App-link {
color: #61dafb;
}
@keyframes App-logo-spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}

16
manage-view/src/App.js Normal file
View File

@ -0,0 +1,16 @@
import axios from "axios";
import React, { useEffect, useState } from "react";
import { getKeyValues } from "./api/apiLog";
import ManageValues from "./pages/ManageValues";
function App() {
return (
<div className="App">
<ManageValues/>
</div>
);
}
export default App;

View File

@ -0,0 +1,8 @@
import { render, screen } from '@testing-library/react';
import App from './App';
test('renders learn react link', () => {
render(<App />);
const linkElement = screen.getByText(/learn react/i);
expect(linkElement).toBeInTheDocument();
});

View File

@ -0,0 +1,6 @@
const API = "http://localhost:3333/api";
// const API = "https://auto.danielvu.com/api"
export const getKeyValues = API + "/getKeyValue";
export const deleteValue = API + "/deleteValue";
export const addKeyValue = API + "/addValue";

13
manage-view/src/index.css Normal file
View File

@ -0,0 +1,13 @@
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
monospace;
}

17
manage-view/src/index.js Normal file
View File

@ -0,0 +1,17 @@
import React from 'react';
import ReactDOM from 'react-dom/client';
import './index.css';
import App from './App';
import reportWebVitals from './reportWebVitals';
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(
<React.StrictMode>
<App />
</React.StrictMode>
);
// If you want to start measuring performance in your app, pass a function
// to log results (for example: reportWebVitals(console.log))
// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
reportWebVitals();

1
manage-view/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,106 @@
import axios from "axios";
import React, { useEffect, useState } from "react";
import { addKeyValue, deleteValue, getKeyValues } from "../api/apiLog";
const ManageValues = () => {
const [keyValue, setKeyValue] = useState([]);
const [key, setKey] = useState([]);
const [addValue, setAddValue] = useState({key: "CATCH_FAULTY", value:""});
const getValues = async () => {
try {
const res = await axios.post(getKeyValues);
setKeyValue(res.data.sort((a, b) => a.key.localeCompare(b.key)));
setKey(res.data?.map((obj) => obj.key));
} catch (error) {
console.log(error);
}
};
useEffect(() => {
getValues();
}, []);
return (
<div
style={{
display: "flex",
alignItems:"center",
flexFlow: "column"
}}
>
<div style={{ height: "80vh", overflow: "auto" }}>
<table>
<thead style={{width:"100%"}}>
<tr>
<th
style={{ position: "sticky", top: 0, backgroundColor: "white" }}
>
Key
</th>
<th
style={{ position: "sticky", top: 0, backgroundColor: "white", width:"400px" }}
>
Value
</th>
<th
style={{ position: "sticky", top: 0, backgroundColor: "white" }}
>
Option
</th>
</tr>
</thead>
<tbody>
{keyValue?.map((value) => (
<tr>
<td>{value.key}</td>
<td>
<input value={value.value} disabled style={{width:"100%"}}></input>
</td>
<td>
<button style={{cursor:"pointer", backgroundColor:"red", color:"white"}} onClick={async()=>{
const res = await axios.post(deleteValue, {id: value.id_key})
if(res.status !== 200){
alert(res.data)
}else{
getValues();
}
}}>Delete</button>
{/* <button style={{cursor:"pointer", backgroundColor:"green", color:"white"}}>Save</button> */}
</td>
</tr>
))}
</tbody>
</table>
</div>
<div style={{ width: "50%", display:"flex", margin:10 }}>
<select style={{ width: "35%" }} onChange={(e)=>{
setAddValue({...addValue, key:e.target.value})
}}>
{key
.filter((value, index, self) => {
return self.indexOf(value) === index;
})
?.map((u) => (
<option value={u}>{u}</option>
))}
</select>
<input placeholder="value" style={{margin:"0 5px", width:"50%"}} onChange={(e)=>{
setAddValue({...addValue, value: e.target.value})
}}></input>
<button style={{cursor:"pointer", backgroundColor:"green", color:"white"}} onClick={async()=>{
if(addValue.key !=="" && addValue.value!==""){
const res = await axios.post(addKeyValue,{key: addValue.key, value: addValue.value})
if(res.status !== 200){
alert(res.data)
}else{
getValues();
}
}else{
alert("Value is empty!")
}
}}>Add</button>
</div>
</div>
);
};
export default ManageValues;

View File

@ -0,0 +1,13 @@
const reportWebVitals = onPerfEntry => {
if (onPerfEntry && onPerfEntry instanceof Function) {
import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => {
getCLS(onPerfEntry);
getFID(onPerfEntry);
getFCP(onPerfEntry);
getLCP(onPerfEntry);
getTTFB(onPerfEntry);
});
}
};
export default reportWebVitals;

View File

@ -0,0 +1,5 @@
// jest-dom adds custom jest matchers for asserting on DOM nodes.
// allows you to do things like:
// expect(element).toHaveTextContent(/react/i)
// learn more: https://github.com/testing-library/jest-dom
import '@testing-library/jest-dom';

282
package-lock.json generated
View File

@ -13,6 +13,7 @@
"@adonisjs/lucid": "^18.4.0",
"@adonisjs/repl": "^3.1.11",
"@adonisjs/session": "^6.4.0",
"@adonisjs/view": "^6.2.0",
"axios": "^1.4.0",
"chokidar": "^3.5.3",
"fs": "^0.0.1-security",
@ -599,6 +600,19 @@
"@adonisjs/http-server": "^5.0.0"
}
},
"node_modules/@adonisjs/view": {
"version": "6.2.0",
"resolved": "https://registry.npmjs.org/@adonisjs/view/-/view-6.2.0.tgz",
"integrity": "sha512-967f0fQ0QqdHIGh8qVdWoTHbfjB21gCh+SmCbuBWk1etpO0xTGgA2P1iDkBp/9Cd8BUTyhJX2TamKTsUP8FraA==",
"dependencies": {
"edge-error": "^2.0.8",
"edge-supercharged": "^3.1.1",
"edge.js": "^5.5.0"
},
"peerDependencies": {
"@adonisjs/core": "^5.7.0"
}
},
"node_modules/@apidevtools/json-schema-ref-parser": {
"version": "9.1.2",
"resolved": "https://registry.npmjs.org/@apidevtools/json-schema-ref-parser/-/json-schema-ref-parser-9.1.2.tgz",
@ -1075,6 +1089,14 @@
"integrity": "sha512-mG0hnQlxgflvxyM6t/XO8z/FwotsYRXPhtLZ3cz3iyk4t8xaNtOihSANBcvqdkxZCtGBvotNIf/GnES9hvlfSQ==",
"dev": true
},
"node_modules/@poppinss/inspect": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@poppinss/inspect/-/inspect-1.0.1.tgz",
"integrity": "sha512-kLeEaBSGhlleyYvKc7c9s3uE6xv7cwyulE0EgHf4jU/CL96h0yC4mkdw1wvC1l1PYYQozCGy46FwMBAAMOobCA==",
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/@poppinss/manager": {
"version": "5.0.2",
"resolved": "https://registry.npmjs.org/@poppinss/manager/-/manager-5.0.2.tgz",
@ -1737,6 +1759,14 @@
"node": ">=8"
}
},
"node_modules/astring": {
"version": "1.8.6",
"resolved": "https://registry.npmjs.org/astring/-/astring-1.8.6.tgz",
"integrity": "sha512-ISvCdHdlTDlH5IpxQJIex7BWBywFWgjJSVdwst+/iQCoEYnyOaQ95+X1JGshuBjGp6nxKUy1jMgE3zPqN7fQdg==",
"bin": {
"astring": "bin/astring"
}
},
"node_modules/async-retry": {
"version": "1.3.3",
"resolved": "https://registry.npmjs.org/async-retry/-/async-retry-1.3.3.tgz",
@ -1953,11 +1983,30 @@
"ieee754": "^1.2.1"
}
},
"node_modules/buffer-alloc": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz",
"integrity": "sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==",
"dependencies": {
"buffer-alloc-unsafe": "^1.1.0",
"buffer-fill": "^1.0.0"
}
},
"node_modules/buffer-alloc-unsafe": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz",
"integrity": "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg=="
},
"node_modules/buffer-equal-constant-time": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz",
"integrity": "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA=="
},
"node_modules/buffer-fill": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz",
"integrity": "sha512-T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ=="
},
"node_modules/buffer-from": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz",
@ -2813,6 +2862,94 @@
"safe-buffer": "^5.0.1"
}
},
"node_modules/edge-error": {
"version": "2.0.8",
"resolved": "https://registry.npmjs.org/edge-error/-/edge-error-2.0.8.tgz",
"integrity": "sha512-ORKH7rn/LEfgo0qrgoMMwFPfestNFvTO+dRLDmS+zgulhd9BVXfv/p+V6K3OyEeu2L0ysYp/71uHB31GIDe68A=="
},
"node_modules/edge-lexer": {
"version": "5.0.2",
"resolved": "https://registry.npmjs.org/edge-lexer/-/edge-lexer-5.0.2.tgz",
"integrity": "sha512-MSpv6JRPD96eZl0uPo8gIvE9cPAXb1eNRfZKlQpFYJ2O8cNdZDpN8RvT2zpu4XqC63HWs/c938qc3dWN+GJhFw==",
"dependencies": {
"edge-error": "^3.0.0"
}
},
"node_modules/edge-lexer/node_modules/edge-error": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/edge-error/-/edge-error-3.0.0.tgz",
"integrity": "sha512-TJE2A6KFqBMIe3EPyl/5V8veGYcMfpEtSNKfZkrSkQAyz3kh27etQ2erU6o0lkAFqDjjUl11YVzBIO2ij5/Zhw=="
},
"node_modules/edge-parser": {
"version": "8.2.2",
"resolved": "https://registry.npmjs.org/edge-parser/-/edge-parser-8.2.2.tgz",
"integrity": "sha512-48iOLaOD4PAxIU0jnLRNXUL8G6ktO79bA4adOGXzNHg2M+mHfudFI7QPdF6IO8gW0NC1N0TPvwLWK3FVkE9bLQ==",
"dependencies": {
"acorn": "^8.8.2",
"astring": "^1.8.4",
"edge-error": "^3.0.0",
"edge-lexer": "^5.0.2",
"js-stringify": "^1.0.2"
}
},
"node_modules/edge-parser/node_modules/edge-error": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/edge-error/-/edge-error-3.0.0.tgz",
"integrity": "sha512-TJE2A6KFqBMIe3EPyl/5V8veGYcMfpEtSNKfZkrSkQAyz3kh27etQ2erU6o0lkAFqDjjUl11YVzBIO2ij5/Zhw=="
},
"node_modules/edge-supercharged": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/edge-supercharged/-/edge-supercharged-3.1.1.tgz",
"integrity": "sha512-Pxgst3UeR+0PWuTIG2QHuFgFe73TMoVMphRsa/bOmIvOkQ87cD7+VxiS9ph2KbA4djJ2ChbdgtbNiIvju5yXEw==",
"dependencies": {
"@poppinss/utils": "^3.1.3",
"slash": "^3.0.0"
}
},
"node_modules/edge-supercharged/node_modules/@poppinss/utils": {
"version": "3.3.1",
"resolved": "https://registry.npmjs.org/@poppinss/utils/-/utils-3.3.1.tgz",
"integrity": "sha512-k4MFt+4JhOWJZ9D2xpEcG/mpZyXVXYT+dSOg83vHK1xhXl+7r0IYBXRKWX2+To7/90KJaWlwpcdCAalXE8Debg==",
"dependencies": {
"@types/bytes": "^3.1.1",
"@types/he": "^1.1.2",
"buffer-alloc": "^1.2.0",
"bytes": "^3.1.0",
"change-case": "^4.1.2",
"cuid": "^2.1.8",
"flattie": "^1.1.0",
"fs-readdir-recursive": "^1.1.0",
"he": "^1.2.0",
"kind-of": "^6.0.3",
"lodash": "^4.17.21",
"ms": "^2.1.3",
"pluralize": "^8.0.0",
"require-all": "^3.0.0",
"resolve-from": "^5.0.0",
"slugify": "^1.6.1",
"truncatise": "0.0.8"
}
},
"node_modules/edge.js": {
"version": "5.5.1",
"resolved": "https://registry.npmjs.org/edge.js/-/edge.js-5.5.1.tgz",
"integrity": "sha512-lAhEdj1tW2VOJsP5X38wSHjjaXXwoteZ+8PDAJ50rAKzBxpw4QsdXK2jVzMFgRoTMUf7C+x+Tp51R9yxGTLO0w==",
"dependencies": {
"@poppinss/inspect": "^1.0.1",
"@poppinss/utils": "^5.0.0",
"edge-error": "^3.0.0",
"edge-lexer": "^5.0.2",
"edge-parser": "^8.2.1",
"js-stringify": "^1.0.2",
"macroable": "^7.0.1",
"stringify-attributes": "^2.0.0"
}
},
"node_modules/edge.js/node_modules/edge-error": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/edge-error/-/edge-error-3.0.0.tgz",
"integrity": "sha512-TJE2A6KFqBMIe3EPyl/5V8veGYcMfpEtSNKfZkrSkQAyz3kh27etQ2erU6o0lkAFqDjjUl11YVzBIO2ij5/Zhw=="
},
"node_modules/editorconfig": {
"version": "0.15.3",
"resolved": "https://registry.npmjs.org/editorconfig/-/editorconfig-0.15.3.tgz",
@ -4469,6 +4606,11 @@
"node": ">=10"
}
},
"node_modules/js-stringify": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/js-stringify/-/js-stringify-1.0.2.tgz",
"integrity": "sha512-rtS5ATOo2Q5k1G+DADISilDA6lv79zIiwFd6CcjuIxGKLFm5C+RLImRscVap9k55i+MOZwgliw+NejvkLuGD5g=="
},
"node_modules/js-tokens": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz",
@ -8430,6 +8572,16 @@
"validator": "^13.7.0"
}
},
"@adonisjs/view": {
"version": "6.2.0",
"resolved": "https://registry.npmjs.org/@adonisjs/view/-/view-6.2.0.tgz",
"integrity": "sha512-967f0fQ0QqdHIGh8qVdWoTHbfjB21gCh+SmCbuBWk1etpO0xTGgA2P1iDkBp/9Cd8BUTyhJX2TamKTsUP8FraA==",
"requires": {
"edge-error": "^2.0.8",
"edge-supercharged": "^3.1.1",
"edge.js": "^5.5.0"
}
},
"@apidevtools/json-schema-ref-parser": {
"version": "9.1.2",
"resolved": "https://registry.npmjs.org/@apidevtools/json-schema-ref-parser/-/json-schema-ref-parser-9.1.2.tgz",
@ -8829,6 +8981,11 @@
"integrity": "sha512-mG0hnQlxgflvxyM6t/XO8z/FwotsYRXPhtLZ3cz3iyk4t8xaNtOihSANBcvqdkxZCtGBvotNIf/GnES9hvlfSQ==",
"dev": true
},
"@poppinss/inspect": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@poppinss/inspect/-/inspect-1.0.1.tgz",
"integrity": "sha512-kLeEaBSGhlleyYvKc7c9s3uE6xv7cwyulE0EgHf4jU/CL96h0yC4mkdw1wvC1l1PYYQozCGy46FwMBAAMOobCA=="
},
"@poppinss/manager": {
"version": "5.0.2",
"resolved": "https://registry.npmjs.org/@poppinss/manager/-/manager-5.0.2.tgz",
@ -9371,6 +9528,11 @@
"resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz",
"integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ=="
},
"astring": {
"version": "1.8.6",
"resolved": "https://registry.npmjs.org/astring/-/astring-1.8.6.tgz",
"integrity": "sha512-ISvCdHdlTDlH5IpxQJIex7BWBywFWgjJSVdwst+/iQCoEYnyOaQ95+X1JGshuBjGp6nxKUy1jMgE3zPqN7fQdg=="
},
"async-retry": {
"version": "1.3.3",
"resolved": "https://registry.npmjs.org/async-retry/-/async-retry-1.3.3.tgz",
@ -9527,11 +9689,30 @@
"ieee754": "^1.2.1"
}
},
"buffer-alloc": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz",
"integrity": "sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==",
"requires": {
"buffer-alloc-unsafe": "^1.1.0",
"buffer-fill": "^1.0.0"
}
},
"buffer-alloc-unsafe": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz",
"integrity": "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg=="
},
"buffer-equal-constant-time": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz",
"integrity": "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA=="
},
"buffer-fill": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz",
"integrity": "sha512-T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ=="
},
"buffer-from": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz",
@ -10192,6 +10373,102 @@
"safe-buffer": "^5.0.1"
}
},
"edge-error": {
"version": "2.0.8",
"resolved": "https://registry.npmjs.org/edge-error/-/edge-error-2.0.8.tgz",
"integrity": "sha512-ORKH7rn/LEfgo0qrgoMMwFPfestNFvTO+dRLDmS+zgulhd9BVXfv/p+V6K3OyEeu2L0ysYp/71uHB31GIDe68A=="
},
"edge-lexer": {
"version": "5.0.2",
"resolved": "https://registry.npmjs.org/edge-lexer/-/edge-lexer-5.0.2.tgz",
"integrity": "sha512-MSpv6JRPD96eZl0uPo8gIvE9cPAXb1eNRfZKlQpFYJ2O8cNdZDpN8RvT2zpu4XqC63HWs/c938qc3dWN+GJhFw==",
"requires": {
"edge-error": "^3.0.0"
},
"dependencies": {
"edge-error": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/edge-error/-/edge-error-3.0.0.tgz",
"integrity": "sha512-TJE2A6KFqBMIe3EPyl/5V8veGYcMfpEtSNKfZkrSkQAyz3kh27etQ2erU6o0lkAFqDjjUl11YVzBIO2ij5/Zhw=="
}
}
},
"edge-parser": {
"version": "8.2.2",
"resolved": "https://registry.npmjs.org/edge-parser/-/edge-parser-8.2.2.tgz",
"integrity": "sha512-48iOLaOD4PAxIU0jnLRNXUL8G6ktO79bA4adOGXzNHg2M+mHfudFI7QPdF6IO8gW0NC1N0TPvwLWK3FVkE9bLQ==",
"requires": {
"acorn": "^8.8.2",
"astring": "^1.8.4",
"edge-error": "^3.0.0",
"edge-lexer": "^5.0.2",
"js-stringify": "^1.0.2"
},
"dependencies": {
"edge-error": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/edge-error/-/edge-error-3.0.0.tgz",
"integrity": "sha512-TJE2A6KFqBMIe3EPyl/5V8veGYcMfpEtSNKfZkrSkQAyz3kh27etQ2erU6o0lkAFqDjjUl11YVzBIO2ij5/Zhw=="
}
}
},
"edge-supercharged": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/edge-supercharged/-/edge-supercharged-3.1.1.tgz",
"integrity": "sha512-Pxgst3UeR+0PWuTIG2QHuFgFe73TMoVMphRsa/bOmIvOkQ87cD7+VxiS9ph2KbA4djJ2ChbdgtbNiIvju5yXEw==",
"requires": {
"@poppinss/utils": "^3.1.3",
"slash": "^3.0.0"
},
"dependencies": {
"@poppinss/utils": {
"version": "3.3.1",
"resolved": "https://registry.npmjs.org/@poppinss/utils/-/utils-3.3.1.tgz",
"integrity": "sha512-k4MFt+4JhOWJZ9D2xpEcG/mpZyXVXYT+dSOg83vHK1xhXl+7r0IYBXRKWX2+To7/90KJaWlwpcdCAalXE8Debg==",
"requires": {
"@types/bytes": "^3.1.1",
"@types/he": "^1.1.2",
"buffer-alloc": "^1.2.0",
"bytes": "^3.1.0",
"change-case": "^4.1.2",
"cuid": "^2.1.8",
"flattie": "^1.1.0",
"fs-readdir-recursive": "^1.1.0",
"he": "^1.2.0",
"kind-of": "^6.0.3",
"lodash": "^4.17.21",
"ms": "^2.1.3",
"pluralize": "^8.0.0",
"require-all": "^3.0.0",
"resolve-from": "^5.0.0",
"slugify": "^1.6.1",
"truncatise": "0.0.8"
}
}
}
},
"edge.js": {
"version": "5.5.1",
"resolved": "https://registry.npmjs.org/edge.js/-/edge.js-5.5.1.tgz",
"integrity": "sha512-lAhEdj1tW2VOJsP5X38wSHjjaXXwoteZ+8PDAJ50rAKzBxpw4QsdXK2jVzMFgRoTMUf7C+x+Tp51R9yxGTLO0w==",
"requires": {
"@poppinss/inspect": "^1.0.1",
"@poppinss/utils": "^5.0.0",
"edge-error": "^3.0.0",
"edge-lexer": "^5.0.2",
"edge-parser": "^8.2.1",
"js-stringify": "^1.0.2",
"macroable": "^7.0.1",
"stringify-attributes": "^2.0.0"
},
"dependencies": {
"edge-error": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/edge-error/-/edge-error-3.0.0.tgz",
"integrity": "sha512-TJE2A6KFqBMIe3EPyl/5V8veGYcMfpEtSNKfZkrSkQAyz3kh27etQ2erU6o0lkAFqDjjUl11YVzBIO2ij5/Zhw=="
}
}
},
"editorconfig": {
"version": "0.15.3",
"resolved": "https://registry.npmjs.org/editorconfig/-/editorconfig-0.15.3.tgz",
@ -11450,6 +11727,11 @@
"resolved": "https://registry.npmjs.org/joycon/-/joycon-3.1.1.tgz",
"integrity": "sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw=="
},
"js-stringify": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/js-stringify/-/js-stringify-1.0.2.tgz",
"integrity": "sha512-rtS5ATOo2Q5k1G+DADISilDA6lv79zIiwFd6CcjuIxGKLFm5C+RLImRscVap9k55i+MOZwgliw+NejvkLuGD5g=="
},
"js-tokens": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz",

View File

@ -26,6 +26,7 @@
"@adonisjs/lucid": "^18.4.0",
"@adonisjs/repl": "^3.1.11",
"@adonisjs/session": "^6.4.0",
"@adonisjs/view": "^6.2.0",
"axios": "^1.4.0",
"chokidar": "^3.5.3",
"fs": "^0.0.1-security",

View File

@ -24,15 +24,16 @@ import LogDetectFile from "App/Models/LogDetectFile";
import { runtimeCheckLogs } from "App/utils/runtimeCheckLogs";
import Env from "@ioc:Adonis/Core/Env";
import KeyValue from "App/Models/KeyValue";
import ErpsController from "App/Controllers/Http/ErpsController";
runtimeCheckLogs(Env.get("FOLDER_LOGS"));
Route.get("/api/list", async () => {
const a = await LogDetectFile.all();
// console.log("first")
return a;
});
// Route.get("/api/list", async () => {
// const a = await LogDetectFile.all();
// return a;
// });
//ERP get index serial number
Route.post(
"/api/getIndexSerialNumber",
"ErpsController.getIndexSerialNumber"
@ -41,40 +42,31 @@ Route.post("/api/getParagraph", "ErpsController.getParagraph").middleware(
"checkToken"
);
//Users
Route.post("/api/account/createUser", "UsersController.create");
Route.post("/api/account/checkLogin", "UsersController.checkLogin");
//Log
Route.get("/api/log/showLog/:name?", async ({ request, response }) => {
const content = await axios.get(
"http://192.168.5.7:8080/" + request.params().name
);
let listKeyValues = await KeyValue.all();
// console.log(listKeyValues)
let data = content.data.split("\n");
// console.log(data)
data.map((line, index) => {
// console.log(line)
data[index] = "<span style='background-color:pink;'>" + (index + 1) + "</span>" + line;
data[index] =
"<span style='background-color:pink;'>" + (index + 1) + "</span>" + line;
listKeyValues
.map((obj) => obj.$original.value)
.map(async (value) => {
if (line.search(value) !== -1) {
// let keyWord = "";
// line.split(" ").map((word) => {
// if (word.toLocaleLowerCase().includes(value)) {
// keyWord = keyWord + word;
// }
// });
// if (value.length === keyWord.length || value.length + 1 === keyWord.length) {
data[index] =
data[index] =
data[index].slice(0, data[index].search(value)) +
"<span style='background-color:yellow;'>" +
value +
"</span>" +
data[index].slice(data[index].search(value) + value.length);
// }
}
});
});
@ -112,3 +104,33 @@ Route.get("/api/log/showLog/:name?", async ({ request, response }) => {
</html>"
);
});
//Key-Value
Route.post("/api/getKeyValue", async ({ request, response }) => {
let data = await KeyValue.all();
response.status(200).send(data);
});
Route.post("/api/deleteValue", async ({ request, response }) => {
try {
const value = await KeyValue.findOrFail(request.all().id);
await value.delete();
response.status(200).send("DELETE VALUE SUCCESS!");
} catch (error) {
response.status(500).send("DELETE VALUE FAIL!");
}
});
Route.post("/api/addValue", async ({ request, response }) => {
try {
const value = await KeyValue.create({
key: request.all().key,
value: request.all().value,
model: "All",
});
response.status(200).send("ADD VALUE SUCCESS!");
} catch (error) {
response.status(500).send("ADD VALUE FAIL!");
}
});

View File

@ -31,7 +31,8 @@
"@japa/preset-adonis/build/adonis-typings",
"@adonisjs/lucid",
"@adonisjs/auth",
"@adonisjs/session"
"@adonisjs/session",
"@adonisjs/view"
]
}
}