Initial version

This commit is contained in:
Flatlogic Bot 2026-04-12 11:09:01 +00:00
commit 314c52ec08
766 changed files with 238810 additions and 0 deletions

305
.cursorrules Normal file
View File

@ -0,0 +1,305 @@
# Cursor Rules - Group 1: Development Philosophy & Coding Conventions
1. Overall Architecture & Structure:
- Enforce a clear separation of concerns between the backend and the frontend:
- **Backend**: Use Express for routing, Passport for authentication, and Swagger for API documentation. Organize code into modules such as routes, services, and helpers.
- **Example**:
- Routes: `src/routes/auth.js` for authentication routes.
- Services: `src/services/auth.js` for authentication logic.
- Helpers: `src/helpers/wrapAsync.js` for wrapping asynchronous functions.
- **Frontend**: Use Next.js with React and TypeScript. Structure components using functional components, hooks, and layouts.
- **Example**:
- Pages: `pages/index.tsx` for the main page.
- Components: `components/Header.tsx` for the header component.
- Layouts: `layouts/MainLayout.tsx` for common page layouts.
- Ensure that backend modules and frontend components are organized for reusability and maintainability:
- **Backend**: Separate business logic into services and use middleware for common tasks.
- **Frontend**: Use reusable components and hooks to manage state and lifecycle.
2. Coding Style & Formatting:
- For the backend (JavaScript):
• Use ES6+ features (const/let, arrow functions) consistently.
• Follow Prettier and ESLint configurations (e.g., consistent 2-space indentation, semicolons, and single quotes).
• Maintain clear asynchronous patterns with helper wrappers (e.g., wrapAsync).
- **Example from auth.js**:
```javascript
router.post('/signin/local', wrapAsync(async (req, res) => {
const payload = await AuthService.signin(req.body.email, req.body.password, req);
res.status(200).send(payload);
}));
```
• Document API endpoints with inline Swagger comments to ensure API clarity and consistency.
- **Example**:
```javascript
/**
* @swagger
* /api/auth/signin:
* post:
* summary: Sign in a user
* responses:
* 200:
* description: Successful login
*/
```
- For the frontend (TypeScript/React):
• Use functional components with strict typing and separation of concerns.
- **Example**:
```typescript
const Button: React.FC<{ onClick: () => void }> = ({ onClick }) => (
<button onClick={onClick}>Click me</button>
);
```
• Follow naming conventions: PascalCase for components and types/interfaces, camelCase for variables, hooks, and function names.
- **Example**:
```typescript
const useCustomHook = () => {
const [state, setState] = useState(false);
return [state, setState];
};
```
• Utilize hooks (useEffect, useState) to manage state and lifecycle in a clear and concise manner.
- **Example**:
```typescript
useEffect(() => {
console.log('Component mounted');
}, []);
```
3. Code Quality & Best Practices:
- Ensure code modularity by splitting complex logic into smaller, testable units.
- **Example**: In `auth.js`, routes are separated from business logic, which is handled in `AuthService`.
- Write self-documenting code and add comments where the logic is non-trivial.
- **Example**: Use descriptive function and variable names in `auth.js`, and add comments for complex asynchronous operations.
- Embrace declarative programming and adhere to SOLID principles.
- **Example**: In service functions, ensure each function has a single responsibility and dependencies are injected rather than hardcoded.
4. Consistency & Tools Integration:
- Leverage existing tools like Prettier and ESLint to automatically enforce style and formatting rules.
- **Example**: Use `.prettierrc` and `.eslintrc.cjs` for configuration in your project.
- Use TypeScript in the frontend to ensure type safety and catch errors early.
- **Example**: Define interfaces and types in your React components to enforce strict typing.
- Maintain uniformity in API design and error handling strategies.
- **Example**: Consistently use Passport for authentication and a common error handling middleware in `auth.js`.
## Group 2 Naming Conventions
1. File Naming and Structure:
• Frontend:
- Page Files: Use lower-case filenames (e.g., index.tsx) as prescribed by Next.js conventions.
- **Example**: `pages/index.tsx`, `pages/about.tsx`
- Component Files: Use PascalCase for React component files (e.g., WebSiteHeader.tsx, NavBar.tsx).
- **Example**: `components/Header.tsx`, `components/Footer.tsx`
- Directories: Use clear, descriptive names (e.g., 'pages', 'components', 'WebPageComponents').
- **Example**: `src/pages`, `src/components`
• Backend:
- Use lower-case filenames for modules (e.g., index.js, auth.js, projects.js).
- **Example**: `routes/auth.js`, `services/user.js`
- When needed, use hyphenation for clarity, but maintain consistency.
- **Example**: `helpers/wrap-async.js`
2. Component and Module Naming:
• Frontend:
- React Components: Define components in PascalCase.
- TypeScript Interfaces/Types: Use PascalCase (e.g., WebSiteHeaderProps).
• Backend:
- Classes (if any) and constructors should be in PascalCase; most helper functions and modules use camelCase.
3. Variable, Function, and Hook Naming:
• Use camelCase for variables and function names in both frontend and backend.
- **Example**:
```javascript
const userName = 'John Doe';
function handleLogin() { ... }
```
• Custom Hooks: Prefix with 'use' (e.g., useAuth, useForm).
- **Example**:
```typescript
const useAuth = () => {
const [isAuthenticated, setIsAuthenticated] = useState(false);
return { isAuthenticated, setIsAuthenticated };
};
```
4. Consistency and Readability:
• Maintain uniform naming across the project to ensure clarity and ease of maintenance.
- **Example**: Use consistent naming conventions for variables, functions, and components, such as camelCase for variables and functions, and PascalCase for components.
- **Example**: In `auth.js`, ensure that all function names clearly describe their purpose, such as `handleLogin` or `validateUserInput`.
## Group 3 Frontend & React Best Practices
1. Use of Functional Components & TypeScript:
• Build all components as functional components.
- **Example**:
```typescript
const Header: React.FC = () => {
return <header>Header Content</header>;
};
```
• Leverage TypeScript for static type checking and enforce strict prop and state types.
- **Example**:
```typescript
interface ButtonProps {
onClick: () => void;
}
const Button: React.FC<ButtonProps> = ({ onClick }) => (
<button onClick={onClick}>Click me</button>
);
```
2. Effective Use of React Hooks:
• Utilize useState and useEffect appropriately with proper dependency arrays.
- **Example**:
```typescript
const [count, setCount] = useState(0);
useEffect(() => {
console.log('Component mounted');
}, []);
```
• Create custom hooks to encapsulate shared logic (e.g., useAppSelector).
- **Example**:
```typescript
const useAuth = () => {
const [isAuthenticated, setIsAuthenticated] = useState(false);
return { isAuthenticated, setIsAuthenticated };
};
```
3. Component Composition & Separation of Concerns:
• Separate presentational (stateless) components from container components managing logic.
- **Example**: Use `LayoutGuest` to encapsulate common page structures.
4. Code Quality & Readability:
• Maintain consistent formatting and adhere to Prettier and ESLint rules.
• Use descriptive names for variables, functions, and components.
• Document non-trivial logic with inline comments and consider implementing error boundaries where needed.
• New code must adhere to these conventions to avoid ambiguity.
• Use descriptive names that reflect the purpose and domain, avoiding abbreviations unless standard in the project.
## Group 4 Backend & API Guidelines
1. API Endpoint Design & Documentation:
• Follow RESTful naming conventions; all route handlers should be named clearly and consistently.
- **Example**: Use verbs like `GET`, `POST`, `PUT`, `DELETE` to define actions, e.g., `GET /api/auth/me` to retrieve user info.
• Document endpoints with Swagger annotations to provide descriptions, expected request bodies, and response codes.
- **Example**:
```javascript
/**
* @swagger
* /api/auth/signin:
* post:
* summary: Sign in a user
* requestBody:
* description: User credentials
* content:
* application/json:
* schema:
* $ref: "#/components/schemas/Auth"
* responses:
* 200:
* description: Successful login
* 400:
* description: Invalid username/password supplied
*/
```
• Examples (for Auth endpoints):
- POST /api/auth/signin/local
• Description: Logs the user into the system.
• Request Body (application/json):
{ "email": "admin@flatlogic.com", "password": "password" }
• Responses:
- 200: Successful login (returns token and user data).
- 400: Invalid username/password supplied.
- GET /api/auth/me
• Description: Retrieves current authorized user information.
• Secured via Passport JWT; uses req.currentUser.
• Responses:
- 200: Returns current user info.
- 400: Invalid credentials or missing user data.
- POST /api/auth/signup
• Description: Registers a new user.
• Request Body (application/json):
{ "email": "admin@flatlogic.com", "password": "password" }
• Responses:
- 200: New user signed up successfully.
- 400: Invalid input supplied.
- 500: Server error.
## Group 5 Testing, Quality Assurance & Error Handling
1. Testing Guidelines:
• Write unit tests for critical backend and frontend components using frameworks such as Jest, React Testing Library, and Mocha/Chai.
- **Example**:
```javascript
test('should return user data', async () => {
const user = await getUserData();
expect(user).toHaveProperty('email');
});
```
• Practice test-driven development and maintain high test coverage.
• Regularly update tests following changes in business logic.
2. Quality Assurance:
• Enforce code quality with ESLint, Prettier, and static analysis tools.
• Integrate continuous testing workflows (CI/CD) to catch issues early.
- **Example**: Use GitHub Actions for automated testing and deployment.
• Ensure documentation is kept up-to-date with the implemented code.
3. Error Handling:
• Back-end:
- Wrap asynchronous route handlers with a helper (e.g., wrapAsync) to capture errors.
- **Example**:
```javascript
router.post('/signin', wrapAsync(async (req, res) => {
const user = await AuthService.signin(req.body);
res.send(user);
}));
```
- Use centralized error handling middleware (e.g., commonErrorHandler) for uniform error responses.
• Front-end:
- Implement error boundaries in React to gracefully handle runtime errors.
- Display user-friendly error messages and log errors for further analysis.
2. Authentication & Security:
• Protect endpoints by using Passport.js with JWT (e.g., passport.authenticate('jwt', { session: false })).
- **Example**:
```javascript
router.get('/profile', passport.authenticate('jwt', { session: false }), (req, res) => {
res.send(req.user);
});
```
• Ensure that secure routes check for existence of req.currentUser. If absent, return a ForbiddenError.
3. Consistent Error Handling & Middleware Usage:
• Wrap asynchronous route handlers with helpers like wrapAsync for error propagation.
• Use centralized error handling middleware (e.g., commonErrorHandler) to capture and format errors uniformly.
4. Modular Code Organization:
• Organize backend code into separate files for routes, services, and database access (e.g., auth.js, projects.js, tasks.js).
• Use descriptive, lowercase filenames for modules and routes.
5. Endpoint Security Best Practices:
• Validate input data and sanitize requests where necessary.
• Restrict sensitive operations to authenticated users with proper role-based permissions.
────────────────────────────────────────
Group 6 Accessibility, UI, and Styling Guidelines (Updated)
────────────────────────────────────────
1. Sidebar Styling:
• The sidebar is implemented in the authenticated layout via the AsideMenu component, with the actual element defined in AsideMenuLayer (located at frontend/src/components/AsideMenuLayer.tsx) as an <aside> element with id="asideMenu".
- **Example**:
```css
#asideMenu {
background-color: #F8F4E1 !important;
}
```
• When modifying sidebar styles, target #asideMenu and its child elements rather than generic selectors (e.g., avoid .app-sidebar) to ensure that the changes affect the actual rendered sidebar.
• Remove or override any conflicting background utilities (such as an unwanted bg-white) so our desired background color (#F8F4E1) is fully visible. Use a highly specific selector if necessary.
• Adjust spacing (padding/margins) at both the container (#asideMenu) and the individual menu item level to maintain a consistent, compact design.
2. General Project Styling and Tailwind CSS Usage:
• The application leverages Tailwind CSS extensively, with core styling defined in _theme.css using the @apply directive. Any new modifications should follow this pattern to ensure consistency.
- **Example**:
```css
.btn {
@apply bg-blue-500 text-white;
}
```
• The themed blocks (like .theme-pink and .theme-green) standardize the UI's appearance. When applying custom overrides, ensure they integrate cleanly into these structures and avoid conflicts or circular dependency errors (e.g., issues when redefining utilities such as text-blue-600).
• Adjustments via Tailwind CSS generally require modifying class names in the components and ensuring that global overrides are applied in the correct order. Consistent use of design tokens and custom color codes (e.g., #F8F4E1) throughout the app is crucial to a cohesive design.
• Specificity is key. If a change isn't visually reflected as expected, inspect the rendered HTML to identify which classes are taking precedence.

3
.dockerignore Normal file
View File

@ -0,0 +1,3 @@
backend/node_modules
frontend/node_modules
frontend/build

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
node_modules/
*/node_modules/
*/build/

187
502.html Normal file
View File

@ -0,0 +1,187 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Service Starting</title>
<style>
body {
font-family: sans-serif;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 100vh;
background-color: #EFF2FF;
margin: 0;
padding: 20px;
}
.container {
text-align: center;
padding: 30px 40px;
background-color: #fff;
border-radius: 20px;
margin-bottom: 20px;
max-width: 538px;
width: 100%;
box-shadow: 0 13px 34px 0 rgba(167, 187, 242, 0.2);
box-sizing: border-box;
}
#status-heading {
font-size: 24px;
font-weight: 700;
color: #02004E;
margin-bottom: 20px;
}
h2 {
color: #333;
margin-bottom: 15px;
}
p {
color: #666;
font-size: 1.1em;
margin-bottom: 10px;
}
.tip {
font-weight: 300;
font-size: 17px;
line-height: 150%;
letter-spacing: 0;
text-align: center;
margin-top: 30px;
}
.loader-container {
position: relative;
display: flex;
justify-content: center;
align-items: center;
}
.loader {
width: 100px;
aspect-ratio: 1;
border-radius: 50%;
background:
radial-gradient(farthest-side, #5C7EF1 94%, #0000) top/8px 8px no-repeat,
conic-gradient(#0000 30%, #5C7EF1);
-webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 8px), #000 0);
animation: l13 2s infinite linear;
}
@keyframes l13 {
100% {
transform: rotate(1turn)
}
}
.app-logo {
position: absolute;
width: 36px;
}
.panel {
padding: 0 18px;
display: none;
background-color: white;
overflow: hidden;
margin-top: 10px;
}
.show {
display: block;
}
.project-info {
border: 1px solid #8C9DFF;
border-radius: 10px;
padding: 12px 16px;
max-width: 600px;
margin: 40px auto;
background-color: #FBFCFF;
}
.project-info h2 {
color: #02004E;
font-size: 14px;
font-weight: 500;
margin-bottom: 10px;
text-align: left;
}
.project-info p {
color: #686791;
font-size: 12px;
font-weight: 400;
text-align: left;
}
</style>
</head>
<body>
<div class="container">
<h2 id="status-heading">Loading the app, just a moment…</h2>
<p class="tip">The application is currently launching. The page will automatically refresh once site is
available.</p>
<div class="project-info">
<h2>NOIR AI</h2>
<p>Premium gamified reading app that rewards users with coins via camera-verified book reading and cash withdrawals.</p>
</div>
<div class="loader-container">
<img src="https://flatlogic.com/blog/wp-content/uploads/2025/05/logo-bot-1.png" alt="App Logo"
class="app-logo">
<div class="loader"></div>
</div>
<div class="panel">
<video width="100%" height="315" controls loop>
<source
src="https://flatlogic.com/blog/wp-content/uploads/2025/04/20250430_1336_professional_dynamo_spinner_simple_compose_01jt349yvtenxt7xhg8hhr85j8.mp4"
type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
</div>
<script>
function checkAvailability() {
fetch('/')
.then(response => {
if (response.ok) {
window.location.reload();
} else {
setTimeout(checkAvailability, 5000);
}
})
.catch(() => {
setTimeout(checkAvailability, 5000);
});
}
document.addEventListener('DOMContentLoaded', checkAvailability);
document.addEventListener('DOMContentLoaded', function () {
const appTitle = document.querySelector('#status-heading');
const panel = document.querySelector('.panel');
const video = panel.querySelector('video');
let clickCount = 0;
appTitle.addEventListener('click', function () {
clickCount++;
if (clickCount === 5) {
panel.classList.toggle('show');
if (panel.classList.contains('show')) {
video.play();
} else {
video.pause();
}
clickCount = 0;
}
});
});
</script>
</body>
</html>

21
Dockerfile Normal file
View File

@ -0,0 +1,21 @@
FROM node:20.15.1-alpine AS builder
RUN apk add --no-cache git
WORKDIR /app
COPY frontend/package.json frontend/yarn.lock ./
RUN yarn install --pure-lockfile
COPY frontend .
RUN yarn build
FROM node:20.15.1-alpine
WORKDIR /app
COPY backend/package.json backend/yarn.lock ./
RUN yarn install --pure-lockfile
COPY backend .
COPY --from=builder /app/build /app/public
CMD ["yarn", "start"]

85
Dockerfile.dev Normal file
View File

@ -0,0 +1,85 @@
# Base image for Node.js dependencies
FROM node:20.15.1-alpine AS frontend-deps
RUN apk add --no-cache git
WORKDIR /app/frontend
COPY frontend/package.json frontend/yarn.lock ./
RUN yarn install --pure-lockfile
FROM node:20.15.1-alpine AS backend-deps
RUN apk add --no-cache git
WORKDIR /app/backend
COPY backend/package.json backend/yarn.lock ./
RUN yarn install --pure-lockfile
FROM node:20.15.1-alpine AS app-shell-deps
RUN apk add --no-cache git
WORKDIR /app/app-shell
COPY app-shell/package.json app-shell/yarn.lock ./
RUN yarn install --pure-lockfile
# Nginx setup and application build
FROM node:20.15.1-alpine AS build
RUN apk add --no-cache git nginx curl
RUN apk add --no-cache lsof procps
RUN yarn global add concurrently
RUN apk add --no-cache \
chromium \
nss \
freetype \
harfbuzz \
ttf-freefont \
fontconfig
ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true
ENV PUPPETEER_EXECUTABLE_PATH=/usr/bin/chromium-browser
RUN mkdir -p /app/pids
# Make sure to add yarn global bin to PATH
ENV PATH /root/.yarn/bin:/root/.config/yarn/global/node_modules/.bin:$PATH
# Copy dependencies
WORKDIR /app
COPY --from=frontend-deps /app/frontend /app/frontend
COPY --from=backend-deps /app/backend /app/backend
COPY --from=app-shell-deps /app/app-shell /app/app-shell
COPY frontend /app/frontend
COPY backend /app/backend
COPY app-shell /app/app-shell
COPY docker /app/docker
# Copy all files from root to /app
COPY . /app
# Copy Nginx configuration
COPY nginx.conf /etc/nginx/nginx.conf
# Copy custom error page
COPY 502.html /usr/share/nginx/html/502.html
# Change owner and permissions of the error page
RUN chown nginx:nginx /usr/share/nginx/html/502.html && \
chmod 644 /usr/share/nginx/html/502.html
# Expose the port the app runs on
EXPOSE 8080
ENV NODE_ENV=dev_stage
ENV FRONT_PORT=3001
ENV BACKEND_PORT=3000
ENV APP_SHELL_PORT=4000
CMD ["sh", "-c", "\
yarn --cwd /app/frontend dev & echo $! > /app/pids/frontend.pid && \
yarn --cwd /app/backend start & echo $! > /app/pids/backend.pid && \
sleep 10 && nginx -g 'daemon off;' & \
NGINX_PID=$! && \
echo 'Waiting for backend (port 3000) to be available...' && \
while ! nc -z localhost ${BACKEND_PORT}; do \
sleep 2; \
done && \
echo 'Backend is up. Starting app_shell for Git check...' && \
yarn --cwd /app/app-shell start && \
wait $NGINX_PID"]

1
LICENSE Normal file
View File

@ -0,0 +1 @@
https://flatlogic.com/

244
README.md Normal file
View File

@ -0,0 +1,244 @@
# NOIR AI
## This project was generated by [Flatlogic Platform](https://flatlogic.com).
- Frontend: [React.js](https://flatlogic.com/templates?framework%5B%5D=react&sort=default)
- Backend: [NodeJS](https://flatlogic.com/templates?backend%5B%5D=nodejs&sort=default)
<details><summary>Backend Folder Structure</summary>
The generated application has the following backend folder structure:
`src` folder which contains your working files that will be used later to create the build. The src folder contains folders as:
- `auth` - config the library for authentication and authorization;
- `db` - contains such folders as:
- `api` - documentation that is automatically generated by jsdoc or other tools;
- `migrations` - is a skeleton of the database or all the actions that users do with the database;
- `models`- what will represent the database for the backend;
- `seeders` - the entity that creates the data for the database.
- `routes` - this folder would contain all the routes that you have created using Express Router and what they do would be exported from a Controller file;
- `services` - contains such folders as `emails` and `notifications`.
</details>
- Database: PostgreSQL
- app-shel: Core application framework that provides essential infrastructure services
for the entire application.
-----------------------
### We offer 2 ways how to start the project locally: by running Frontend and Backend or with Docker.
-----------------------
## To start the project:
### Backend:
> Please change current folder: `cd backend`
#### Install local dependencies:
`yarn install`
------------
#### Adjust local db:
##### 1. Install postgres:
MacOS:
`brew install postgres`
> if you dont have brew please install it (https://brew.sh) and repeat step `brew install postgres`.
Ubuntu:
`sudo apt update`
`sudo apt install postgresql postgresql-contrib`
##### 2. Create db and admin user:
Before run and test connection, make sure you have created a database as described in the above configuration. You can use the `psql` command to create a user and database.
`psql postgres --u postgres`
Next, type this command for creating a new user with password then give access for creating the database.
`postgres-# CREATE ROLE admin WITH LOGIN PASSWORD 'admin_pass';`
`postgres-# ALTER ROLE admin CREATEDB;`
Quit `psql` then log in again using the new user that previously created.
`postgres-# \q`
`psql postgres -U admin`
Type this command to creating a new database.
`postgres=> CREATE DATABASE db_{your_project_name};`
Then give that new user privileges to the new database then quit the `psql`.
`postgres=> GRANT ALL PRIVILEGES ON DATABASE db_{your_project_name} TO admin;`
`postgres=> \q`
------------
#### Create database:
`yarn db:create`
#### Start production build:
`yarn start`
### Frontend:
> Please change current folder: `cd frontend`
## To start the project with Docker:
### Description:
The project contains the **docker folder** and the `Dockerfile`.
The `Dockerfile` is used to Deploy the project to Google Cloud.
The **docker folder** contains a couple of helper scripts:
- `docker-compose.yml` (all our services: web, backend, db are described here)
- `start-backend.sh` (starts backend, but only after the database)
- `wait-for-it.sh` (imported from https://github.com/vishnubob/wait-for-it)
> To avoid breaking the application, we recommend you don't edit the following files: everything that includes the **docker folder** and `Dokerfile`.
## Run services:
1. Install docker compose (https://docs.docker.com/compose/install/)
2. Move to `docker` folder. All next steps should be done from this folder.
``` cd docker ```
3. Make executables from `wait-for-it.sh` and `start-backend.sh`:
``` chmod +x start-backend.sh && chmod +x wait-for-it.sh ```
4. Download dependend projects for services.
5. Review the docker-compose.yml file. Make sure that all services have Dockerfiles. Only db service doesn't require a Dockerfile.
6. Make sure you have needed ports (see them in `ports`) available on your local machine.
7. Start services:
7.1. With an empty database `rm -rf data && docker-compose up`
7.2. With a stored (from previus runs) database data `docker-compose up`
8. Check http://localhost:3000
9. Stop services:
9.1. Just press `Ctr+C`
## Most common errors:
1. `connection refused`
There could be many reasons, but the most common are:
- The port is not open on the destination machine.
- The port is open on the destination machine, but its backlog of pending connections is full.
- A firewall between the client and server is blocking access (also check local firewalls).
After checking for firewalls and that the port is open, use telnet to connect to the IP/port to test connectivity. This removes any potential issues from your application.
***MacOS:***
If you suspect that your SSH service might be down, you can run this command to find out:
`sudo service ssh status`
If the command line returns a status of down, then youve likely found the reason behind your connectivity error.
***Ubuntu:***
Sometimes a connection refused error can also indicate that there is an IP address conflict on your network. You can search for possible IP conflicts by running:
`arp-scan -I eth0 -l | grep <ipaddress>`
`arp-scan -I eth0 -l | grep <ipaddress>`
and
`arping <ipaddress>`
2. `yarn db:create` creates database with the assembled tables (on MacOS with Postgres database)
The workaround - put the next commands to your Postgres database terminal:
`DROP SCHEMA public CASCADE;`
`CREATE SCHEMA public;`
`GRANT ALL ON SCHEMA public TO postgres;`
`GRANT ALL ON SCHEMA public TO public;`
Afterwards, continue to start your project in the backend directory by running:
`yarn start`

14
backend/.env Normal file
View File

@ -0,0 +1,14 @@
DB_NAME=app_39588
DB_USER=app_39588
DB_PASS=43459de6-7509-47c0-a2b7-87a9d6a4a95f
DB_HOST=127.0.0.1
DB_PORT=5432
PORT=3000
GOOGLE_CLIENT_ID=671001533244-kf1k1gmp6mnl0r030qmvdu6v36ghmim6.apps.googleusercontent.com
GOOGLE_CLIENT_SECRET=Yo4qbKZniqvojzUQ60iKlxqR
MS_CLIENT_ID=4696f457-31af-40de-897c-e00d7d4cff73
MS_CLIENT_SECRET=m8jzZ.5UpHF3=-dXzyxiZ4e[F8OF54@p
EMAIL_USER=AKIAVEW7G4PQUBGM52OF
EMAIL_PASS=BLnD4hKGb6YkSz3gaQrf8fnyLi3C3/EdjOOsLEDTDPTz
SECRET_KEY=HUEyqESqgQ1yTwzVlO6wprC9Kf1J1xuA
PEXELS_KEY=Vc99rnmOhHhJAbgGQoKLZtsaIVfkeownoQNbTj78VemUjKh08ZYRbf18

4
backend/.eslintignore Normal file
View File

@ -0,0 +1,4 @@
# Ignore generated and runtime files
node_modules/
tmp/
logs/

15
backend/.eslintrc.cjs Normal file
View File

@ -0,0 +1,15 @@
module.exports = {
env: {
node: true,
es2021: true
},
extends: [
'eslint:recommended'
],
plugins: [
'import'
],
rules: {
'import/no-unresolved': 'error'
}
};

11
backend/.prettierrc Normal file
View File

@ -0,0 +1,11 @@
{
"singleQuote": true,
"tabWidth": 2,
"printWidth": 80,
"trailingComma": "all",
"quoteProps": "as-needed",
"jsxSingleQuote": true,
"bracketSpacing": true,
"bracketSameLine": false,
"arrowParens": "always"
}

7
backend/.sequelizerc Normal file
View File

@ -0,0 +1,7 @@
const path = require('path');
module.exports = {
"config": path.resolve("src", "db", "db.config.js"),
"models-path": path.resolve("src", "db", "models"),
"seeders-path": path.resolve("src", "db", "seeders"),
"migrations-path": path.resolve("src", "db", "migrations")
};

23
backend/Dockerfile Normal file
View File

@ -0,0 +1,23 @@
FROM node:20.15.1-alpine
RUN apk update && apk add bash
# Create app directory
WORKDIR /usr/src/app
# Install app dependencies
# A wildcard is used to ensure both package.json AND package-lock.json are copied
# where available (npm@5+)
COPY package*.json ./
RUN yarn install
# If you are building your code for production
# RUN npm ci --only=production
# Bundle app source
COPY . .
EXPOSE 8080
CMD [ "yarn", "start" ]

56
backend/README.md Normal file
View File

@ -0,0 +1,56 @@
#NOIR AI - template backend,
#### Run App on local machine:
##### Install local dependencies:
- `yarn install`
------------
##### Adjust local db:
###### 1. Install postgres:
- MacOS:
- `brew install postgres`
- Ubuntu:
- `sudo apt update`
- `sudo apt install postgresql postgresql-contrib`
###### 2. Create db and admin user:
- Before run and test connection, make sure you have created a database as described in the above configuration. You can use the `psql` command to create a user and database.
- `psql postgres --u postgres`
- Next, type this command for creating a new user with password then give access for creating the database.
- `postgres-# CREATE ROLE admin WITH LOGIN PASSWORD 'admin_pass';`
- `postgres-# ALTER ROLE admin CREATEDB;`
- Quit `psql` then log in again using the new user that previously created.
- `postgres-# \q`
- `psql postgres -U admin`
- Type this command to creating a new database.
- `postgres=> CREATE DATABASE db_noir_ai;`
- Then give that new user privileges to the new database then quit the `psql`.
- `postgres=> GRANT ALL PRIVILEGES ON DATABASE db_noir_ai TO admin;`
- `postgres=> \q`
------------
#### Api Documentation (Swagger)
http://localhost:8080/api-docs (local host)
http://host_name/api-docs
------------
##### Setup database tables or update after schema change
- `yarn db:migrate`
##### Seed the initial data (admin accounts, relevant for the first setup):
- `yarn db:seed`
##### Start build:
- `yarn start`

56
backend/package.json Normal file
View File

@ -0,0 +1,56 @@
{
"name": "noirai",
"description": "NOIR AI - template backend",
"scripts": {
"start": "npm run db:migrate && npm run db:seed && npm run watch",
"lint": "eslint . --ext .js",
"db:migrate": "sequelize-cli db:migrate",
"db:seed": "sequelize-cli db:seed:all",
"db:drop": "sequelize-cli db:drop",
"db:create": "sequelize-cli db:create",
"watch": "node watcher.js"
},
"dependencies": {
"@google-cloud/storage": "^5.18.2",
"axios": "^1.6.7",
"bcrypt": "5.1.1",
"chokidar": "^4.0.3",
"cors": "2.8.5",
"csv-parser": "^3.0.0",
"express": "4.18.2",
"formidable": "1.2.2",
"helmet": "4.1.1",
"json2csv": "^5.0.7",
"jsonwebtoken": "8.5.1",
"lodash": "4.17.21",
"moment": "2.30.1",
"multer": "^1.4.4",
"mysql2": "2.2.5",
"nodemailer": "6.9.9",
"passport": "^0.7.0",
"passport-google-oauth2": "^0.2.0",
"passport-jwt": "^4.0.1",
"passport-microsoft": "^0.1.0",
"pg": "8.4.1",
"pg-hstore": "2.3.4",
"sequelize": "6.35.2",
"sequelize-json-schema": "^2.1.1",
"sqlite": "4.0.15",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"tedious": "^18.2.4"
},
"engines": {
"node": ">=18"
},
"private": true,
"devDependencies": {
"cross-env": "7.0.3",
"eslint": "^8.23.1",
"eslint-plugin-import": "^2.29.1",
"mocha": "8.1.3",
"node-mocks-http": "1.9.0",
"nodemon": "2.0.5",
"sequelize-cli": "6.6.2"
}
}

View File

@ -0,0 +1,484 @@
"use strict";
const fs = require("fs");
const path = require("path");
const http = require("http");
const https = require("https");
const { URL } = require("url");
let CONFIG_CACHE = null;
class LocalAIApi {
static createResponse(params, options) {
return createResponse(params, options);
}
static request(pathValue, payload, options) {
return request(pathValue, payload, options);
}
static fetchStatus(aiRequestId, options) {
return fetchStatus(aiRequestId, options);
}
static awaitResponse(aiRequestId, options) {
return awaitResponse(aiRequestId, options);
}
static extractText(response) {
return extractText(response);
}
static decodeJsonFromResponse(response) {
return decodeJsonFromResponse(response);
}
}
async function createResponse(params, options = {}) {
const payload = { ...(params || {}) };
if (!Array.isArray(payload.input) || payload.input.length === 0) {
return {
success: false,
error: "input_missing",
message: 'Parameter "input" is required and must be a non-empty array.',
};
}
const cfg = config();
if (!payload.model) {
payload.model = cfg.defaultModel;
}
const initial = await request(options.path, payload, options);
if (!initial.success) {
return initial;
}
const data = initial.data;
if (data && typeof data === "object" && data.ai_request_id) {
const pollTimeout = Number(options.poll_timeout ?? 300);
const pollInterval = Number(options.poll_interval ?? 5);
return await awaitResponse(data.ai_request_id, {
interval: pollInterval,
timeout: pollTimeout,
headers: options.headers,
timeout_per_call: options.timeout,
verify_tls: options.verify_tls,
});
}
return initial;
}
async function request(pathValue, payload = {}, options = {}) {
const cfg = config();
const resolvedPath = pathValue || options.path || cfg.responsesPath;
if (!resolvedPath) {
return {
success: false,
error: "project_id_missing",
message: "PROJECT_ID is not defined; cannot resolve AI proxy endpoint.",
};
}
if (!cfg.projectUuid) {
return {
success: false,
error: "project_uuid_missing",
message: "PROJECT_UUID is not defined; aborting AI request.",
};
}
const bodyPayload = { ...(payload || {}) };
if (!bodyPayload.project_uuid) {
bodyPayload.project_uuid = cfg.projectUuid;
}
const url = buildUrl(resolvedPath, cfg.baseUrl);
const timeout = resolveTimeout(options.timeout, cfg.timeout);
const verifyTls = resolveVerifyTls(options.verify_tls, cfg.verifyTls);
const headers = {
Accept: "application/json",
"Content-Type": "application/json",
[cfg.projectHeader]: cfg.projectUuid,
};
if (Array.isArray(options.headers)) {
for (const header of options.headers) {
if (typeof header === "string" && header.includes(":")) {
const [name, value] = header.split(":", 2);
headers[name.trim()] = value.trim();
}
}
}
const body = JSON.stringify(bodyPayload);
return sendRequest(url, "POST", body, headers, timeout, verifyTls);
}
async function fetchStatus(aiRequestId, options = {}) {
const cfg = config();
if (!cfg.projectUuid) {
return {
success: false,
error: "project_uuid_missing",
message: "PROJECT_UUID is not defined; aborting status check.",
};
}
const statusPath = resolveStatusPath(aiRequestId, cfg);
const url = buildUrl(statusPath, cfg.baseUrl);
const timeout = resolveTimeout(options.timeout, cfg.timeout);
const verifyTls = resolveVerifyTls(options.verify_tls, cfg.verifyTls);
const headers = {
Accept: "application/json",
[cfg.projectHeader]: cfg.projectUuid,
};
if (Array.isArray(options.headers)) {
for (const header of options.headers) {
if (typeof header === "string" && header.includes(":")) {
const [name, value] = header.split(":", 2);
headers[name.trim()] = value.trim();
}
}
}
return sendRequest(url, "GET", null, headers, timeout, verifyTls);
}
async function awaitResponse(aiRequestId, options = {}) {
const timeout = Number(options.timeout ?? 300);
const interval = Math.max(Number(options.interval ?? 5), 1);
const deadline = Date.now() + Math.max(timeout, interval) * 1000;
while (true) {
const statusResp = await fetchStatus(aiRequestId, {
headers: options.headers,
timeout: options.timeout_per_call,
verify_tls: options.verify_tls,
});
if (statusResp.success) {
const data = statusResp.data || {};
if (data && typeof data === "object") {
if (data.status === "success") {
return {
success: true,
status: 200,
data: data.response || data,
};
}
if (data.status === "failed") {
return {
success: false,
status: 500,
error: String(data.error || "AI request failed"),
data,
};
}
}
} else {
return statusResp;
}
if (Date.now() >= deadline) {
return {
success: false,
error: "timeout",
message: "Timed out waiting for AI response.",
};
}
await sleep(interval * 1000);
}
}
function extractText(response) {
const payload = response && typeof response === "object" ? response.data || response : null;
if (!payload || typeof payload !== "object") {
return "";
}
if (Array.isArray(payload.output)) {
let combined = "";
for (const item of payload.output) {
if (!item || !Array.isArray(item.content)) {
continue;
}
for (const block of item.content) {
if (
block &&
typeof block === "object" &&
block.type === "output_text" &&
typeof block.text === "string" &&
block.text.length > 0
) {
combined += block.text;
}
}
}
if (combined) {
return combined;
}
}
if (
payload.choices &&
payload.choices[0] &&
payload.choices[0].message &&
typeof payload.choices[0].message.content === "string"
) {
return payload.choices[0].message.content;
}
return "";
}
function decodeJsonFromResponse(response) {
const text = extractText(response);
if (!text) {
throw new Error("No text found in AI response.");
}
const parsed = parseJson(text);
if (parsed.ok && parsed.value && typeof parsed.value === "object") {
return parsed.value;
}
const stripped = stripJsonFence(text);
if (stripped !== text) {
const parsedStripped = parseJson(stripped);
if (parsedStripped.ok && parsedStripped.value && typeof parsedStripped.value === "object") {
return parsedStripped.value;
}
throw new Error(`JSON parse failed after stripping fences: ${parsedStripped.error}`);
}
throw new Error(`JSON parse failed: ${parsed.error}`);
}
function config() {
if (CONFIG_CACHE) {
return CONFIG_CACHE;
}
ensureEnvLoaded();
const baseUrl = process.env.AI_PROXY_BASE_URL || "https://flatlogic.com";
const projectId = process.env.PROJECT_ID || null;
let responsesPath = process.env.AI_RESPONSES_PATH || null;
if (!responsesPath && projectId) {
responsesPath = `/projects/${projectId}/ai-request`;
}
const timeout = resolveTimeout(process.env.AI_TIMEOUT, 30);
const verifyTls = resolveVerifyTls(process.env.AI_VERIFY_TLS, true);
CONFIG_CACHE = {
baseUrl,
responsesPath,
projectId,
projectUuid: process.env.PROJECT_UUID || null,
projectHeader: process.env.AI_PROJECT_HEADER || "project-uuid",
defaultModel: process.env.AI_DEFAULT_MODEL || "gpt-5-mini",
timeout,
verifyTls,
};
return CONFIG_CACHE;
}
function buildUrl(pathValue, baseUrl) {
const trimmed = String(pathValue || "").trim();
if (trimmed === "") {
return baseUrl;
}
if (trimmed.startsWith("http://") || trimmed.startsWith("https://")) {
return trimmed;
}
if (trimmed.startsWith("/")) {
return `${baseUrl}${trimmed}`;
}
return `${baseUrl}/${trimmed}`;
}
function resolveStatusPath(aiRequestId, cfg) {
const basePath = (cfg.responsesPath || "").replace(/\/+$/, "");
if (!basePath) {
return `/ai-request/${encodeURIComponent(String(aiRequestId))}/status`;
}
const normalized = basePath.endsWith("/ai-request") ? basePath : `${basePath}/ai-request`;
return `${normalized}/${encodeURIComponent(String(aiRequestId))}/status`;
}
function sendRequest(urlString, method, body, headers, timeoutSeconds, verifyTls) {
return new Promise((resolve) => {
let targetUrl;
try {
targetUrl = new URL(urlString);
} catch (err) {
resolve({
success: false,
error: "invalid_url",
message: err.message,
});
return;
}
const isHttps = targetUrl.protocol === "https:";
const requestFn = isHttps ? https.request : http.request;
const options = {
protocol: targetUrl.protocol,
hostname: targetUrl.hostname,
port: targetUrl.port || (isHttps ? 443 : 80),
path: `${targetUrl.pathname}${targetUrl.search}`,
method: method.toUpperCase(),
headers,
timeout: Math.max(Number(timeoutSeconds || 30), 1) * 1000,
};
if (isHttps) {
options.rejectUnauthorized = Boolean(verifyTls);
}
const req = requestFn(options, (res) => {
let responseBody = "";
res.setEncoding("utf8");
res.on("data", (chunk) => {
responseBody += chunk;
});
res.on("end", () => {
const status = res.statusCode || 0;
const parsed = parseJson(responseBody);
const payload = parsed.ok ? parsed.value : responseBody;
if (status >= 200 && status < 300) {
const result = {
success: true,
status,
data: payload,
};
if (!parsed.ok) {
result.json_error = parsed.error;
}
resolve(result);
return;
}
const errorMessage =
parsed.ok && payload && typeof payload === "object"
? String(payload.error || payload.message || "AI proxy request failed")
: String(responseBody || "AI proxy request failed");
resolve({
success: false,
status,
error: errorMessage,
response: payload,
json_error: parsed.ok ? undefined : parsed.error,
});
});
});
req.on("timeout", () => {
req.destroy(new Error("request_timeout"));
});
req.on("error", (err) => {
resolve({
success: false,
error: "request_failed",
message: err.message,
});
});
if (body) {
req.write(body);
}
req.end();
});
}
function parseJson(value) {
if (typeof value !== "string" || value.trim() === "") {
return { ok: false, error: "empty_response" };
}
try {
return { ok: true, value: JSON.parse(value) };
} catch (err) {
return { ok: false, error: err.message };
}
}
function stripJsonFence(text) {
const trimmed = text.trim();
if (trimmed.startsWith("```json")) {
return trimmed.replace(/^```json/, "").replace(/```$/, "").trim();
}
if (trimmed.startsWith("```")) {
return trimmed.replace(/^```/, "").replace(/```$/, "").trim();
}
return text;
}
function resolveTimeout(value, fallback) {
const parsed = Number.parseInt(String(value ?? fallback), 10);
return Number.isNaN(parsed) ? Number(fallback) : parsed;
}
function resolveVerifyTls(value, fallback) {
if (value === undefined || value === null) {
return Boolean(fallback);
}
return String(value).toLowerCase() !== "false" && String(value) !== "0";
}
function ensureEnvLoaded() {
if (process.env.PROJECT_UUID && process.env.PROJECT_ID) {
return;
}
const envPath = path.resolve(__dirname, "../../../../.env");
if (!fs.existsSync(envPath)) {
return;
}
let content;
try {
content = fs.readFileSync(envPath, "utf8");
} catch (err) {
throw new Error(`Failed to read executor .env: ${err.message}`);
}
for (const line of content.split(/\r?\n/)) {
const trimmed = line.trim();
if (!trimmed || trimmed.startsWith("#") || !trimmed.includes("=")) {
continue;
}
const [rawKey, ...rest] = trimmed.split("=");
const key = rawKey.trim();
if (!key) {
continue;
}
const value = rest.join("=").trim().replace(/^['"]|['"]$/g, "");
if (!process.env[key]) {
process.env[key] = value;
}
}
}
function sleep(ms) {
return new Promise((resolve) => setTimeout(resolve, ms));
}
module.exports = {
LocalAIApi,
createResponse,
request,
fetchStatus,
awaitResponse,
extractText,
decodeJsonFromResponse,
};

68
backend/src/auth/auth.js Normal file
View File

@ -0,0 +1,68 @@
const config = require('../config');
const providers = config.providers;
const helpers = require('../helpers');
const db = require('../db/models');
const passport = require('passport');
const JWTstrategy = require('passport-jwt').Strategy;
const ExtractJWT = require('passport-jwt').ExtractJwt;
const GoogleStrategy = require('passport-google-oauth2').Strategy;
const MicrosoftStrategy = require('passport-microsoft').Strategy;
const UsersDBApi = require('../db/api/users');
passport.use(new JWTstrategy({
passReqToCallback: true,
secretOrKey: config.secret_key,
jwtFromRequest: ExtractJWT.fromAuthHeaderAsBearerToken()
}, async (req, token, done) => {
try {
const user = await UsersDBApi.findBy( {email: token.user.email});
if (user && user.disabled) {
return done (new Error(`User '${user.email}' is disabled`));
}
req.currentUser = user;
return done(null, user);
} catch (error) {
done(error);
}
}));
passport.use(new GoogleStrategy({
clientID: config.google.clientId,
clientSecret: config.google.clientSecret,
callbackURL: config.apiUrl + '/auth/signin/google/callback',
passReqToCallback: true
},
function (request, accessToken, refreshToken, profile, done) {
socialStrategy(profile.email, profile, providers.GOOGLE, done);
}
));
passport.use(new MicrosoftStrategy({
clientID: config.microsoft.clientId,
clientSecret: config.microsoft.clientSecret,
callbackURL: config.apiUrl + '/auth/signin/microsoft/callback',
passReqToCallback: true
},
function (request, accessToken, refreshToken, profile, done) {
const email = profile._json.mail || profile._json.userPrincipalName;
socialStrategy(email, profile, providers.MICROSOFT, done);
}
));
function socialStrategy(email, profile, provider, done) {
db.users.findOrCreate({where: {email, provider}}).then(([user, created]) => {
const body = {
id: user.id,
email: user.email,
name: profile.displayName,
};
const token = helpers.jwtSign({user: body});
return done(null, {token});
});
}

79
backend/src/config.js Normal file
View File

@ -0,0 +1,79 @@
const os = require('os');
const config = {
gcloud: {
bucket: "fldemo-files",
hash: "afeefb9d49f5b7977577876b99532ac7"
},
bcrypt: {
saltRounds: 12
},
admin_pass: "43459de6",
user_pass: "87a9d6a4a95f",
admin_email: "admin@flatlogic.com",
providers: {
LOCAL: 'local',
GOOGLE: 'google',
MICROSOFT: 'microsoft'
},
secret_key: process.env.SECRET_KEY || '43459de6-7509-47c0-a2b7-87a9d6a4a95f',
remote: '',
port: process.env.NODE_ENV === "production" ? "" : "8080",
hostUI: process.env.NODE_ENV === "production" ? "" : "http://localhost",
portUI: process.env.NODE_ENV === "production" ? "" : "3000",
portUIProd: process.env.NODE_ENV === "production" ? "" : ":3000",
swaggerUI: process.env.NODE_ENV === "production" ? "" : "http://localhost",
swaggerPort: process.env.NODE_ENV === "production" ? "" : ":8080",
google: {
clientId: process.env.GOOGLE_CLIENT_ID || '',
clientSecret: process.env.GOOGLE_CLIENT_SECRET || '',
},
microsoft: {
clientId: process.env.MS_CLIENT_ID || '',
clientSecret: process.env.MS_CLIENT_SECRET || '',
},
uploadDir: os.tmpdir(),
email: {
from: 'NOIR AI <app@flatlogic.app>',
host: 'email-smtp.us-east-1.amazonaws.com',
port: 587,
auth: {
user: process.env.EMAIL_USER || '',
pass: process.env.EMAIL_PASS,
},
tls: {
rejectUnauthorized: false
}
},
roles: {
admin: 'Administrator',
user: 'Reader',
},
project_uuid: '43459de6-7509-47c0-a2b7-87a9d6a4a95f',
flHost: process.env.NODE_ENV === 'production' || process.env.NODE_ENV === 'dev_stage' ? 'https://flatlogic.com/projects' : 'http://localhost:3000/projects',
gpt_key: process.env.GPT_KEY || '',
};
config.pexelsKey = process.env.PEXELS_KEY || '';
config.pexelsQuery = 'gold coins on dark background';
config.host = process.env.NODE_ENV === "production" ? config.remote : "http://localhost";
config.apiUrl = `${config.host}${config.port ? `:${config.port}` : ``}/api`;
config.swaggerUrl = `${config.swaggerUI}${config.swaggerPort}`;
config.uiUrl = `${config.hostUI}${config.portUI ? `:${config.portUI}` : ``}/#`;
config.backUrl = `${config.hostUI}${config.portUI ? `:${config.portUI}` : ``}`;
module.exports = config;

View File

@ -0,0 +1,551 @@
const db = require('../models');
const FileDBApi = require('./file');
const crypto = require('crypto');
const Utils = require('../utils');
const Sequelize = db.Sequelize;
const Op = Sequelize.Op;
module.exports = class Achievement_definitionsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const achievement_definitions = await db.achievement_definitions.create(
{
id: data.id || undefined,
name: data.name
||
null
,
description: data.description
||
null
,
category: data.category
||
null
,
rarity: data.rarity
||
null
,
target_value: data.target_value
||
null
,
metric: data.metric
||
null
,
active: data.active
||
false
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.achievement_definitions.getTableName(),
belongsToColumn: 'badge_images',
belongsToId: achievement_definitions.id,
},
data.badge_images,
options,
);
return achievement_definitions;
}
static async bulkImport(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
// Prepare data - wrapping individual data transformations in a map() method
const achievement_definitionsData = data.map((item, index) => ({
id: item.id || undefined,
name: item.name
||
null
,
description: item.description
||
null
,
category: item.category
||
null
,
rarity: item.rarity
||
null
,
target_value: item.target_value
||
null
,
metric: item.metric
||
null
,
active: item.active
||
false
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const achievement_definitions = await db.achievement_definitions.bulkCreate(achievement_definitionsData, { transaction });
// For each item created, replace relation files
for (let i = 0; i < achievement_definitions.length; i++) {
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.achievement_definitions.getTableName(),
belongsToColumn: 'badge_images',
belongsToId: achievement_definitions[i].id,
},
data[i].badge_images,
options,
);
}
return achievement_definitions;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const achievement_definitions = await db.achievement_definitions.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.name !== undefined) updatePayload.name = data.name;
if (data.description !== undefined) updatePayload.description = data.description;
if (data.category !== undefined) updatePayload.category = data.category;
if (data.rarity !== undefined) updatePayload.rarity = data.rarity;
if (data.target_value !== undefined) updatePayload.target_value = data.target_value;
if (data.metric !== undefined) updatePayload.metric = data.metric;
if (data.active !== undefined) updatePayload.active = data.active;
updatePayload.updatedById = currentUser.id;
await achievement_definitions.update(updatePayload, {transaction});
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.achievement_definitions.getTableName(),
belongsToColumn: 'badge_images',
belongsToId: achievement_definitions.id,
},
data.badge_images,
options,
);
return achievement_definitions;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const achievement_definitions = await db.achievement_definitions.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of achievement_definitions) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of achievement_definitions) {
await record.destroy({transaction});
}
});
return achievement_definitions;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const achievement_definitions = await db.achievement_definitions.findByPk(id, options);
await achievement_definitions.update({
deletedBy: currentUser.id
}, {
transaction,
});
await achievement_definitions.destroy({
transaction
});
return achievement_definitions;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const achievement_definitions = await db.achievement_definitions.findOne(
{ where },
{ transaction },
);
if (!achievement_definitions) {
return achievement_definitions;
}
const output = achievement_definitions.get({plain: true});
output.user_achievements_achievement_definition = await achievement_definitions.getUser_achievements_achievement_definition({
transaction
});
output.badge_images = await achievement_definitions.getBadge_images({
transaction
});
return output;
}
static async findAll(
filter,
options
) {
const limit = filter.limit || 0;
let offset = 0;
let where = {};
const currentPage = +filter.page;
offset = currentPage * limit;
const orderBy = null;
const transaction = (options && options.transaction) || undefined;
let include = [
{
model: db.file,
as: 'badge_images',
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.name) {
where = {
...where,
[Op.and]: Utils.ilike(
'achievement_definitions',
'name',
filter.name,
),
};
}
if (filter.description) {
where = {
...where,
[Op.and]: Utils.ilike(
'achievement_definitions',
'description',
filter.description,
),
};
}
if (filter.target_valueRange) {
const [start, end] = filter.target_valueRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
target_value: {
...where.target_value,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
target_value: {
...where.target_value,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.category) {
where = {
...where,
category: filter.category,
};
}
if (filter.rarity) {
where = {
...where,
rarity: filter.rarity,
};
}
if (filter.metric) {
where = {
...where,
metric: filter.metric,
};
}
if (filter.active) {
where = {
...where,
active: filter.active,
};
}
if (filter.createdAtRange) {
const [start, end] = filter.createdAtRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.lte]: end,
},
};
}
}
}
const queryOptions = {
where,
include,
distinct: true,
order: filter.field && filter.sort
? [[filter.field, filter.sort]]
: [['createdAt', 'desc']],
transaction: options?.transaction,
logging: console.log
};
if (!options?.countOnly) {
queryOptions.limit = limit ? Number(limit) : undefined;
queryOptions.offset = offset ? Number(offset) : undefined;
}
try {
const { rows, count } = await db.achievement_definitions.findAndCountAll(queryOptions);
return {
rows: options?.countOnly ? [] : rows,
count: count
};
} catch (error) {
console.error('Error executing query:', error);
throw error;
}
}
static async findAllAutocomplete(query, limit, offset, ) {
let where = {};
if (query) {
where = {
[Op.or]: [
{ ['id']: Utils.uuid(query) },
Utils.ilike(
'achievement_definitions',
'name',
query,
),
],
};
}
const records = await db.achievement_definitions.findAll({
attributes: [ 'id', 'name' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['name', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.name,
}));
}
};

View File

@ -0,0 +1,472 @@
const db = require('../models');
const FileDBApi = require('./file');
const crypto = require('crypto');
const Utils = require('../utils');
const Sequelize = db.Sequelize;
const Op = Sequelize.Op;
module.exports = class AuthorsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const authors = await db.authors.create(
{
id: data.id || undefined,
name: data.name
||
null
,
bio: data.bio
||
null
,
website_url: data.website_url
||
null
,
primary_language: data.primary_language
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.authors.getTableName(),
belongsToColumn: 'photo_images',
belongsToId: authors.id,
},
data.photo_images,
options,
);
return authors;
}
static async bulkImport(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
// Prepare data - wrapping individual data transformations in a map() method
const authorsData = data.map((item, index) => ({
id: item.id || undefined,
name: item.name
||
null
,
bio: item.bio
||
null
,
website_url: item.website_url
||
null
,
primary_language: item.primary_language
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const authors = await db.authors.bulkCreate(authorsData, { transaction });
// For each item created, replace relation files
for (let i = 0; i < authors.length; i++) {
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.authors.getTableName(),
belongsToColumn: 'photo_images',
belongsToId: authors[i].id,
},
data[i].photo_images,
options,
);
}
return authors;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const authors = await db.authors.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.name !== undefined) updatePayload.name = data.name;
if (data.bio !== undefined) updatePayload.bio = data.bio;
if (data.website_url !== undefined) updatePayload.website_url = data.website_url;
if (data.primary_language !== undefined) updatePayload.primary_language = data.primary_language;
updatePayload.updatedById = currentUser.id;
await authors.update(updatePayload, {transaction});
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.authors.getTableName(),
belongsToColumn: 'photo_images',
belongsToId: authors.id,
},
data.photo_images,
options,
);
return authors;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const authors = await db.authors.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of authors) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of authors) {
await record.destroy({transaction});
}
});
return authors;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const authors = await db.authors.findByPk(id, options);
await authors.update({
deletedBy: currentUser.id
}, {
transaction,
});
await authors.destroy({
transaction
});
return authors;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const authors = await db.authors.findOne(
{ where },
{ transaction },
);
if (!authors) {
return authors;
}
const output = authors.get({plain: true});
output.photo_images = await authors.getPhoto_images({
transaction
});
return output;
}
static async findAll(
filter,
options
) {
const limit = filter.limit || 0;
let offset = 0;
let where = {};
const currentPage = +filter.page;
offset = currentPage * limit;
const orderBy = null;
const transaction = (options && options.transaction) || undefined;
let include = [
{
model: db.file,
as: 'photo_images',
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.name) {
where = {
...where,
[Op.and]: Utils.ilike(
'authors',
'name',
filter.name,
),
};
}
if (filter.bio) {
where = {
...where,
[Op.and]: Utils.ilike(
'authors',
'bio',
filter.bio,
),
};
}
if (filter.website_url) {
where = {
...where,
[Op.and]: Utils.ilike(
'authors',
'website_url',
filter.website_url,
),
};
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.primary_language) {
where = {
...where,
primary_language: filter.primary_language,
};
}
if (filter.createdAtRange) {
const [start, end] = filter.createdAtRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.lte]: end,
},
};
}
}
}
const queryOptions = {
where,
include,
distinct: true,
order: filter.field && filter.sort
? [[filter.field, filter.sort]]
: [['createdAt', 'desc']],
transaction: options?.transaction,
logging: console.log
};
if (!options?.countOnly) {
queryOptions.limit = limit ? Number(limit) : undefined;
queryOptions.offset = offset ? Number(offset) : undefined;
}
try {
const { rows, count } = await db.authors.findAndCountAll(queryOptions);
return {
rows: options?.countOnly ? [] : rows,
count: count
};
} catch (error) {
console.error('Error executing query:', error);
throw error;
}
}
static async findAllAutocomplete(query, limit, offset, ) {
let where = {};
if (query) {
where = {
[Op.or]: [
{ ['id']: Utils.uuid(query) },
Utils.ilike(
'authors',
'name',
query,
),
],
};
}
const records = await db.authors.findAll({
attributes: [ 'id', 'name' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['name', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.name,
}));
}
};

View File

@ -0,0 +1,489 @@
const db = require('../models');
const FileDBApi = require('./file');
const crypto = require('crypto');
const Utils = require('../utils');
const Sequelize = db.Sequelize;
const Op = Sequelize.Op;
module.exports = class Book_club_membershipsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const book_club_memberships = await db.book_club_memberships.create(
{
id: data.id || undefined,
role: data.role
||
null
,
status: data.status
||
null
,
joined_at: data.joined_at
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await book_club_memberships.setBook_club( data.book_club || null, {
transaction,
});
await book_club_memberships.setUser( data.user || null, {
transaction,
});
return book_club_memberships;
}
static async bulkImport(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
// Prepare data - wrapping individual data transformations in a map() method
const book_club_membershipsData = data.map((item, index) => ({
id: item.id || undefined,
role: item.role
||
null
,
status: item.status
||
null
,
joined_at: item.joined_at
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const book_club_memberships = await db.book_club_memberships.bulkCreate(book_club_membershipsData, { transaction });
// For each item created, replace relation files
return book_club_memberships;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const book_club_memberships = await db.book_club_memberships.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.role !== undefined) updatePayload.role = data.role;
if (data.status !== undefined) updatePayload.status = data.status;
if (data.joined_at !== undefined) updatePayload.joined_at = data.joined_at;
updatePayload.updatedById = currentUser.id;
await book_club_memberships.update(updatePayload, {transaction});
if (data.book_club !== undefined) {
await book_club_memberships.setBook_club(
data.book_club,
{ transaction }
);
}
if (data.user !== undefined) {
await book_club_memberships.setUser(
data.user,
{ transaction }
);
}
return book_club_memberships;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const book_club_memberships = await db.book_club_memberships.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of book_club_memberships) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of book_club_memberships) {
await record.destroy({transaction});
}
});
return book_club_memberships;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const book_club_memberships = await db.book_club_memberships.findByPk(id, options);
await book_club_memberships.update({
deletedBy: currentUser.id
}, {
transaction,
});
await book_club_memberships.destroy({
transaction
});
return book_club_memberships;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const book_club_memberships = await db.book_club_memberships.findOne(
{ where },
{ transaction },
);
if (!book_club_memberships) {
return book_club_memberships;
}
const output = book_club_memberships.get({plain: true});
output.book_club = await book_club_memberships.getBook_club({
transaction
});
output.user = await book_club_memberships.getUser({
transaction
});
return output;
}
static async findAll(
filter,
options
) {
const limit = filter.limit || 0;
let offset = 0;
let where = {};
const currentPage = +filter.page;
offset = currentPage * limit;
const orderBy = null;
const transaction = (options && options.transaction) || undefined;
let include = [
{
model: db.book_clubs,
as: 'book_club',
where: filter.book_club ? {
[Op.or]: [
{ id: { [Op.in]: filter.book_club.split('|').map(term => Utils.uuid(term)) } },
{
name: {
[Op.or]: filter.book_club.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.users,
as: 'user',
where: filter.user ? {
[Op.or]: [
{ id: { [Op.in]: filter.user.split('|').map(term => Utils.uuid(term)) } },
{
firstName: {
[Op.or]: filter.user.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.joined_atRange) {
const [start, end] = filter.joined_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
joined_at: {
...where.joined_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
joined_at: {
...where.joined_at,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.role) {
where = {
...where,
role: filter.role,
};
}
if (filter.status) {
where = {
...where,
status: filter.status,
};
}
if (filter.createdAtRange) {
const [start, end] = filter.createdAtRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.lte]: end,
},
};
}
}
}
const queryOptions = {
where,
include,
distinct: true,
order: filter.field && filter.sort
? [[filter.field, filter.sort]]
: [['createdAt', 'desc']],
transaction: options?.transaction,
logging: console.log
};
if (!options?.countOnly) {
queryOptions.limit = limit ? Number(limit) : undefined;
queryOptions.offset = offset ? Number(offset) : undefined;
}
try {
const { rows, count } = await db.book_club_memberships.findAndCountAll(queryOptions);
return {
rows: options?.countOnly ? [] : rows,
count: count
};
} catch (error) {
console.error('Error executing query:', error);
throw error;
}
}
static async findAllAutocomplete(query, limit, offset, ) {
let where = {};
if (query) {
where = {
[Op.or]: [
{ ['id']: Utils.uuid(query) },
Utils.ilike(
'book_club_memberships',
'status',
query,
),
],
};
}
const records = await db.book_club_memberships.findAll({
attributes: [ 'id', 'status' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['status', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.status,
}));
}
};

View File

@ -0,0 +1,554 @@
const db = require('../models');
const FileDBApi = require('./file');
const crypto = require('crypto');
const Utils = require('../utils');
const Sequelize = db.Sequelize;
const Op = Sequelize.Op;
module.exports = class Book_clubsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const book_clubs = await db.book_clubs.create(
{
id: data.id || undefined,
name: data.name
||
null
,
description: data.description
||
null
,
visibility: data.visibility
||
null
,
status: data.status
||
null
,
created_at_time: data.created_at_time
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await book_clubs.setOwner( data.owner || null, {
transaction,
});
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.book_clubs.getTableName(),
belongsToColumn: 'cover_images',
belongsToId: book_clubs.id,
},
data.cover_images,
options,
);
return book_clubs;
}
static async bulkImport(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
// Prepare data - wrapping individual data transformations in a map() method
const book_clubsData = data.map((item, index) => ({
id: item.id || undefined,
name: item.name
||
null
,
description: item.description
||
null
,
visibility: item.visibility
||
null
,
status: item.status
||
null
,
created_at_time: item.created_at_time
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const book_clubs = await db.book_clubs.bulkCreate(book_clubsData, { transaction });
// For each item created, replace relation files
for (let i = 0; i < book_clubs.length; i++) {
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.book_clubs.getTableName(),
belongsToColumn: 'cover_images',
belongsToId: book_clubs[i].id,
},
data[i].cover_images,
options,
);
}
return book_clubs;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const book_clubs = await db.book_clubs.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.name !== undefined) updatePayload.name = data.name;
if (data.description !== undefined) updatePayload.description = data.description;
if (data.visibility !== undefined) updatePayload.visibility = data.visibility;
if (data.status !== undefined) updatePayload.status = data.status;
if (data.created_at_time !== undefined) updatePayload.created_at_time = data.created_at_time;
updatePayload.updatedById = currentUser.id;
await book_clubs.update(updatePayload, {transaction});
if (data.owner !== undefined) {
await book_clubs.setOwner(
data.owner,
{ transaction }
);
}
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.book_clubs.getTableName(),
belongsToColumn: 'cover_images',
belongsToId: book_clubs.id,
},
data.cover_images,
options,
);
return book_clubs;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const book_clubs = await db.book_clubs.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of book_clubs) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of book_clubs) {
await record.destroy({transaction});
}
});
return book_clubs;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const book_clubs = await db.book_clubs.findByPk(id, options);
await book_clubs.update({
deletedBy: currentUser.id
}, {
transaction,
});
await book_clubs.destroy({
transaction
});
return book_clubs;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const book_clubs = await db.book_clubs.findOne(
{ where },
{ transaction },
);
if (!book_clubs) {
return book_clubs;
}
const output = book_clubs.get({plain: true});
output.book_club_memberships_book_club = await book_clubs.getBook_club_memberships_book_club({
transaction
});
output.club_chat_messages_book_club = await book_clubs.getClub_chat_messages_book_club({
transaction
});
output.reading_circle_events_book_club = await book_clubs.getReading_circle_events_book_club({
transaction
});
output.cover_images = await book_clubs.getCover_images({
transaction
});
output.owner = await book_clubs.getOwner({
transaction
});
return output;
}
static async findAll(
filter,
options
) {
const limit = filter.limit || 0;
let offset = 0;
let where = {};
const currentPage = +filter.page;
offset = currentPage * limit;
const orderBy = null;
const transaction = (options && options.transaction) || undefined;
let include = [
{
model: db.users,
as: 'owner',
where: filter.owner ? {
[Op.or]: [
{ id: { [Op.in]: filter.owner.split('|').map(term => Utils.uuid(term)) } },
{
firstName: {
[Op.or]: filter.owner.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.file,
as: 'cover_images',
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.name) {
where = {
...where,
[Op.and]: Utils.ilike(
'book_clubs',
'name',
filter.name,
),
};
}
if (filter.description) {
where = {
...where,
[Op.and]: Utils.ilike(
'book_clubs',
'description',
filter.description,
),
};
}
if (filter.created_at_timeRange) {
const [start, end] = filter.created_at_timeRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
created_at_time: {
...where.created_at_time,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
created_at_time: {
...where.created_at_time,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.visibility) {
where = {
...where,
visibility: filter.visibility,
};
}
if (filter.status) {
where = {
...where,
status: filter.status,
};
}
if (filter.createdAtRange) {
const [start, end] = filter.createdAtRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.lte]: end,
},
};
}
}
}
const queryOptions = {
where,
include,
distinct: true,
order: filter.field && filter.sort
? [[filter.field, filter.sort]]
: [['createdAt', 'desc']],
transaction: options?.transaction,
logging: console.log
};
if (!options?.countOnly) {
queryOptions.limit = limit ? Number(limit) : undefined;
queryOptions.offset = offset ? Number(offset) : undefined;
}
try {
const { rows, count } = await db.book_clubs.findAndCountAll(queryOptions);
return {
rows: options?.countOnly ? [] : rows,
count: count
};
} catch (error) {
console.error('Error executing query:', error);
throw error;
}
}
static async findAllAutocomplete(query, limit, offset, ) {
let where = {};
if (query) {
where = {
[Op.or]: [
{ ['id']: Utils.uuid(query) },
Utils.ilike(
'book_clubs',
'name',
query,
),
],
};
}
const records = await db.book_clubs.findAll({
attributes: [ 'id', 'name' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['name', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.name,
}));
}
};

View File

@ -0,0 +1,510 @@
const db = require('../models');
const FileDBApi = require('./file');
const crypto = require('crypto');
const Utils = require('../utils');
const Sequelize = db.Sequelize;
const Op = Sequelize.Op;
module.exports = class BookmarksDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const bookmarks = await db.bookmarks.create(
{
id: data.id || undefined,
location: data.location
||
null
,
label: data.label
||
null
,
added_at: data.added_at
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await bookmarks.setUser( data.user || null, {
transaction,
});
await bookmarks.setBook( data.book || null, {
transaction,
});
return bookmarks;
}
static async bulkImport(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
// Prepare data - wrapping individual data transformations in a map() method
const bookmarksData = data.map((item, index) => ({
id: item.id || undefined,
location: item.location
||
null
,
label: item.label
||
null
,
added_at: item.added_at
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const bookmarks = await db.bookmarks.bulkCreate(bookmarksData, { transaction });
// For each item created, replace relation files
return bookmarks;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const bookmarks = await db.bookmarks.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.location !== undefined) updatePayload.location = data.location;
if (data.label !== undefined) updatePayload.label = data.label;
if (data.added_at !== undefined) updatePayload.added_at = data.added_at;
updatePayload.updatedById = currentUser.id;
await bookmarks.update(updatePayload, {transaction});
if (data.user !== undefined) {
await bookmarks.setUser(
data.user,
{ transaction }
);
}
if (data.book !== undefined) {
await bookmarks.setBook(
data.book,
{ transaction }
);
}
return bookmarks;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const bookmarks = await db.bookmarks.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of bookmarks) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of bookmarks) {
await record.destroy({transaction});
}
});
return bookmarks;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const bookmarks = await db.bookmarks.findByPk(id, options);
await bookmarks.update({
deletedBy: currentUser.id
}, {
transaction,
});
await bookmarks.destroy({
transaction
});
return bookmarks;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const bookmarks = await db.bookmarks.findOne(
{ where },
{ transaction },
);
if (!bookmarks) {
return bookmarks;
}
const output = bookmarks.get({plain: true});
output.user = await bookmarks.getUser({
transaction
});
output.book = await bookmarks.getBook({
transaction
});
return output;
}
static async findAll(
filter,
options
) {
const limit = filter.limit || 0;
let offset = 0;
let where = {};
const currentPage = +filter.page;
offset = currentPage * limit;
const orderBy = null;
const transaction = (options && options.transaction) || undefined;
let include = [
{
model: db.users,
as: 'user',
where: filter.user ? {
[Op.or]: [
{ id: { [Op.in]: filter.user.split('|').map(term => Utils.uuid(term)) } },
{
firstName: {
[Op.or]: filter.user.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.books,
as: 'book',
where: filter.book ? {
[Op.or]: [
{ id: { [Op.in]: filter.book.split('|').map(term => Utils.uuid(term)) } },
{
title: {
[Op.or]: filter.book.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.label) {
where = {
...where,
[Op.and]: Utils.ilike(
'bookmarks',
'label',
filter.label,
),
};
}
if (filter.locationRange) {
const [start, end] = filter.locationRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
location: {
...where.location,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
location: {
...where.location,
[Op.lte]: end,
},
};
}
}
if (filter.added_atRange) {
const [start, end] = filter.added_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
added_at: {
...where.added_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
added_at: {
...where.added_at,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.createdAtRange) {
const [start, end] = filter.createdAtRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.lte]: end,
},
};
}
}
}
const queryOptions = {
where,
include,
distinct: true,
order: filter.field && filter.sort
? [[filter.field, filter.sort]]
: [['createdAt', 'desc']],
transaction: options?.transaction,
logging: console.log
};
if (!options?.countOnly) {
queryOptions.limit = limit ? Number(limit) : undefined;
queryOptions.offset = offset ? Number(offset) : undefined;
}
try {
const { rows, count } = await db.bookmarks.findAndCountAll(queryOptions);
return {
rows: options?.countOnly ? [] : rows,
count: count
};
} catch (error) {
console.error('Error executing query:', error);
throw error;
}
}
static async findAllAutocomplete(query, limit, offset, ) {
let where = {};
if (query) {
where = {
[Op.or]: [
{ ['id']: Utils.uuid(query) },
Utils.ilike(
'bookmarks',
'label',
query,
),
],
};
}
const records = await db.bookmarks.findAll({
attributes: [ 'id', 'label' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['label', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.label,
}));
}
};

953
backend/src/db/api/books.js Normal file
View File

@ -0,0 +1,953 @@
const db = require('../models');
const FileDBApi = require('./file');
const crypto = require('crypto');
const Utils = require('../utils');
const Sequelize = db.Sequelize;
const Op = Sequelize.Op;
module.exports = class BooksDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const books = await db.books.create(
{
id: data.id || undefined,
title: data.title
||
null
,
subtitle: data.subtitle
||
null
,
isbn: data.isbn
||
null
,
language: data.language
||
null
,
format: data.format
||
null
,
status: data.status
||
null
,
description: data.description
||
null
,
page_count: data.page_count
||
null
,
word_count: data.word_count
||
null
,
duration_seconds: data.duration_seconds
||
null
,
difficulty_score: data.difficulty_score
||
null
,
popularity_score: data.popularity_score
||
null
,
published_at: data.published_at
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await books.setPublisher( data.publisher || null, {
transaction,
});
await books.setAuthors(data.authors || [], {
transaction,
});
await books.setGenres(data.genres || [], {
transaction,
});
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.books.getTableName(),
belongsToColumn: 'cover_images',
belongsToId: books.id,
},
data.cover_images,
options,
);
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.books.getTableName(),
belongsToColumn: 'content_files',
belongsToId: books.id,
},
data.content_files,
options,
);
return books;
}
static async bulkImport(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
// Prepare data - wrapping individual data transformations in a map() method
const booksData = data.map((item, index) => ({
id: item.id || undefined,
title: item.title
||
null
,
subtitle: item.subtitle
||
null
,
isbn: item.isbn
||
null
,
language: item.language
||
null
,
format: item.format
||
null
,
status: item.status
||
null
,
description: item.description
||
null
,
page_count: item.page_count
||
null
,
word_count: item.word_count
||
null
,
duration_seconds: item.duration_seconds
||
null
,
difficulty_score: item.difficulty_score
||
null
,
popularity_score: item.popularity_score
||
null
,
published_at: item.published_at
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const books = await db.books.bulkCreate(booksData, { transaction });
// For each item created, replace relation files
for (let i = 0; i < books.length; i++) {
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.books.getTableName(),
belongsToColumn: 'cover_images',
belongsToId: books[i].id,
},
data[i].cover_images,
options,
);
}
for (let i = 0; i < books.length; i++) {
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.books.getTableName(),
belongsToColumn: 'content_files',
belongsToId: books[i].id,
},
data[i].content_files,
options,
);
}
return books;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const books = await db.books.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.title !== undefined) updatePayload.title = data.title;
if (data.subtitle !== undefined) updatePayload.subtitle = data.subtitle;
if (data.isbn !== undefined) updatePayload.isbn = data.isbn;
if (data.language !== undefined) updatePayload.language = data.language;
if (data.format !== undefined) updatePayload.format = data.format;
if (data.status !== undefined) updatePayload.status = data.status;
if (data.description !== undefined) updatePayload.description = data.description;
if (data.page_count !== undefined) updatePayload.page_count = data.page_count;
if (data.word_count !== undefined) updatePayload.word_count = data.word_count;
if (data.duration_seconds !== undefined) updatePayload.duration_seconds = data.duration_seconds;
if (data.difficulty_score !== undefined) updatePayload.difficulty_score = data.difficulty_score;
if (data.popularity_score !== undefined) updatePayload.popularity_score = data.popularity_score;
if (data.published_at !== undefined) updatePayload.published_at = data.published_at;
updatePayload.updatedById = currentUser.id;
await books.update(updatePayload, {transaction});
if (data.publisher !== undefined) {
await books.setPublisher(
data.publisher,
{ transaction }
);
}
if (data.authors !== undefined) {
await books.setAuthors(data.authors, { transaction });
}
if (data.genres !== undefined) {
await books.setGenres(data.genres, { transaction });
}
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.books.getTableName(),
belongsToColumn: 'cover_images',
belongsToId: books.id,
},
data.cover_images,
options,
);
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.books.getTableName(),
belongsToColumn: 'content_files',
belongsToId: books.id,
},
data.content_files,
options,
);
return books;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const books = await db.books.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of books) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of books) {
await record.destroy({transaction});
}
});
return books;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const books = await db.books.findByPk(id, options);
await books.update({
deletedBy: currentUser.id
}, {
transaction,
});
await books.destroy({
transaction
});
return books;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const books = await db.books.findOne(
{ where },
{ transaction },
);
if (!books) {
return books;
}
const output = books.get({plain: true});
output.user_library_items_book = await books.getUser_library_items_book({
transaction
});
output.bookmarks_book = await books.getBookmarks_book({
transaction
});
output.notes_book = await books.getNotes_book({
transaction
});
output.camera_scan_sessions_book = await books.getCamera_scan_sessions_book({
transaction
});
output.coin_ledger_entries_book = await books.getCoin_ledger_entries_book({
transaction
});
output.quiz_definitions_book = await books.getQuiz_definitions_book({
transaction
});
output.reading_circle_events_book = await books.getReading_circle_events_book({
transaction
});
output.recommendation_events_book = await books.getRecommendation_events_book({
transaction
});
output.cover_images = await books.getCover_images({
transaction
});
output.content_files = await books.getContent_files({
transaction
});
output.publisher = await books.getPublisher({
transaction
});
output.authors = await books.getAuthors({
transaction
});
output.genres = await books.getGenres({
transaction
});
return output;
}
static async findAll(
filter,
options
) {
const limit = filter.limit || 0;
let offset = 0;
let where = {};
const currentPage = +filter.page;
offset = currentPage * limit;
const orderBy = null;
const transaction = (options && options.transaction) || undefined;
let include = [
{
model: db.publishers,
as: 'publisher',
where: filter.publisher ? {
[Op.or]: [
{ id: { [Op.in]: filter.publisher.split('|').map(term => Utils.uuid(term)) } },
{
name: {
[Op.or]: filter.publisher.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.authors,
as: 'authors',
required: false,
},
{
model: db.genres,
as: 'genres',
required: false,
},
{
model: db.file,
as: 'cover_images',
},
{
model: db.file,
as: 'content_files',
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.title) {
where = {
...where,
[Op.and]: Utils.ilike(
'books',
'title',
filter.title,
),
};
}
if (filter.subtitle) {
where = {
...where,
[Op.and]: Utils.ilike(
'books',
'subtitle',
filter.subtitle,
),
};
}
if (filter.isbn) {
where = {
...where,
[Op.and]: Utils.ilike(
'books',
'isbn',
filter.isbn,
),
};
}
if (filter.description) {
where = {
...where,
[Op.and]: Utils.ilike(
'books',
'description',
filter.description,
),
};
}
if (filter.page_countRange) {
const [start, end] = filter.page_countRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
page_count: {
...where.page_count,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
page_count: {
...where.page_count,
[Op.lte]: end,
},
};
}
}
if (filter.word_countRange) {
const [start, end] = filter.word_countRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
word_count: {
...where.word_count,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
word_count: {
...where.word_count,
[Op.lte]: end,
},
};
}
}
if (filter.duration_secondsRange) {
const [start, end] = filter.duration_secondsRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
duration_seconds: {
...where.duration_seconds,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
duration_seconds: {
...where.duration_seconds,
[Op.lte]: end,
},
};
}
}
if (filter.difficulty_scoreRange) {
const [start, end] = filter.difficulty_scoreRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
difficulty_score: {
...where.difficulty_score,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
difficulty_score: {
...where.difficulty_score,
[Op.lte]: end,
},
};
}
}
if (filter.popularity_scoreRange) {
const [start, end] = filter.popularity_scoreRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
popularity_score: {
...where.popularity_score,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
popularity_score: {
...where.popularity_score,
[Op.lte]: end,
},
};
}
}
if (filter.published_atRange) {
const [start, end] = filter.published_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
published_at: {
...where.published_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
published_at: {
...where.published_at,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.language) {
where = {
...where,
language: filter.language,
};
}
if (filter.format) {
where = {
...where,
format: filter.format,
};
}
if (filter.status) {
where = {
...where,
status: filter.status,
};
}
if (filter.authors) {
const searchTerms = filter.authors.split('|');
include = [
{
model: db.authors,
as: 'authors_filter',
required: searchTerms.length > 0,
where: searchTerms.length > 0 ? {
[Op.or]: [
{ id: { [Op.in]: searchTerms.map(term => Utils.uuid(term)) } },
{
name: {
[Op.or]: searchTerms.map(term => ({ [Op.iLike]: `%${term}%` }))
}
}
]
} : undefined
},
...include,
]
}
if (filter.genres) {
const searchTerms = filter.genres.split('|');
include = [
{
model: db.genres,
as: 'genres_filter',
required: searchTerms.length > 0,
where: searchTerms.length > 0 ? {
[Op.or]: [
{ id: { [Op.in]: searchTerms.map(term => Utils.uuid(term)) } },
{
name: {
[Op.or]: searchTerms.map(term => ({ [Op.iLike]: `%${term}%` }))
}
}
]
} : undefined
},
...include,
]
}
if (filter.createdAtRange) {
const [start, end] = filter.createdAtRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.lte]: end,
},
};
}
}
}
const queryOptions = {
where,
include,
distinct: true,
order: filter.field && filter.sort
? [[filter.field, filter.sort]]
: [['createdAt', 'desc']],
transaction: options?.transaction,
logging: console.log
};
if (!options?.countOnly) {
queryOptions.limit = limit ? Number(limit) : undefined;
queryOptions.offset = offset ? Number(offset) : undefined;
}
try {
const { rows, count } = await db.books.findAndCountAll(queryOptions);
return {
rows: options?.countOnly ? [] : rows,
count: count
};
} catch (error) {
console.error('Error executing query:', error);
throw error;
}
}
static async findAllAutocomplete(query, limit, offset, ) {
let where = {};
if (query) {
where = {
[Op.or]: [
{ ['id']: Utils.uuid(query) },
Utils.ilike(
'books',
'title',
query,
),
],
};
}
const records = await db.books.findAll({
attributes: [ 'id', 'title' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['title', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.title,
}));
}
};

View File

@ -0,0 +1,750 @@
const db = require('../models');
const FileDBApi = require('./file');
const crypto = require('crypto');
const Utils = require('../utils');
const Sequelize = db.Sequelize;
const Op = Sequelize.Op;
module.exports = class Camera_scan_sessionsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const camera_scan_sessions = await db.camera_scan_sessions.create(
{
id: data.id || undefined,
scan_type: data.scan_type
||
null
,
status: data.status
||
null
,
started_at: data.started_at
||
null
,
ended_at: data.ended_at
||
null
,
frames_analyzed: data.frames_analyzed
||
null
,
pages_detected: data.pages_detected
||
null
,
confidence_score: data.confidence_score
||
null
,
page_turning_detected: data.page_turning_detected
||
false
,
duplicate_page_detected: data.duplicate_page_detected
||
false
,
fraud_reason: data.fraud_reason
||
null
,
coins_awarded: data.coins_awarded
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await camera_scan_sessions.setUser( data.user || null, {
transaction,
});
await camera_scan_sessions.setBook( data.book || null, {
transaction,
});
return camera_scan_sessions;
}
static async bulkImport(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
// Prepare data - wrapping individual data transformations in a map() method
const camera_scan_sessionsData = data.map((item, index) => ({
id: item.id || undefined,
scan_type: item.scan_type
||
null
,
status: item.status
||
null
,
started_at: item.started_at
||
null
,
ended_at: item.ended_at
||
null
,
frames_analyzed: item.frames_analyzed
||
null
,
pages_detected: item.pages_detected
||
null
,
confidence_score: item.confidence_score
||
null
,
page_turning_detected: item.page_turning_detected
||
false
,
duplicate_page_detected: item.duplicate_page_detected
||
false
,
fraud_reason: item.fraud_reason
||
null
,
coins_awarded: item.coins_awarded
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const camera_scan_sessions = await db.camera_scan_sessions.bulkCreate(camera_scan_sessionsData, { transaction });
// For each item created, replace relation files
return camera_scan_sessions;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const camera_scan_sessions = await db.camera_scan_sessions.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.scan_type !== undefined) updatePayload.scan_type = data.scan_type;
if (data.status !== undefined) updatePayload.status = data.status;
if (data.started_at !== undefined) updatePayload.started_at = data.started_at;
if (data.ended_at !== undefined) updatePayload.ended_at = data.ended_at;
if (data.frames_analyzed !== undefined) updatePayload.frames_analyzed = data.frames_analyzed;
if (data.pages_detected !== undefined) updatePayload.pages_detected = data.pages_detected;
if (data.confidence_score !== undefined) updatePayload.confidence_score = data.confidence_score;
if (data.page_turning_detected !== undefined) updatePayload.page_turning_detected = data.page_turning_detected;
if (data.duplicate_page_detected !== undefined) updatePayload.duplicate_page_detected = data.duplicate_page_detected;
if (data.fraud_reason !== undefined) updatePayload.fraud_reason = data.fraud_reason;
if (data.coins_awarded !== undefined) updatePayload.coins_awarded = data.coins_awarded;
updatePayload.updatedById = currentUser.id;
await camera_scan_sessions.update(updatePayload, {transaction});
if (data.user !== undefined) {
await camera_scan_sessions.setUser(
data.user,
{ transaction }
);
}
if (data.book !== undefined) {
await camera_scan_sessions.setBook(
data.book,
{ transaction }
);
}
return camera_scan_sessions;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const camera_scan_sessions = await db.camera_scan_sessions.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of camera_scan_sessions) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of camera_scan_sessions) {
await record.destroy({transaction});
}
});
return camera_scan_sessions;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const camera_scan_sessions = await db.camera_scan_sessions.findByPk(id, options);
await camera_scan_sessions.update({
deletedBy: currentUser.id
}, {
transaction,
});
await camera_scan_sessions.destroy({
transaction
});
return camera_scan_sessions;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const camera_scan_sessions = await db.camera_scan_sessions.findOne(
{ where },
{ transaction },
);
if (!camera_scan_sessions) {
return camera_scan_sessions;
}
const output = camera_scan_sessions.get({plain: true});
output.coin_ledger_entries_scan_session = await camera_scan_sessions.getCoin_ledger_entries_scan_session({
transaction
});
output.fraud_flags_scan_session = await camera_scan_sessions.getFraud_flags_scan_session({
transaction
});
output.user = await camera_scan_sessions.getUser({
transaction
});
output.book = await camera_scan_sessions.getBook({
transaction
});
return output;
}
static async findAll(
filter,
options
) {
const limit = filter.limit || 0;
let offset = 0;
let where = {};
const currentPage = +filter.page;
offset = currentPage * limit;
const orderBy = null;
const transaction = (options && options.transaction) || undefined;
let include = [
{
model: db.users,
as: 'user',
where: filter.user ? {
[Op.or]: [
{ id: { [Op.in]: filter.user.split('|').map(term => Utils.uuid(term)) } },
{
firstName: {
[Op.or]: filter.user.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.books,
as: 'book',
where: filter.book ? {
[Op.or]: [
{ id: { [Op.in]: filter.book.split('|').map(term => Utils.uuid(term)) } },
{
title: {
[Op.or]: filter.book.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.fraud_reason) {
where = {
...where,
[Op.and]: Utils.ilike(
'camera_scan_sessions',
'fraud_reason',
filter.fraud_reason,
),
};
}
if (filter.started_atRange) {
const [start, end] = filter.started_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
started_at: {
...where.started_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
started_at: {
...where.started_at,
[Op.lte]: end,
},
};
}
}
if (filter.ended_atRange) {
const [start, end] = filter.ended_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
ended_at: {
...where.ended_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
ended_at: {
...where.ended_at,
[Op.lte]: end,
},
};
}
}
if (filter.frames_analyzedRange) {
const [start, end] = filter.frames_analyzedRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
frames_analyzed: {
...where.frames_analyzed,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
frames_analyzed: {
...where.frames_analyzed,
[Op.lte]: end,
},
};
}
}
if (filter.pages_detectedRange) {
const [start, end] = filter.pages_detectedRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
pages_detected: {
...where.pages_detected,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
pages_detected: {
...where.pages_detected,
[Op.lte]: end,
},
};
}
}
if (filter.confidence_scoreRange) {
const [start, end] = filter.confidence_scoreRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
confidence_score: {
...where.confidence_score,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
confidence_score: {
...where.confidence_score,
[Op.lte]: end,
},
};
}
}
if (filter.coins_awardedRange) {
const [start, end] = filter.coins_awardedRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
coins_awarded: {
...where.coins_awarded,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
coins_awarded: {
...where.coins_awarded,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.scan_type) {
where = {
...where,
scan_type: filter.scan_type,
};
}
if (filter.status) {
where = {
...where,
status: filter.status,
};
}
if (filter.page_turning_detected) {
where = {
...where,
page_turning_detected: filter.page_turning_detected,
};
}
if (filter.duplicate_page_detected) {
where = {
...where,
duplicate_page_detected: filter.duplicate_page_detected,
};
}
if (filter.createdAtRange) {
const [start, end] = filter.createdAtRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.lte]: end,
},
};
}
}
}
const queryOptions = {
where,
include,
distinct: true,
order: filter.field && filter.sort
? [[filter.field, filter.sort]]
: [['createdAt', 'desc']],
transaction: options?.transaction,
logging: console.log
};
if (!options?.countOnly) {
queryOptions.limit = limit ? Number(limit) : undefined;
queryOptions.offset = offset ? Number(offset) : undefined;
}
try {
const { rows, count } = await db.camera_scan_sessions.findAndCountAll(queryOptions);
return {
rows: options?.countOnly ? [] : rows,
count: count
};
} catch (error) {
console.error('Error executing query:', error);
throw error;
}
}
static async findAllAutocomplete(query, limit, offset, ) {
let where = {};
if (query) {
where = {
[Op.or]: [
{ ['id']: Utils.uuid(query) },
Utils.ilike(
'camera_scan_sessions',
'status',
query,
),
],
};
}
const records = await db.camera_scan_sessions.findAll({
attributes: [ 'id', 'status' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['status', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.status,
}));
}
};

View File

@ -0,0 +1,596 @@
const db = require('../models');
const FileDBApi = require('./file');
const crypto = require('crypto');
const Utils = require('../utils');
const Sequelize = db.Sequelize;
const Op = Sequelize.Op;
module.exports = class Challenge_definitionsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const challenge_definitions = await db.challenge_definitions.create(
{
id: data.id || undefined,
name: data.name
||
null
,
description: data.description
||
null
,
status: data.status
||
null
,
challenge_type: data.challenge_type
||
null
,
target_value: data.target_value
||
null
,
reward_coins: data.reward_coins
||
null
,
start_at: data.start_at
||
null
,
end_at: data.end_at
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
return challenge_definitions;
}
static async bulkImport(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
// Prepare data - wrapping individual data transformations in a map() method
const challenge_definitionsData = data.map((item, index) => ({
id: item.id || undefined,
name: item.name
||
null
,
description: item.description
||
null
,
status: item.status
||
null
,
challenge_type: item.challenge_type
||
null
,
target_value: item.target_value
||
null
,
reward_coins: item.reward_coins
||
null
,
start_at: item.start_at
||
null
,
end_at: item.end_at
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const challenge_definitions = await db.challenge_definitions.bulkCreate(challenge_definitionsData, { transaction });
// For each item created, replace relation files
return challenge_definitions;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const challenge_definitions = await db.challenge_definitions.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.name !== undefined) updatePayload.name = data.name;
if (data.description !== undefined) updatePayload.description = data.description;
if (data.status !== undefined) updatePayload.status = data.status;
if (data.challenge_type !== undefined) updatePayload.challenge_type = data.challenge_type;
if (data.target_value !== undefined) updatePayload.target_value = data.target_value;
if (data.reward_coins !== undefined) updatePayload.reward_coins = data.reward_coins;
if (data.start_at !== undefined) updatePayload.start_at = data.start_at;
if (data.end_at !== undefined) updatePayload.end_at = data.end_at;
updatePayload.updatedById = currentUser.id;
await challenge_definitions.update(updatePayload, {transaction});
return challenge_definitions;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const challenge_definitions = await db.challenge_definitions.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of challenge_definitions) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of challenge_definitions) {
await record.destroy({transaction});
}
});
return challenge_definitions;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const challenge_definitions = await db.challenge_definitions.findByPk(id, options);
await challenge_definitions.update({
deletedBy: currentUser.id
}, {
transaction,
});
await challenge_definitions.destroy({
transaction
});
return challenge_definitions;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const challenge_definitions = await db.challenge_definitions.findOne(
{ where },
{ transaction },
);
if (!challenge_definitions) {
return challenge_definitions;
}
const output = challenge_definitions.get({plain: true});
output.user_challenges_challenge_definition = await challenge_definitions.getUser_challenges_challenge_definition({
transaction
});
return output;
}
static async findAll(
filter,
options
) {
const limit = filter.limit || 0;
let offset = 0;
let where = {};
const currentPage = +filter.page;
offset = currentPage * limit;
const orderBy = null;
const transaction = (options && options.transaction) || undefined;
let include = [
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.name) {
where = {
...where,
[Op.and]: Utils.ilike(
'challenge_definitions',
'name',
filter.name,
),
};
}
if (filter.description) {
where = {
...where,
[Op.and]: Utils.ilike(
'challenge_definitions',
'description',
filter.description,
),
};
}
if (filter.calendarStart && filter.calendarEnd) {
where = {
...where,
[Op.or]: [
{
start_at: {
[Op.between]: [filter.calendarStart, filter.calendarEnd],
},
},
{
end_at: {
[Op.between]: [filter.calendarStart, filter.calendarEnd],
},
},
],
};
}
if (filter.target_valueRange) {
const [start, end] = filter.target_valueRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
target_value: {
...where.target_value,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
target_value: {
...where.target_value,
[Op.lte]: end,
},
};
}
}
if (filter.reward_coinsRange) {
const [start, end] = filter.reward_coinsRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
reward_coins: {
...where.reward_coins,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
reward_coins: {
...where.reward_coins,
[Op.lte]: end,
},
};
}
}
if (filter.start_atRange) {
const [start, end] = filter.start_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
start_at: {
...where.start_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
start_at: {
...where.start_at,
[Op.lte]: end,
},
};
}
}
if (filter.end_atRange) {
const [start, end] = filter.end_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
end_at: {
...where.end_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
end_at: {
...where.end_at,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.status) {
where = {
...where,
status: filter.status,
};
}
if (filter.challenge_type) {
where = {
...where,
challenge_type: filter.challenge_type,
};
}
if (filter.createdAtRange) {
const [start, end] = filter.createdAtRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.lte]: end,
},
};
}
}
}
const queryOptions = {
where,
include,
distinct: true,
order: filter.field && filter.sort
? [[filter.field, filter.sort]]
: [['createdAt', 'desc']],
transaction: options?.transaction,
logging: console.log
};
if (!options?.countOnly) {
queryOptions.limit = limit ? Number(limit) : undefined;
queryOptions.offset = offset ? Number(offset) : undefined;
}
try {
const { rows, count } = await db.challenge_definitions.findAndCountAll(queryOptions);
return {
rows: options?.countOnly ? [] : rows,
count: count
};
} catch (error) {
console.error('Error executing query:', error);
throw error;
}
}
static async findAllAutocomplete(query, limit, offset, ) {
let where = {};
if (query) {
where = {
[Op.or]: [
{ ['id']: Utils.uuid(query) },
Utils.ilike(
'challenge_definitions',
'name',
query,
),
],
};
}
const records = await db.challenge_definitions.findAll({
attributes: [ 'id', 'name' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['name', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.name,
}));
}
};

View File

@ -0,0 +1,537 @@
const db = require('../models');
const FileDBApi = require('./file');
const crypto = require('crypto');
const Utils = require('../utils');
const Sequelize = db.Sequelize;
const Op = Sequelize.Op;
module.exports = class Club_chat_messagesDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const club_chat_messages = await db.club_chat_messages.create(
{
id: data.id || undefined,
message_text: data.message_text
||
null
,
sent_at: data.sent_at
||
null
,
is_deleted: data.is_deleted
||
false
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await club_chat_messages.setBook_club( data.book_club || null, {
transaction,
});
await club_chat_messages.setSender( data.sender || null, {
transaction,
});
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.club_chat_messages.getTableName(),
belongsToColumn: 'attachment_files',
belongsToId: club_chat_messages.id,
},
data.attachment_files,
options,
);
return club_chat_messages;
}
static async bulkImport(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
// Prepare data - wrapping individual data transformations in a map() method
const club_chat_messagesData = data.map((item, index) => ({
id: item.id || undefined,
message_text: item.message_text
||
null
,
sent_at: item.sent_at
||
null
,
is_deleted: item.is_deleted
||
false
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const club_chat_messages = await db.club_chat_messages.bulkCreate(club_chat_messagesData, { transaction });
// For each item created, replace relation files
for (let i = 0; i < club_chat_messages.length; i++) {
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.club_chat_messages.getTableName(),
belongsToColumn: 'attachment_files',
belongsToId: club_chat_messages[i].id,
},
data[i].attachment_files,
options,
);
}
return club_chat_messages;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const club_chat_messages = await db.club_chat_messages.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.message_text !== undefined) updatePayload.message_text = data.message_text;
if (data.sent_at !== undefined) updatePayload.sent_at = data.sent_at;
if (data.is_deleted !== undefined) updatePayload.is_deleted = data.is_deleted;
updatePayload.updatedById = currentUser.id;
await club_chat_messages.update(updatePayload, {transaction});
if (data.book_club !== undefined) {
await club_chat_messages.setBook_club(
data.book_club,
{ transaction }
);
}
if (data.sender !== undefined) {
await club_chat_messages.setSender(
data.sender,
{ transaction }
);
}
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.club_chat_messages.getTableName(),
belongsToColumn: 'attachment_files',
belongsToId: club_chat_messages.id,
},
data.attachment_files,
options,
);
return club_chat_messages;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const club_chat_messages = await db.club_chat_messages.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of club_chat_messages) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of club_chat_messages) {
await record.destroy({transaction});
}
});
return club_chat_messages;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const club_chat_messages = await db.club_chat_messages.findByPk(id, options);
await club_chat_messages.update({
deletedBy: currentUser.id
}, {
transaction,
});
await club_chat_messages.destroy({
transaction
});
return club_chat_messages;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const club_chat_messages = await db.club_chat_messages.findOne(
{ where },
{ transaction },
);
if (!club_chat_messages) {
return club_chat_messages;
}
const output = club_chat_messages.get({plain: true});
output.book_club = await club_chat_messages.getBook_club({
transaction
});
output.sender = await club_chat_messages.getSender({
transaction
});
output.attachment_files = await club_chat_messages.getAttachment_files({
transaction
});
return output;
}
static async findAll(
filter,
options
) {
const limit = filter.limit || 0;
let offset = 0;
let where = {};
const currentPage = +filter.page;
offset = currentPage * limit;
const orderBy = null;
const transaction = (options && options.transaction) || undefined;
let include = [
{
model: db.book_clubs,
as: 'book_club',
where: filter.book_club ? {
[Op.or]: [
{ id: { [Op.in]: filter.book_club.split('|').map(term => Utils.uuid(term)) } },
{
name: {
[Op.or]: filter.book_club.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.users,
as: 'sender',
where: filter.sender ? {
[Op.or]: [
{ id: { [Op.in]: filter.sender.split('|').map(term => Utils.uuid(term)) } },
{
firstName: {
[Op.or]: filter.sender.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.file,
as: 'attachment_files',
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.message_text) {
where = {
...where,
[Op.and]: Utils.ilike(
'club_chat_messages',
'message_text',
filter.message_text,
),
};
}
if (filter.sent_atRange) {
const [start, end] = filter.sent_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
sent_at: {
...where.sent_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
sent_at: {
...where.sent_at,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.is_deleted) {
where = {
...where,
is_deleted: filter.is_deleted,
};
}
if (filter.createdAtRange) {
const [start, end] = filter.createdAtRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.lte]: end,
},
};
}
}
}
const queryOptions = {
where,
include,
distinct: true,
order: filter.field && filter.sort
? [[filter.field, filter.sort]]
: [['createdAt', 'desc']],
transaction: options?.transaction,
logging: console.log
};
if (!options?.countOnly) {
queryOptions.limit = limit ? Number(limit) : undefined;
queryOptions.offset = offset ? Number(offset) : undefined;
}
try {
const { rows, count } = await db.club_chat_messages.findAndCountAll(queryOptions);
return {
rows: options?.countOnly ? [] : rows,
count: count
};
} catch (error) {
console.error('Error executing query:', error);
throw error;
}
}
static async findAllAutocomplete(query, limit, offset, ) {
let where = {};
if (query) {
where = {
[Op.or]: [
{ ['id']: Utils.uuid(query) },
Utils.ilike(
'club_chat_messages',
'message_text',
query,
),
],
};
}
const records = await db.club_chat_messages.findAll({
attributes: [ 'id', 'message_text' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['message_text', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.message_text,
}));
}
};

View File

@ -0,0 +1,587 @@
const db = require('../models');
const FileDBApi = require('./file');
const crypto = require('crypto');
const Utils = require('../utils');
const Sequelize = db.Sequelize;
const Op = Sequelize.Op;
module.exports = class Coin_ledger_entriesDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const coin_ledger_entries = await db.coin_ledger_entries.create(
{
id: data.id || undefined,
entry_type: data.entry_type
||
null
,
reason: data.reason
||
null
,
amount_coins: data.amount_coins
||
null
,
description: data.description
||
null
,
occurred_at: data.occurred_at
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await coin_ledger_entries.setUser( data.user || null, {
transaction,
});
await coin_ledger_entries.setScan_session( data.scan_session || null, {
transaction,
});
await coin_ledger_entries.setBook( data.book || null, {
transaction,
});
return coin_ledger_entries;
}
static async bulkImport(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
// Prepare data - wrapping individual data transformations in a map() method
const coin_ledger_entriesData = data.map((item, index) => ({
id: item.id || undefined,
entry_type: item.entry_type
||
null
,
reason: item.reason
||
null
,
amount_coins: item.amount_coins
||
null
,
description: item.description
||
null
,
occurred_at: item.occurred_at
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const coin_ledger_entries = await db.coin_ledger_entries.bulkCreate(coin_ledger_entriesData, { transaction });
// For each item created, replace relation files
return coin_ledger_entries;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const coin_ledger_entries = await db.coin_ledger_entries.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.entry_type !== undefined) updatePayload.entry_type = data.entry_type;
if (data.reason !== undefined) updatePayload.reason = data.reason;
if (data.amount_coins !== undefined) updatePayload.amount_coins = data.amount_coins;
if (data.description !== undefined) updatePayload.description = data.description;
if (data.occurred_at !== undefined) updatePayload.occurred_at = data.occurred_at;
updatePayload.updatedById = currentUser.id;
await coin_ledger_entries.update(updatePayload, {transaction});
if (data.user !== undefined) {
await coin_ledger_entries.setUser(
data.user,
{ transaction }
);
}
if (data.scan_session !== undefined) {
await coin_ledger_entries.setScan_session(
data.scan_session,
{ transaction }
);
}
if (data.book !== undefined) {
await coin_ledger_entries.setBook(
data.book,
{ transaction }
);
}
return coin_ledger_entries;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const coin_ledger_entries = await db.coin_ledger_entries.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of coin_ledger_entries) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of coin_ledger_entries) {
await record.destroy({transaction});
}
});
return coin_ledger_entries;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const coin_ledger_entries = await db.coin_ledger_entries.findByPk(id, options);
await coin_ledger_entries.update({
deletedBy: currentUser.id
}, {
transaction,
});
await coin_ledger_entries.destroy({
transaction
});
return coin_ledger_entries;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const coin_ledger_entries = await db.coin_ledger_entries.findOne(
{ where },
{ transaction },
);
if (!coin_ledger_entries) {
return coin_ledger_entries;
}
const output = coin_ledger_entries.get({plain: true});
output.user = await coin_ledger_entries.getUser({
transaction
});
output.scan_session = await coin_ledger_entries.getScan_session({
transaction
});
output.book = await coin_ledger_entries.getBook({
transaction
});
return output;
}
static async findAll(
filter,
options
) {
const limit = filter.limit || 0;
let offset = 0;
let where = {};
const currentPage = +filter.page;
offset = currentPage * limit;
const orderBy = null;
const transaction = (options && options.transaction) || undefined;
let include = [
{
model: db.users,
as: 'user',
where: filter.user ? {
[Op.or]: [
{ id: { [Op.in]: filter.user.split('|').map(term => Utils.uuid(term)) } },
{
firstName: {
[Op.or]: filter.user.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.camera_scan_sessions,
as: 'scan_session',
where: filter.scan_session ? {
[Op.or]: [
{ id: { [Op.in]: filter.scan_session.split('|').map(term => Utils.uuid(term)) } },
{
status: {
[Op.or]: filter.scan_session.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.books,
as: 'book',
where: filter.book ? {
[Op.or]: [
{ id: { [Op.in]: filter.book.split('|').map(term => Utils.uuid(term)) } },
{
title: {
[Op.or]: filter.book.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.description) {
where = {
...where,
[Op.and]: Utils.ilike(
'coin_ledger_entries',
'description',
filter.description,
),
};
}
if (filter.amount_coinsRange) {
const [start, end] = filter.amount_coinsRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
amount_coins: {
...where.amount_coins,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
amount_coins: {
...where.amount_coins,
[Op.lte]: end,
},
};
}
}
if (filter.occurred_atRange) {
const [start, end] = filter.occurred_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
occurred_at: {
...where.occurred_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
occurred_at: {
...where.occurred_at,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.entry_type) {
where = {
...where,
entry_type: filter.entry_type,
};
}
if (filter.reason) {
where = {
...where,
reason: filter.reason,
};
}
if (filter.createdAtRange) {
const [start, end] = filter.createdAtRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.lte]: end,
},
};
}
}
}
const queryOptions = {
where,
include,
distinct: true,
order: filter.field && filter.sort
? [[filter.field, filter.sort]]
: [['createdAt', 'desc']],
transaction: options?.transaction,
logging: console.log
};
if (!options?.countOnly) {
queryOptions.limit = limit ? Number(limit) : undefined;
queryOptions.offset = offset ? Number(offset) : undefined;
}
try {
const { rows, count } = await db.coin_ledger_entries.findAndCountAll(queryOptions);
return {
rows: options?.countOnly ? [] : rows,
count: count
};
} catch (error) {
console.error('Error executing query:', error);
throw error;
}
}
static async findAllAutocomplete(query, limit, offset, ) {
let where = {};
if (query) {
where = {
[Op.or]: [
{ ['id']: Utils.uuid(query) },
Utils.ilike(
'coin_ledger_entries',
'description',
query,
),
],
};
}
const records = await db.coin_ledger_entries.findAll({
attributes: [ 'id', 'description' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['description', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.description,
}));
}
};

View File

@ -0,0 +1,486 @@
const db = require('../models');
const FileDBApi = require('./file');
const crypto = require('crypto');
const Utils = require('../utils');
const Sequelize = db.Sequelize;
const Op = Sequelize.Op;
module.exports = class Daily_login_rewardsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const daily_login_rewards = await db.daily_login_rewards.create(
{
id: data.id || undefined,
rewarded_at: data.rewarded_at
||
null
,
coins_awarded: data.coins_awarded
||
null
,
streak_day: data.streak_day
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await daily_login_rewards.setUser( data.user || null, {
transaction,
});
return daily_login_rewards;
}
static async bulkImport(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
// Prepare data - wrapping individual data transformations in a map() method
const daily_login_rewardsData = data.map((item, index) => ({
id: item.id || undefined,
rewarded_at: item.rewarded_at
||
null
,
coins_awarded: item.coins_awarded
||
null
,
streak_day: item.streak_day
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const daily_login_rewards = await db.daily_login_rewards.bulkCreate(daily_login_rewardsData, { transaction });
// For each item created, replace relation files
return daily_login_rewards;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const daily_login_rewards = await db.daily_login_rewards.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.rewarded_at !== undefined) updatePayload.rewarded_at = data.rewarded_at;
if (data.coins_awarded !== undefined) updatePayload.coins_awarded = data.coins_awarded;
if (data.streak_day !== undefined) updatePayload.streak_day = data.streak_day;
updatePayload.updatedById = currentUser.id;
await daily_login_rewards.update(updatePayload, {transaction});
if (data.user !== undefined) {
await daily_login_rewards.setUser(
data.user,
{ transaction }
);
}
return daily_login_rewards;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const daily_login_rewards = await db.daily_login_rewards.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of daily_login_rewards) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of daily_login_rewards) {
await record.destroy({transaction});
}
});
return daily_login_rewards;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const daily_login_rewards = await db.daily_login_rewards.findByPk(id, options);
await daily_login_rewards.update({
deletedBy: currentUser.id
}, {
transaction,
});
await daily_login_rewards.destroy({
transaction
});
return daily_login_rewards;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const daily_login_rewards = await db.daily_login_rewards.findOne(
{ where },
{ transaction },
);
if (!daily_login_rewards) {
return daily_login_rewards;
}
const output = daily_login_rewards.get({plain: true});
output.user = await daily_login_rewards.getUser({
transaction
});
return output;
}
static async findAll(
filter,
options
) {
const limit = filter.limit || 0;
let offset = 0;
let where = {};
const currentPage = +filter.page;
offset = currentPage * limit;
const orderBy = null;
const transaction = (options && options.transaction) || undefined;
let include = [
{
model: db.users,
as: 'user',
where: filter.user ? {
[Op.or]: [
{ id: { [Op.in]: filter.user.split('|').map(term => Utils.uuid(term)) } },
{
firstName: {
[Op.or]: filter.user.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.rewarded_atRange) {
const [start, end] = filter.rewarded_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
rewarded_at: {
...where.rewarded_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
rewarded_at: {
...where.rewarded_at,
[Op.lte]: end,
},
};
}
}
if (filter.coins_awardedRange) {
const [start, end] = filter.coins_awardedRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
coins_awarded: {
...where.coins_awarded,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
coins_awarded: {
...where.coins_awarded,
[Op.lte]: end,
},
};
}
}
if (filter.streak_dayRange) {
const [start, end] = filter.streak_dayRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
streak_day: {
...where.streak_day,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
streak_day: {
...where.streak_day,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.createdAtRange) {
const [start, end] = filter.createdAtRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.lte]: end,
},
};
}
}
}
const queryOptions = {
where,
include,
distinct: true,
order: filter.field && filter.sort
? [[filter.field, filter.sort]]
: [['createdAt', 'desc']],
transaction: options?.transaction,
logging: console.log
};
if (!options?.countOnly) {
queryOptions.limit = limit ? Number(limit) : undefined;
queryOptions.offset = offset ? Number(offset) : undefined;
}
try {
const { rows, count } = await db.daily_login_rewards.findAndCountAll(queryOptions);
return {
rows: options?.countOnly ? [] : rows,
count: count
};
} catch (error) {
console.error('Error executing query:', error);
throw error;
}
}
static async findAllAutocomplete(query, limit, offset, ) {
let where = {};
if (query) {
where = {
[Op.or]: [
{ ['id']: Utils.uuid(query) },
Utils.ilike(
'daily_login_rewards',
'streak_day',
query,
),
],
};
}
const records = await db.daily_login_rewards.findAll({
attributes: [ 'id', 'streak_day' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['streak_day', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.streak_day,
}));
}
};

View File

@ -0,0 +1,87 @@
const db = require('../models');
const assert = require('assert');
const services = require('../../services/file');
module.exports = class FileDBApi {
static async replaceRelationFiles(
relation,
rawFiles,
options,
) {
assert(relation.belongsTo, 'belongsTo is required');
assert(
relation.belongsToColumn,
'belongsToColumn is required',
);
assert(relation.belongsToId, 'belongsToId is required');
let files = [];
if (Array.isArray(rawFiles)) {
files = rawFiles;
} else {
files = rawFiles ? [rawFiles] : [];
}
await this._removeLegacyFiles(relation, files, options);
await this._addFiles(relation, files, options);
}
static async _addFiles(relation, files, options) {
const transaction = (options && options.transaction) || undefined;
const currentUser = (options && options.currentUser) || {id: null};
const inexistentFiles = files.filter(
(file) => !!file.new,
);
for (const file of inexistentFiles) {
await db.file.create(
{
belongsTo: relation.belongsTo,
belongsToColumn: relation.belongsToColumn,
belongsToId: relation.belongsToId,
name: file.name,
sizeInBytes: file.sizeInBytes,
privateUrl: file.privateUrl,
publicUrl: file.publicUrl,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{
transaction,
},
);
}
}
static async _removeLegacyFiles(
relation,
files,
options,
) {
const transaction = (options && options.transaction) || undefined;
const filesToDelete = await db.file.findAll({
where: {
belongsTo: relation.belongsTo,
belongsToId: relation.belongsToId,
belongsToColumn: relation.belongsToColumn,
id: {
[db.Sequelize.Op
.notIn]: files
.filter((file) => !file.new)
.map((file) => file.id)
},
},
transaction,
});
for (let file of filesToDelete) {
await services.deleteGCloud(file.privateUrl);
await file.destroy({
transaction,
});
}
}
};

View File

@ -0,0 +1,550 @@
const db = require('../models');
const FileDBApi = require('./file');
const crypto = require('crypto');
const Utils = require('../utils');
const Sequelize = db.Sequelize;
const Op = Sequelize.Op;
module.exports = class Fraud_flagsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const fraud_flags = await db.fraud_flags.create(
{
id: data.id || undefined,
severity: data.severity
||
null
,
status: data.status
||
null
,
reason: data.reason
||
null
,
flagged_at: data.flagged_at
||
null
,
resolved_at: data.resolved_at
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await fraud_flags.setUser( data.user || null, {
transaction,
});
await fraud_flags.setScan_session( data.scan_session || null, {
transaction,
});
return fraud_flags;
}
static async bulkImport(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
// Prepare data - wrapping individual data transformations in a map() method
const fraud_flagsData = data.map((item, index) => ({
id: item.id || undefined,
severity: item.severity
||
null
,
status: item.status
||
null
,
reason: item.reason
||
null
,
flagged_at: item.flagged_at
||
null
,
resolved_at: item.resolved_at
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const fraud_flags = await db.fraud_flags.bulkCreate(fraud_flagsData, { transaction });
// For each item created, replace relation files
return fraud_flags;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const fraud_flags = await db.fraud_flags.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.severity !== undefined) updatePayload.severity = data.severity;
if (data.status !== undefined) updatePayload.status = data.status;
if (data.reason !== undefined) updatePayload.reason = data.reason;
if (data.flagged_at !== undefined) updatePayload.flagged_at = data.flagged_at;
if (data.resolved_at !== undefined) updatePayload.resolved_at = data.resolved_at;
updatePayload.updatedById = currentUser.id;
await fraud_flags.update(updatePayload, {transaction});
if (data.user !== undefined) {
await fraud_flags.setUser(
data.user,
{ transaction }
);
}
if (data.scan_session !== undefined) {
await fraud_flags.setScan_session(
data.scan_session,
{ transaction }
);
}
return fraud_flags;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const fraud_flags = await db.fraud_flags.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of fraud_flags) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of fraud_flags) {
await record.destroy({transaction});
}
});
return fraud_flags;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const fraud_flags = await db.fraud_flags.findByPk(id, options);
await fraud_flags.update({
deletedBy: currentUser.id
}, {
transaction,
});
await fraud_flags.destroy({
transaction
});
return fraud_flags;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const fraud_flags = await db.fraud_flags.findOne(
{ where },
{ transaction },
);
if (!fraud_flags) {
return fraud_flags;
}
const output = fraud_flags.get({plain: true});
output.user = await fraud_flags.getUser({
transaction
});
output.scan_session = await fraud_flags.getScan_session({
transaction
});
return output;
}
static async findAll(
filter,
options
) {
const limit = filter.limit || 0;
let offset = 0;
let where = {};
const currentPage = +filter.page;
offset = currentPage * limit;
const orderBy = null;
const transaction = (options && options.transaction) || undefined;
let include = [
{
model: db.users,
as: 'user',
where: filter.user ? {
[Op.or]: [
{ id: { [Op.in]: filter.user.split('|').map(term => Utils.uuid(term)) } },
{
firstName: {
[Op.or]: filter.user.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.camera_scan_sessions,
as: 'scan_session',
where: filter.scan_session ? {
[Op.or]: [
{ id: { [Op.in]: filter.scan_session.split('|').map(term => Utils.uuid(term)) } },
{
status: {
[Op.or]: filter.scan_session.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.reason) {
where = {
...where,
[Op.and]: Utils.ilike(
'fraud_flags',
'reason',
filter.reason,
),
};
}
if (filter.flagged_atRange) {
const [start, end] = filter.flagged_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
flagged_at: {
...where.flagged_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
flagged_at: {
...where.flagged_at,
[Op.lte]: end,
},
};
}
}
if (filter.resolved_atRange) {
const [start, end] = filter.resolved_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
resolved_at: {
...where.resolved_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
resolved_at: {
...where.resolved_at,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.severity) {
where = {
...where,
severity: filter.severity,
};
}
if (filter.status) {
where = {
...where,
status: filter.status,
};
}
if (filter.createdAtRange) {
const [start, end] = filter.createdAtRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.lte]: end,
},
};
}
}
}
const queryOptions = {
where,
include,
distinct: true,
order: filter.field && filter.sort
? [[filter.field, filter.sort]]
: [['createdAt', 'desc']],
transaction: options?.transaction,
logging: console.log
};
if (!options?.countOnly) {
queryOptions.limit = limit ? Number(limit) : undefined;
queryOptions.offset = offset ? Number(offset) : undefined;
}
try {
const { rows, count } = await db.fraud_flags.findAndCountAll(queryOptions);
return {
rows: options?.countOnly ? [] : rows,
count: count
};
} catch (error) {
console.error('Error executing query:', error);
throw error;
}
}
static async findAllAutocomplete(query, limit, offset, ) {
let where = {};
if (query) {
where = {
[Op.or]: [
{ ['id']: Utils.uuid(query) },
Utils.ilike(
'fraud_flags',
'reason',
query,
),
],
};
}
const records = await db.fraud_flags.findAll({
attributes: [ 'id', 'reason' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['reason', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.reason,
}));
}
};

View File

@ -0,0 +1,506 @@
const db = require('../models');
const FileDBApi = require('./file');
const crypto = require('crypto');
const Utils = require('../utils');
const Sequelize = db.Sequelize;
const Op = Sequelize.Op;
module.exports = class FriendshipsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const friendships = await db.friendships.create(
{
id: data.id || undefined,
status: data.status
||
null
,
requested_at: data.requested_at
||
null
,
responded_at: data.responded_at
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await friendships.setRequester( data.requester || null, {
transaction,
});
await friendships.setAddressee( data.addressee || null, {
transaction,
});
return friendships;
}
static async bulkImport(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
// Prepare data - wrapping individual data transformations in a map() method
const friendshipsData = data.map((item, index) => ({
id: item.id || undefined,
status: item.status
||
null
,
requested_at: item.requested_at
||
null
,
responded_at: item.responded_at
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const friendships = await db.friendships.bulkCreate(friendshipsData, { transaction });
// For each item created, replace relation files
return friendships;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const friendships = await db.friendships.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.status !== undefined) updatePayload.status = data.status;
if (data.requested_at !== undefined) updatePayload.requested_at = data.requested_at;
if (data.responded_at !== undefined) updatePayload.responded_at = data.responded_at;
updatePayload.updatedById = currentUser.id;
await friendships.update(updatePayload, {transaction});
if (data.requester !== undefined) {
await friendships.setRequester(
data.requester,
{ transaction }
);
}
if (data.addressee !== undefined) {
await friendships.setAddressee(
data.addressee,
{ transaction }
);
}
return friendships;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const friendships = await db.friendships.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of friendships) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of friendships) {
await record.destroy({transaction});
}
});
return friendships;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const friendships = await db.friendships.findByPk(id, options);
await friendships.update({
deletedBy: currentUser.id
}, {
transaction,
});
await friendships.destroy({
transaction
});
return friendships;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const friendships = await db.friendships.findOne(
{ where },
{ transaction },
);
if (!friendships) {
return friendships;
}
const output = friendships.get({plain: true});
output.requester = await friendships.getRequester({
transaction
});
output.addressee = await friendships.getAddressee({
transaction
});
return output;
}
static async findAll(
filter,
options
) {
const limit = filter.limit || 0;
let offset = 0;
let where = {};
const currentPage = +filter.page;
offset = currentPage * limit;
const orderBy = null;
const transaction = (options && options.transaction) || undefined;
let include = [
{
model: db.users,
as: 'requester',
where: filter.requester ? {
[Op.or]: [
{ id: { [Op.in]: filter.requester.split('|').map(term => Utils.uuid(term)) } },
{
firstName: {
[Op.or]: filter.requester.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.users,
as: 'addressee',
where: filter.addressee ? {
[Op.or]: [
{ id: { [Op.in]: filter.addressee.split('|').map(term => Utils.uuid(term)) } },
{
firstName: {
[Op.or]: filter.addressee.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.requested_atRange) {
const [start, end] = filter.requested_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
requested_at: {
...where.requested_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
requested_at: {
...where.requested_at,
[Op.lte]: end,
},
};
}
}
if (filter.responded_atRange) {
const [start, end] = filter.responded_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
responded_at: {
...where.responded_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
responded_at: {
...where.responded_at,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.status) {
where = {
...where,
status: filter.status,
};
}
if (filter.createdAtRange) {
const [start, end] = filter.createdAtRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.lte]: end,
},
};
}
}
}
const queryOptions = {
where,
include,
distinct: true,
order: filter.field && filter.sort
? [[filter.field, filter.sort]]
: [['createdAt', 'desc']],
transaction: options?.transaction,
logging: console.log
};
if (!options?.countOnly) {
queryOptions.limit = limit ? Number(limit) : undefined;
queryOptions.offset = offset ? Number(offset) : undefined;
}
try {
const { rows, count } = await db.friendships.findAndCountAll(queryOptions);
return {
rows: options?.countOnly ? [] : rows,
count: count
};
} catch (error) {
console.error('Error executing query:', error);
throw error;
}
}
static async findAllAutocomplete(query, limit, offset, ) {
let where = {};
if (query) {
where = {
[Op.or]: [
{ ['id']: Utils.uuid(query) },
Utils.ilike(
'friendships',
'status',
query,
),
],
};
}
const records = await db.friendships.findAll({
attributes: [ 'id', 'status' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['status', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.status,
}));
}
};

View File

@ -0,0 +1,386 @@
const db = require('../models');
const FileDBApi = require('./file');
const crypto = require('crypto');
const Utils = require('../utils');
const Sequelize = db.Sequelize;
const Op = Sequelize.Op;
module.exports = class GenresDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const genres = await db.genres.create(
{
id: data.id || undefined,
name: data.name
||
null
,
description: data.description
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
return genres;
}
static async bulkImport(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
// Prepare data - wrapping individual data transformations in a map() method
const genresData = data.map((item, index) => ({
id: item.id || undefined,
name: item.name
||
null
,
description: item.description
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const genres = await db.genres.bulkCreate(genresData, { transaction });
// For each item created, replace relation files
return genres;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const genres = await db.genres.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.name !== undefined) updatePayload.name = data.name;
if (data.description !== undefined) updatePayload.description = data.description;
updatePayload.updatedById = currentUser.id;
await genres.update(updatePayload, {transaction});
return genres;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const genres = await db.genres.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of genres) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of genres) {
await record.destroy({transaction});
}
});
return genres;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const genres = await db.genres.findByPk(id, options);
await genres.update({
deletedBy: currentUser.id
}, {
transaction,
});
await genres.destroy({
transaction
});
return genres;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const genres = await db.genres.findOne(
{ where },
{ transaction },
);
if (!genres) {
return genres;
}
const output = genres.get({plain: true});
return output;
}
static async findAll(
filter,
options
) {
const limit = filter.limit || 0;
let offset = 0;
let where = {};
const currentPage = +filter.page;
offset = currentPage * limit;
const orderBy = null;
const transaction = (options && options.transaction) || undefined;
let include = [
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.name) {
where = {
...where,
[Op.and]: Utils.ilike(
'genres',
'name',
filter.name,
),
};
}
if (filter.description) {
where = {
...where,
[Op.and]: Utils.ilike(
'genres',
'description',
filter.description,
),
};
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.createdAtRange) {
const [start, end] = filter.createdAtRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.lte]: end,
},
};
}
}
}
const queryOptions = {
where,
include,
distinct: true,
order: filter.field && filter.sort
? [[filter.field, filter.sort]]
: [['createdAt', 'desc']],
transaction: options?.transaction,
logging: console.log
};
if (!options?.countOnly) {
queryOptions.limit = limit ? Number(limit) : undefined;
queryOptions.offset = offset ? Number(offset) : undefined;
}
try {
const { rows, count } = await db.genres.findAndCountAll(queryOptions);
return {
rows: options?.countOnly ? [] : rows,
count: count
};
} catch (error) {
console.error('Error executing query:', error);
throw error;
}
}
static async findAllAutocomplete(query, limit, offset, ) {
let where = {};
if (query) {
where = {
[Op.or]: [
{ ['id']: Utils.uuid(query) },
Utils.ilike(
'genres',
'name',
query,
),
],
};
}
const records = await db.genres.findAll({
attributes: [ 'id', 'name' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['name', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.name,
}));
}
};

View File

@ -0,0 +1,607 @@
const db = require('../models');
const FileDBApi = require('./file');
const crypto = require('crypto');
const Utils = require('../utils');
const Sequelize = db.Sequelize;
const Op = Sequelize.Op;
module.exports = class Kyc_verificationsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const kyc_verifications = await db.kyc_verifications.create(
{
id: data.id || undefined,
status: data.status
||
null
,
document_type: data.document_type
||
null
,
full_name_on_document: data.full_name_on_document
||
null
,
document_number: data.document_number
||
null
,
submitted_at: data.submitted_at
||
null
,
reviewed_at: data.reviewed_at
||
null
,
review_note: data.review_note
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await kyc_verifications.setUser( data.user || null, {
transaction,
});
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.kyc_verifications.getTableName(),
belongsToColumn: 'document_files',
belongsToId: kyc_verifications.id,
},
data.document_files,
options,
);
return kyc_verifications;
}
static async bulkImport(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
// Prepare data - wrapping individual data transformations in a map() method
const kyc_verificationsData = data.map((item, index) => ({
id: item.id || undefined,
status: item.status
||
null
,
document_type: item.document_type
||
null
,
full_name_on_document: item.full_name_on_document
||
null
,
document_number: item.document_number
||
null
,
submitted_at: item.submitted_at
||
null
,
reviewed_at: item.reviewed_at
||
null
,
review_note: item.review_note
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const kyc_verifications = await db.kyc_verifications.bulkCreate(kyc_verificationsData, { transaction });
// For each item created, replace relation files
for (let i = 0; i < kyc_verifications.length; i++) {
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.kyc_verifications.getTableName(),
belongsToColumn: 'document_files',
belongsToId: kyc_verifications[i].id,
},
data[i].document_files,
options,
);
}
return kyc_verifications;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const kyc_verifications = await db.kyc_verifications.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.status !== undefined) updatePayload.status = data.status;
if (data.document_type !== undefined) updatePayload.document_type = data.document_type;
if (data.full_name_on_document !== undefined) updatePayload.full_name_on_document = data.full_name_on_document;
if (data.document_number !== undefined) updatePayload.document_number = data.document_number;
if (data.submitted_at !== undefined) updatePayload.submitted_at = data.submitted_at;
if (data.reviewed_at !== undefined) updatePayload.reviewed_at = data.reviewed_at;
if (data.review_note !== undefined) updatePayload.review_note = data.review_note;
updatePayload.updatedById = currentUser.id;
await kyc_verifications.update(updatePayload, {transaction});
if (data.user !== undefined) {
await kyc_verifications.setUser(
data.user,
{ transaction }
);
}
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.kyc_verifications.getTableName(),
belongsToColumn: 'document_files',
belongsToId: kyc_verifications.id,
},
data.document_files,
options,
);
return kyc_verifications;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const kyc_verifications = await db.kyc_verifications.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of kyc_verifications) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of kyc_verifications) {
await record.destroy({transaction});
}
});
return kyc_verifications;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const kyc_verifications = await db.kyc_verifications.findByPk(id, options);
await kyc_verifications.update({
deletedBy: currentUser.id
}, {
transaction,
});
await kyc_verifications.destroy({
transaction
});
return kyc_verifications;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const kyc_verifications = await db.kyc_verifications.findOne(
{ where },
{ transaction },
);
if (!kyc_verifications) {
return kyc_verifications;
}
const output = kyc_verifications.get({plain: true});
output.user = await kyc_verifications.getUser({
transaction
});
output.document_files = await kyc_verifications.getDocument_files({
transaction
});
return output;
}
static async findAll(
filter,
options
) {
const limit = filter.limit || 0;
let offset = 0;
let where = {};
const currentPage = +filter.page;
offset = currentPage * limit;
const orderBy = null;
const transaction = (options && options.transaction) || undefined;
let include = [
{
model: db.users,
as: 'user',
where: filter.user ? {
[Op.or]: [
{ id: { [Op.in]: filter.user.split('|').map(term => Utils.uuid(term)) } },
{
firstName: {
[Op.or]: filter.user.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.file,
as: 'document_files',
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.document_type) {
where = {
...where,
[Op.and]: Utils.ilike(
'kyc_verifications',
'document_type',
filter.document_type,
),
};
}
if (filter.full_name_on_document) {
where = {
...where,
[Op.and]: Utils.ilike(
'kyc_verifications',
'full_name_on_document',
filter.full_name_on_document,
),
};
}
if (filter.document_number) {
where = {
...where,
[Op.and]: Utils.ilike(
'kyc_verifications',
'document_number',
filter.document_number,
),
};
}
if (filter.review_note) {
where = {
...where,
[Op.and]: Utils.ilike(
'kyc_verifications',
'review_note',
filter.review_note,
),
};
}
if (filter.submitted_atRange) {
const [start, end] = filter.submitted_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
submitted_at: {
...where.submitted_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
submitted_at: {
...where.submitted_at,
[Op.lte]: end,
},
};
}
}
if (filter.reviewed_atRange) {
const [start, end] = filter.reviewed_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
reviewed_at: {
...where.reviewed_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
reviewed_at: {
...where.reviewed_at,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.status) {
where = {
...where,
status: filter.status,
};
}
if (filter.createdAtRange) {
const [start, end] = filter.createdAtRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.lte]: end,
},
};
}
}
}
const queryOptions = {
where,
include,
distinct: true,
order: filter.field && filter.sort
? [[filter.field, filter.sort]]
: [['createdAt', 'desc']],
transaction: options?.transaction,
logging: console.log
};
if (!options?.countOnly) {
queryOptions.limit = limit ? Number(limit) : undefined;
queryOptions.offset = offset ? Number(offset) : undefined;
}
try {
const { rows, count } = await db.kyc_verifications.findAndCountAll(queryOptions);
return {
rows: options?.countOnly ? [] : rows,
count: count
};
} catch (error) {
console.error('Error executing query:', error);
throw error;
}
}
static async findAllAutocomplete(query, limit, offset, ) {
let where = {};
if (query) {
where = {
[Op.or]: [
{ ['id']: Utils.uuid(query) },
Utils.ilike(
'kyc_verifications',
'document_number',
query,
),
],
};
}
const records = await db.kyc_verifications.findAll({
attributes: [ 'id', 'document_number' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['document_number', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.document_number,
}));
}
};

556
backend/src/db/api/notes.js Normal file
View File

@ -0,0 +1,556 @@
const db = require('../models');
const FileDBApi = require('./file');
const crypto = require('crypto');
const Utils = require('../utils');
const Sequelize = db.Sequelize;
const Op = Sequelize.Op;
module.exports = class NotesDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const notes = await db.notes.create(
{
id: data.id || undefined,
location: data.location
||
null
,
title: data.title
||
null
,
content: data.content
||
null
,
is_private: data.is_private
||
false
,
noted_at: data.noted_at
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await notes.setUser( data.user || null, {
transaction,
});
await notes.setBook( data.book || null, {
transaction,
});
return notes;
}
static async bulkImport(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
// Prepare data - wrapping individual data transformations in a map() method
const notesData = data.map((item, index) => ({
id: item.id || undefined,
location: item.location
||
null
,
title: item.title
||
null
,
content: item.content
||
null
,
is_private: item.is_private
||
false
,
noted_at: item.noted_at
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const notes = await db.notes.bulkCreate(notesData, { transaction });
// For each item created, replace relation files
return notes;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const notes = await db.notes.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.location !== undefined) updatePayload.location = data.location;
if (data.title !== undefined) updatePayload.title = data.title;
if (data.content !== undefined) updatePayload.content = data.content;
if (data.is_private !== undefined) updatePayload.is_private = data.is_private;
if (data.noted_at !== undefined) updatePayload.noted_at = data.noted_at;
updatePayload.updatedById = currentUser.id;
await notes.update(updatePayload, {transaction});
if (data.user !== undefined) {
await notes.setUser(
data.user,
{ transaction }
);
}
if (data.book !== undefined) {
await notes.setBook(
data.book,
{ transaction }
);
}
return notes;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const notes = await db.notes.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of notes) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of notes) {
await record.destroy({transaction});
}
});
return notes;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const notes = await db.notes.findByPk(id, options);
await notes.update({
deletedBy: currentUser.id
}, {
transaction,
});
await notes.destroy({
transaction
});
return notes;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const notes = await db.notes.findOne(
{ where },
{ transaction },
);
if (!notes) {
return notes;
}
const output = notes.get({plain: true});
output.user = await notes.getUser({
transaction
});
output.book = await notes.getBook({
transaction
});
return output;
}
static async findAll(
filter,
options
) {
const limit = filter.limit || 0;
let offset = 0;
let where = {};
const currentPage = +filter.page;
offset = currentPage * limit;
const orderBy = null;
const transaction = (options && options.transaction) || undefined;
let include = [
{
model: db.users,
as: 'user',
where: filter.user ? {
[Op.or]: [
{ id: { [Op.in]: filter.user.split('|').map(term => Utils.uuid(term)) } },
{
firstName: {
[Op.or]: filter.user.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.books,
as: 'book',
where: filter.book ? {
[Op.or]: [
{ id: { [Op.in]: filter.book.split('|').map(term => Utils.uuid(term)) } },
{
title: {
[Op.or]: filter.book.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.title) {
where = {
...where,
[Op.and]: Utils.ilike(
'notes',
'title',
filter.title,
),
};
}
if (filter.content) {
where = {
...where,
[Op.and]: Utils.ilike(
'notes',
'content',
filter.content,
),
};
}
if (filter.locationRange) {
const [start, end] = filter.locationRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
location: {
...where.location,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
location: {
...where.location,
[Op.lte]: end,
},
};
}
}
if (filter.noted_atRange) {
const [start, end] = filter.noted_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
noted_at: {
...where.noted_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
noted_at: {
...where.noted_at,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.is_private) {
where = {
...where,
is_private: filter.is_private,
};
}
if (filter.createdAtRange) {
const [start, end] = filter.createdAtRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.lte]: end,
},
};
}
}
}
const queryOptions = {
where,
include,
distinct: true,
order: filter.field && filter.sort
? [[filter.field, filter.sort]]
: [['createdAt', 'desc']],
transaction: options?.transaction,
logging: console.log
};
if (!options?.countOnly) {
queryOptions.limit = limit ? Number(limit) : undefined;
queryOptions.offset = offset ? Number(offset) : undefined;
}
try {
const { rows, count } = await db.notes.findAndCountAll(queryOptions);
return {
rows: options?.countOnly ? [] : rows,
count: count
};
} catch (error) {
console.error('Error executing query:', error);
throw error;
}
}
static async findAllAutocomplete(query, limit, offset, ) {
let where = {};
if (query) {
where = {
[Op.or]: [
{ ['id']: Utils.uuid(query) },
Utils.ilike(
'notes',
'title',
query,
),
],
};
}
const records = await db.notes.findAll({
attributes: [ 'id', 'title' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['title', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.title,
}));
}
};

View File

@ -0,0 +1,574 @@
const db = require('../models');
const FileDBApi = require('./file');
const crypto = require('crypto');
const Utils = require('../utils');
const Sequelize = db.Sequelize;
const Op = Sequelize.Op;
module.exports = class Payment_transactionsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const payment_transactions = await db.payment_transactions.create(
{
id: data.id || undefined,
status: data.status
||
null
,
provider: data.provider
||
null
,
amount_uzs: data.amount_uzs
||
null
,
provider_transaction_reference: data.provider_transaction_reference
||
null
,
failure_reason: data.failure_reason
||
null
,
initiated_at: data.initiated_at
||
null
,
finalized_at: data.finalized_at
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await payment_transactions.setWithdrawal_request( data.withdrawal_request || null, {
transaction,
});
return payment_transactions;
}
static async bulkImport(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
// Prepare data - wrapping individual data transformations in a map() method
const payment_transactionsData = data.map((item, index) => ({
id: item.id || undefined,
status: item.status
||
null
,
provider: item.provider
||
null
,
amount_uzs: item.amount_uzs
||
null
,
provider_transaction_reference: item.provider_transaction_reference
||
null
,
failure_reason: item.failure_reason
||
null
,
initiated_at: item.initiated_at
||
null
,
finalized_at: item.finalized_at
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const payment_transactions = await db.payment_transactions.bulkCreate(payment_transactionsData, { transaction });
// For each item created, replace relation files
return payment_transactions;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const payment_transactions = await db.payment_transactions.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.status !== undefined) updatePayload.status = data.status;
if (data.provider !== undefined) updatePayload.provider = data.provider;
if (data.amount_uzs !== undefined) updatePayload.amount_uzs = data.amount_uzs;
if (data.provider_transaction_reference !== undefined) updatePayload.provider_transaction_reference = data.provider_transaction_reference;
if (data.failure_reason !== undefined) updatePayload.failure_reason = data.failure_reason;
if (data.initiated_at !== undefined) updatePayload.initiated_at = data.initiated_at;
if (data.finalized_at !== undefined) updatePayload.finalized_at = data.finalized_at;
updatePayload.updatedById = currentUser.id;
await payment_transactions.update(updatePayload, {transaction});
if (data.withdrawal_request !== undefined) {
await payment_transactions.setWithdrawal_request(
data.withdrawal_request,
{ transaction }
);
}
return payment_transactions;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const payment_transactions = await db.payment_transactions.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of payment_transactions) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of payment_transactions) {
await record.destroy({transaction});
}
});
return payment_transactions;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const payment_transactions = await db.payment_transactions.findByPk(id, options);
await payment_transactions.update({
deletedBy: currentUser.id
}, {
transaction,
});
await payment_transactions.destroy({
transaction
});
return payment_transactions;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const payment_transactions = await db.payment_transactions.findOne(
{ where },
{ transaction },
);
if (!payment_transactions) {
return payment_transactions;
}
const output = payment_transactions.get({plain: true});
output.withdrawal_request = await payment_transactions.getWithdrawal_request({
transaction
});
return output;
}
static async findAll(
filter,
options
) {
const limit = filter.limit || 0;
let offset = 0;
let where = {};
const currentPage = +filter.page;
offset = currentPage * limit;
const orderBy = null;
const transaction = (options && options.transaction) || undefined;
let include = [
{
model: db.withdrawal_requests,
as: 'withdrawal_request',
where: filter.withdrawal_request ? {
[Op.or]: [
{ id: { [Op.in]: filter.withdrawal_request.split('|').map(term => Utils.uuid(term)) } },
{
payout_destination: {
[Op.or]: filter.withdrawal_request.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.provider_transaction_reference) {
where = {
...where,
[Op.and]: Utils.ilike(
'payment_transactions',
'provider_transaction_reference',
filter.provider_transaction_reference,
),
};
}
if (filter.failure_reason) {
where = {
...where,
[Op.and]: Utils.ilike(
'payment_transactions',
'failure_reason',
filter.failure_reason,
),
};
}
if (filter.amount_uzsRange) {
const [start, end] = filter.amount_uzsRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
amount_uzs: {
...where.amount_uzs,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
amount_uzs: {
...where.amount_uzs,
[Op.lte]: end,
},
};
}
}
if (filter.initiated_atRange) {
const [start, end] = filter.initiated_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
initiated_at: {
...where.initiated_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
initiated_at: {
...where.initiated_at,
[Op.lte]: end,
},
};
}
}
if (filter.finalized_atRange) {
const [start, end] = filter.finalized_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
finalized_at: {
...where.finalized_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
finalized_at: {
...where.finalized_at,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.status) {
where = {
...where,
status: filter.status,
};
}
if (filter.provider) {
where = {
...where,
provider: filter.provider,
};
}
if (filter.createdAtRange) {
const [start, end] = filter.createdAtRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.lte]: end,
},
};
}
}
}
const queryOptions = {
where,
include,
distinct: true,
order: filter.field && filter.sort
? [[filter.field, filter.sort]]
: [['createdAt', 'desc']],
transaction: options?.transaction,
logging: console.log
};
if (!options?.countOnly) {
queryOptions.limit = limit ? Number(limit) : undefined;
queryOptions.offset = offset ? Number(offset) : undefined;
}
try {
const { rows, count } = await db.payment_transactions.findAndCountAll(queryOptions);
return {
rows: options?.countOnly ? [] : rows,
count: count
};
} catch (error) {
console.error('Error executing query:', error);
throw error;
}
}
static async findAllAutocomplete(query, limit, offset, ) {
let where = {};
if (query) {
where = {
[Op.or]: [
{ ['id']: Utils.uuid(query) },
Utils.ilike(
'payment_transactions',
'provider_transaction_reference',
query,
),
],
};
}
const records = await db.payment_transactions.findAll({
attributes: [ 'id', 'provider_transaction_reference' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['provider_transaction_reference', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.provider_transaction_reference,
}));
}
};

View File

@ -0,0 +1,362 @@
const db = require('../models');
const FileDBApi = require('./file');
const crypto = require('crypto');
const Utils = require('../utils');
const Sequelize = db.Sequelize;
const Op = Sequelize.Op;
module.exports = class PermissionsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const permissions = await db.permissions.create(
{
id: data.id || undefined,
name: data.name
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
return permissions;
}
static async bulkImport(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
// Prepare data - wrapping individual data transformations in a map() method
const permissionsData = data.map((item, index) => ({
id: item.id || undefined,
name: item.name
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const permissions = await db.permissions.bulkCreate(permissionsData, { transaction });
// For each item created, replace relation files
return permissions;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const permissions = await db.permissions.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.name !== undefined) updatePayload.name = data.name;
updatePayload.updatedById = currentUser.id;
await permissions.update(updatePayload, {transaction});
return permissions;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const permissions = await db.permissions.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of permissions) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of permissions) {
await record.destroy({transaction});
}
});
return permissions;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const permissions = await db.permissions.findByPk(id, options);
await permissions.update({
deletedBy: currentUser.id
}, {
transaction,
});
await permissions.destroy({
transaction
});
return permissions;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const permissions = await db.permissions.findOne(
{ where },
{ transaction },
);
if (!permissions) {
return permissions;
}
const output = permissions.get({plain: true});
return output;
}
static async findAll(
filter,
options
) {
const limit = filter.limit || 0;
let offset = 0;
let where = {};
const currentPage = +filter.page;
offset = currentPage * limit;
const orderBy = null;
const transaction = (options && options.transaction) || undefined;
let include = [
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.name) {
where = {
...where,
[Op.and]: Utils.ilike(
'permissions',
'name',
filter.name,
),
};
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.createdAtRange) {
const [start, end] = filter.createdAtRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.lte]: end,
},
};
}
}
}
const queryOptions = {
where,
include,
distinct: true,
order: filter.field && filter.sort
? [[filter.field, filter.sort]]
: [['createdAt', 'desc']],
transaction: options?.transaction,
logging: console.log
};
if (!options?.countOnly) {
queryOptions.limit = limit ? Number(limit) : undefined;
queryOptions.offset = offset ? Number(offset) : undefined;
}
try {
const { rows, count } = await db.permissions.findAndCountAll(queryOptions);
return {
rows: options?.countOnly ? [] : rows,
count: count
};
} catch (error) {
console.error('Error executing query:', error);
throw error;
}
}
static async findAllAutocomplete(query, limit, offset, ) {
let where = {};
if (query) {
where = {
[Op.or]: [
{ ['id']: Utils.uuid(query) },
Utils.ilike(
'permissions',
'name',
query,
),
],
};
}
const records = await db.permissions.findAll({
attributes: [ 'id', 'name' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['name', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.name,
}));
}
};

View File

@ -0,0 +1,438 @@
const db = require('../models');
const FileDBApi = require('./file');
const crypto = require('crypto');
const Utils = require('../utils');
const Sequelize = db.Sequelize;
const Op = Sequelize.Op;
module.exports = class PublishersDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const publishers = await db.publishers.create(
{
id: data.id || undefined,
name: data.name
||
null
,
country: data.country
||
null
,
website_url: data.website_url
||
null
,
description: data.description
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
return publishers;
}
static async bulkImport(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
// Prepare data - wrapping individual data transformations in a map() method
const publishersData = data.map((item, index) => ({
id: item.id || undefined,
name: item.name
||
null
,
country: item.country
||
null
,
website_url: item.website_url
||
null
,
description: item.description
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const publishers = await db.publishers.bulkCreate(publishersData, { transaction });
// For each item created, replace relation files
return publishers;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const publishers = await db.publishers.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.name !== undefined) updatePayload.name = data.name;
if (data.country !== undefined) updatePayload.country = data.country;
if (data.website_url !== undefined) updatePayload.website_url = data.website_url;
if (data.description !== undefined) updatePayload.description = data.description;
updatePayload.updatedById = currentUser.id;
await publishers.update(updatePayload, {transaction});
return publishers;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const publishers = await db.publishers.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of publishers) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of publishers) {
await record.destroy({transaction});
}
});
return publishers;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const publishers = await db.publishers.findByPk(id, options);
await publishers.update({
deletedBy: currentUser.id
}, {
transaction,
});
await publishers.destroy({
transaction
});
return publishers;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const publishers = await db.publishers.findOne(
{ where },
{ transaction },
);
if (!publishers) {
return publishers;
}
const output = publishers.get({plain: true});
output.books_publisher = await publishers.getBooks_publisher({
transaction
});
return output;
}
static async findAll(
filter,
options
) {
const limit = filter.limit || 0;
let offset = 0;
let where = {};
const currentPage = +filter.page;
offset = currentPage * limit;
const orderBy = null;
const transaction = (options && options.transaction) || undefined;
let include = [
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.name) {
where = {
...where,
[Op.and]: Utils.ilike(
'publishers',
'name',
filter.name,
),
};
}
if (filter.country) {
where = {
...where,
[Op.and]: Utils.ilike(
'publishers',
'country',
filter.country,
),
};
}
if (filter.website_url) {
where = {
...where,
[Op.and]: Utils.ilike(
'publishers',
'website_url',
filter.website_url,
),
};
}
if (filter.description) {
where = {
...where,
[Op.and]: Utils.ilike(
'publishers',
'description',
filter.description,
),
};
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.createdAtRange) {
const [start, end] = filter.createdAtRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.lte]: end,
},
};
}
}
}
const queryOptions = {
where,
include,
distinct: true,
order: filter.field && filter.sort
? [[filter.field, filter.sort]]
: [['createdAt', 'desc']],
transaction: options?.transaction,
logging: console.log
};
if (!options?.countOnly) {
queryOptions.limit = limit ? Number(limit) : undefined;
queryOptions.offset = offset ? Number(offset) : undefined;
}
try {
const { rows, count } = await db.publishers.findAndCountAll(queryOptions);
return {
rows: options?.countOnly ? [] : rows,
count: count
};
} catch (error) {
console.error('Error executing query:', error);
throw error;
}
}
static async findAllAutocomplete(query, limit, offset, ) {
let where = {};
if (query) {
where = {
[Op.or]: [
{ ['id']: Utils.uuid(query) },
Utils.ilike(
'publishers',
'name',
query,
),
],
};
}
const records = await db.publishers.findAll({
attributes: [ 'id', 'name' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['name', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.name,
}));
}
};

View File

@ -0,0 +1,561 @@
const db = require('../models');
const FileDBApi = require('./file');
const crypto = require('crypto');
const Utils = require('../utils');
const Sequelize = db.Sequelize;
const Op = Sequelize.Op;
module.exports = class Push_notificationsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const push_notifications = await db.push_notifications.create(
{
id: data.id || undefined,
title: data.title
||
null
,
body: data.body
||
null
,
status: data.status
||
null
,
channel: data.channel
||
null
,
scheduled_at: data.scheduled_at
||
null
,
sent_at: data.sent_at
||
null
,
deep_link: data.deep_link
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await push_notifications.setUser( data.user || null, {
transaction,
});
return push_notifications;
}
static async bulkImport(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
// Prepare data - wrapping individual data transformations in a map() method
const push_notificationsData = data.map((item, index) => ({
id: item.id || undefined,
title: item.title
||
null
,
body: item.body
||
null
,
status: item.status
||
null
,
channel: item.channel
||
null
,
scheduled_at: item.scheduled_at
||
null
,
sent_at: item.sent_at
||
null
,
deep_link: item.deep_link
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const push_notifications = await db.push_notifications.bulkCreate(push_notificationsData, { transaction });
// For each item created, replace relation files
return push_notifications;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const push_notifications = await db.push_notifications.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.title !== undefined) updatePayload.title = data.title;
if (data.body !== undefined) updatePayload.body = data.body;
if (data.status !== undefined) updatePayload.status = data.status;
if (data.channel !== undefined) updatePayload.channel = data.channel;
if (data.scheduled_at !== undefined) updatePayload.scheduled_at = data.scheduled_at;
if (data.sent_at !== undefined) updatePayload.sent_at = data.sent_at;
if (data.deep_link !== undefined) updatePayload.deep_link = data.deep_link;
updatePayload.updatedById = currentUser.id;
await push_notifications.update(updatePayload, {transaction});
if (data.user !== undefined) {
await push_notifications.setUser(
data.user,
{ transaction }
);
}
return push_notifications;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const push_notifications = await db.push_notifications.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of push_notifications) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of push_notifications) {
await record.destroy({transaction});
}
});
return push_notifications;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const push_notifications = await db.push_notifications.findByPk(id, options);
await push_notifications.update({
deletedBy: currentUser.id
}, {
transaction,
});
await push_notifications.destroy({
transaction
});
return push_notifications;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const push_notifications = await db.push_notifications.findOne(
{ where },
{ transaction },
);
if (!push_notifications) {
return push_notifications;
}
const output = push_notifications.get({plain: true});
output.user = await push_notifications.getUser({
transaction
});
return output;
}
static async findAll(
filter,
options
) {
const limit = filter.limit || 0;
let offset = 0;
let where = {};
const currentPage = +filter.page;
offset = currentPage * limit;
const orderBy = null;
const transaction = (options && options.transaction) || undefined;
let include = [
{
model: db.users,
as: 'user',
where: filter.user ? {
[Op.or]: [
{ id: { [Op.in]: filter.user.split('|').map(term => Utils.uuid(term)) } },
{
firstName: {
[Op.or]: filter.user.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.title) {
where = {
...where,
[Op.and]: Utils.ilike(
'push_notifications',
'title',
filter.title,
),
};
}
if (filter.body) {
where = {
...where,
[Op.and]: Utils.ilike(
'push_notifications',
'body',
filter.body,
),
};
}
if (filter.deep_link) {
where = {
...where,
[Op.and]: Utils.ilike(
'push_notifications',
'deep_link',
filter.deep_link,
),
};
}
if (filter.scheduled_atRange) {
const [start, end] = filter.scheduled_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
scheduled_at: {
...where.scheduled_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
scheduled_at: {
...where.scheduled_at,
[Op.lte]: end,
},
};
}
}
if (filter.sent_atRange) {
const [start, end] = filter.sent_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
sent_at: {
...where.sent_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
sent_at: {
...where.sent_at,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.status) {
where = {
...where,
status: filter.status,
};
}
if (filter.channel) {
where = {
...where,
channel: filter.channel,
};
}
if (filter.createdAtRange) {
const [start, end] = filter.createdAtRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.lte]: end,
},
};
}
}
}
const queryOptions = {
where,
include,
distinct: true,
order: filter.field && filter.sort
? [[filter.field, filter.sort]]
: [['createdAt', 'desc']],
transaction: options?.transaction,
logging: console.log
};
if (!options?.countOnly) {
queryOptions.limit = limit ? Number(limit) : undefined;
queryOptions.offset = offset ? Number(offset) : undefined;
}
try {
const { rows, count } = await db.push_notifications.findAndCountAll(queryOptions);
return {
rows: options?.countOnly ? [] : rows,
count: count
};
} catch (error) {
console.error('Error executing query:', error);
throw error;
}
}
static async findAllAutocomplete(query, limit, offset, ) {
let where = {};
if (query) {
where = {
[Op.or]: [
{ ['id']: Utils.uuid(query) },
Utils.ilike(
'push_notifications',
'title',
query,
),
],
};
}
const records = await db.push_notifications.findAll({
attributes: [ 'id', 'title' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['title', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.title,
}));
}
};

View File

@ -0,0 +1,458 @@
const db = require('../models');
const FileDBApi = require('./file');
const crypto = require('crypto');
const Utils = require('../utils');
const Sequelize = db.Sequelize;
const Op = Sequelize.Op;
module.exports = class Quiz_answer_choicesDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const quiz_answer_choices = await db.quiz_answer_choices.create(
{
id: data.id || undefined,
choice_text: data.choice_text
||
null
,
is_correct: data.is_correct
||
false
,
order_index: data.order_index
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await quiz_answer_choices.setQuiz_question( data.quiz_question || null, {
transaction,
});
return quiz_answer_choices;
}
static async bulkImport(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
// Prepare data - wrapping individual data transformations in a map() method
const quiz_answer_choicesData = data.map((item, index) => ({
id: item.id || undefined,
choice_text: item.choice_text
||
null
,
is_correct: item.is_correct
||
false
,
order_index: item.order_index
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const quiz_answer_choices = await db.quiz_answer_choices.bulkCreate(quiz_answer_choicesData, { transaction });
// For each item created, replace relation files
return quiz_answer_choices;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const quiz_answer_choices = await db.quiz_answer_choices.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.choice_text !== undefined) updatePayload.choice_text = data.choice_text;
if (data.is_correct !== undefined) updatePayload.is_correct = data.is_correct;
if (data.order_index !== undefined) updatePayload.order_index = data.order_index;
updatePayload.updatedById = currentUser.id;
await quiz_answer_choices.update(updatePayload, {transaction});
if (data.quiz_question !== undefined) {
await quiz_answer_choices.setQuiz_question(
data.quiz_question,
{ transaction }
);
}
return quiz_answer_choices;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const quiz_answer_choices = await db.quiz_answer_choices.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of quiz_answer_choices) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of quiz_answer_choices) {
await record.destroy({transaction});
}
});
return quiz_answer_choices;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const quiz_answer_choices = await db.quiz_answer_choices.findByPk(id, options);
await quiz_answer_choices.update({
deletedBy: currentUser.id
}, {
transaction,
});
await quiz_answer_choices.destroy({
transaction
});
return quiz_answer_choices;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const quiz_answer_choices = await db.quiz_answer_choices.findOne(
{ where },
{ transaction },
);
if (!quiz_answer_choices) {
return quiz_answer_choices;
}
const output = quiz_answer_choices.get({plain: true});
output.quiz_question = await quiz_answer_choices.getQuiz_question({
transaction
});
return output;
}
static async findAll(
filter,
options
) {
const limit = filter.limit || 0;
let offset = 0;
let where = {};
const currentPage = +filter.page;
offset = currentPage * limit;
const orderBy = null;
const transaction = (options && options.transaction) || undefined;
let include = [
{
model: db.quiz_questions,
as: 'quiz_question',
where: filter.quiz_question ? {
[Op.or]: [
{ id: { [Op.in]: filter.quiz_question.split('|').map(term => Utils.uuid(term)) } },
{
prompt: {
[Op.or]: filter.quiz_question.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.choice_text) {
where = {
...where,
[Op.and]: Utils.ilike(
'quiz_answer_choices',
'choice_text',
filter.choice_text,
),
};
}
if (filter.order_indexRange) {
const [start, end] = filter.order_indexRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
order_index: {
...where.order_index,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
order_index: {
...where.order_index,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.is_correct) {
where = {
...where,
is_correct: filter.is_correct,
};
}
if (filter.createdAtRange) {
const [start, end] = filter.createdAtRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.lte]: end,
},
};
}
}
}
const queryOptions = {
where,
include,
distinct: true,
order: filter.field && filter.sort
? [[filter.field, filter.sort]]
: [['createdAt', 'desc']],
transaction: options?.transaction,
logging: console.log
};
if (!options?.countOnly) {
queryOptions.limit = limit ? Number(limit) : undefined;
queryOptions.offset = offset ? Number(offset) : undefined;
}
try {
const { rows, count } = await db.quiz_answer_choices.findAndCountAll(queryOptions);
return {
rows: options?.countOnly ? [] : rows,
count: count
};
} catch (error) {
console.error('Error executing query:', error);
throw error;
}
}
static async findAllAutocomplete(query, limit, offset, ) {
let where = {};
if (query) {
where = {
[Op.or]: [
{ ['id']: Utils.uuid(query) },
Utils.ilike(
'quiz_answer_choices',
'choice_text',
query,
),
],
};
}
const records = await db.quiz_answer_choices.findAll({
attributes: [ 'id', 'choice_text' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['choice_text', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.choice_text,
}));
}
};

View File

@ -0,0 +1,654 @@
const db = require('../models');
const FileDBApi = require('./file');
const crypto = require('crypto');
const Utils = require('../utils');
const Sequelize = db.Sequelize;
const Op = Sequelize.Op;
module.exports = class Quiz_attemptsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const quiz_attempts = await db.quiz_attempts.create(
{
id: data.id || undefined,
status: data.status
||
null
,
score_percent: data.score_percent
||
null
,
correct_count: data.correct_count
||
null
,
total_count: data.total_count
||
null
,
started_at: data.started_at
||
null
,
submitted_at: data.submitted_at
||
null
,
coins_awarded: data.coins_awarded
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await quiz_attempts.setUser( data.user || null, {
transaction,
});
await quiz_attempts.setQuiz_definition( data.quiz_definition || null, {
transaction,
});
return quiz_attempts;
}
static async bulkImport(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
// Prepare data - wrapping individual data transformations in a map() method
const quiz_attemptsData = data.map((item, index) => ({
id: item.id || undefined,
status: item.status
||
null
,
score_percent: item.score_percent
||
null
,
correct_count: item.correct_count
||
null
,
total_count: item.total_count
||
null
,
started_at: item.started_at
||
null
,
submitted_at: item.submitted_at
||
null
,
coins_awarded: item.coins_awarded
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const quiz_attempts = await db.quiz_attempts.bulkCreate(quiz_attemptsData, { transaction });
// For each item created, replace relation files
return quiz_attempts;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const quiz_attempts = await db.quiz_attempts.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.status !== undefined) updatePayload.status = data.status;
if (data.score_percent !== undefined) updatePayload.score_percent = data.score_percent;
if (data.correct_count !== undefined) updatePayload.correct_count = data.correct_count;
if (data.total_count !== undefined) updatePayload.total_count = data.total_count;
if (data.started_at !== undefined) updatePayload.started_at = data.started_at;
if (data.submitted_at !== undefined) updatePayload.submitted_at = data.submitted_at;
if (data.coins_awarded !== undefined) updatePayload.coins_awarded = data.coins_awarded;
updatePayload.updatedById = currentUser.id;
await quiz_attempts.update(updatePayload, {transaction});
if (data.user !== undefined) {
await quiz_attempts.setUser(
data.user,
{ transaction }
);
}
if (data.quiz_definition !== undefined) {
await quiz_attempts.setQuiz_definition(
data.quiz_definition,
{ transaction }
);
}
return quiz_attempts;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const quiz_attempts = await db.quiz_attempts.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of quiz_attempts) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of quiz_attempts) {
await record.destroy({transaction});
}
});
return quiz_attempts;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const quiz_attempts = await db.quiz_attempts.findByPk(id, options);
await quiz_attempts.update({
deletedBy: currentUser.id
}, {
transaction,
});
await quiz_attempts.destroy({
transaction
});
return quiz_attempts;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const quiz_attempts = await db.quiz_attempts.findOne(
{ where },
{ transaction },
);
if (!quiz_attempts) {
return quiz_attempts;
}
const output = quiz_attempts.get({plain: true});
output.user = await quiz_attempts.getUser({
transaction
});
output.quiz_definition = await quiz_attempts.getQuiz_definition({
transaction
});
return output;
}
static async findAll(
filter,
options
) {
const limit = filter.limit || 0;
let offset = 0;
let where = {};
const currentPage = +filter.page;
offset = currentPage * limit;
const orderBy = null;
const transaction = (options && options.transaction) || undefined;
let include = [
{
model: db.users,
as: 'user',
where: filter.user ? {
[Op.or]: [
{ id: { [Op.in]: filter.user.split('|').map(term => Utils.uuid(term)) } },
{
firstName: {
[Op.or]: filter.user.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.quiz_definitions,
as: 'quiz_definition',
where: filter.quiz_definition ? {
[Op.or]: [
{ id: { [Op.in]: filter.quiz_definition.split('|').map(term => Utils.uuid(term)) } },
{
title: {
[Op.or]: filter.quiz_definition.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.score_percentRange) {
const [start, end] = filter.score_percentRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
score_percent: {
...where.score_percent,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
score_percent: {
...where.score_percent,
[Op.lte]: end,
},
};
}
}
if (filter.correct_countRange) {
const [start, end] = filter.correct_countRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
correct_count: {
...where.correct_count,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
correct_count: {
...where.correct_count,
[Op.lte]: end,
},
};
}
}
if (filter.total_countRange) {
const [start, end] = filter.total_countRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
total_count: {
...where.total_count,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
total_count: {
...where.total_count,
[Op.lte]: end,
},
};
}
}
if (filter.started_atRange) {
const [start, end] = filter.started_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
started_at: {
...where.started_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
started_at: {
...where.started_at,
[Op.lte]: end,
},
};
}
}
if (filter.submitted_atRange) {
const [start, end] = filter.submitted_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
submitted_at: {
...where.submitted_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
submitted_at: {
...where.submitted_at,
[Op.lte]: end,
},
};
}
}
if (filter.coins_awardedRange) {
const [start, end] = filter.coins_awardedRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
coins_awarded: {
...where.coins_awarded,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
coins_awarded: {
...where.coins_awarded,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.status) {
where = {
...where,
status: filter.status,
};
}
if (filter.createdAtRange) {
const [start, end] = filter.createdAtRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.lte]: end,
},
};
}
}
}
const queryOptions = {
where,
include,
distinct: true,
order: filter.field && filter.sort
? [[filter.field, filter.sort]]
: [['createdAt', 'desc']],
transaction: options?.transaction,
logging: console.log
};
if (!options?.countOnly) {
queryOptions.limit = limit ? Number(limit) : undefined;
queryOptions.offset = offset ? Number(offset) : undefined;
}
try {
const { rows, count } = await db.quiz_attempts.findAndCountAll(queryOptions);
return {
rows: options?.countOnly ? [] : rows,
count: count
};
} catch (error) {
console.error('Error executing query:', error);
throw error;
}
}
static async findAllAutocomplete(query, limit, offset, ) {
let where = {};
if (query) {
where = {
[Op.or]: [
{ ['id']: Utils.uuid(query) },
Utils.ilike(
'quiz_attempts',
'status',
query,
),
],
};
}
const records = await db.quiz_attempts.findAll({
attributes: [ 'id', 'status' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['status', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.status,
}));
}
};

View File

@ -0,0 +1,558 @@
const db = require('../models');
const FileDBApi = require('./file');
const crypto = require('crypto');
const Utils = require('../utils');
const Sequelize = db.Sequelize;
const Op = Sequelize.Op;
module.exports = class Quiz_definitionsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const quiz_definitions = await db.quiz_definitions.create(
{
id: data.id || undefined,
title: data.title
||
null
,
difficulty: data.difficulty
||
null
,
status: data.status
||
null
,
question_count: data.question_count
||
null
,
time_limit_seconds: data.time_limit_seconds
||
null
,
generated_at: data.generated_at
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await quiz_definitions.setBook( data.book || null, {
transaction,
});
return quiz_definitions;
}
static async bulkImport(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
// Prepare data - wrapping individual data transformations in a map() method
const quiz_definitionsData = data.map((item, index) => ({
id: item.id || undefined,
title: item.title
||
null
,
difficulty: item.difficulty
||
null
,
status: item.status
||
null
,
question_count: item.question_count
||
null
,
time_limit_seconds: item.time_limit_seconds
||
null
,
generated_at: item.generated_at
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const quiz_definitions = await db.quiz_definitions.bulkCreate(quiz_definitionsData, { transaction });
// For each item created, replace relation files
return quiz_definitions;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const quiz_definitions = await db.quiz_definitions.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.title !== undefined) updatePayload.title = data.title;
if (data.difficulty !== undefined) updatePayload.difficulty = data.difficulty;
if (data.status !== undefined) updatePayload.status = data.status;
if (data.question_count !== undefined) updatePayload.question_count = data.question_count;
if (data.time_limit_seconds !== undefined) updatePayload.time_limit_seconds = data.time_limit_seconds;
if (data.generated_at !== undefined) updatePayload.generated_at = data.generated_at;
updatePayload.updatedById = currentUser.id;
await quiz_definitions.update(updatePayload, {transaction});
if (data.book !== undefined) {
await quiz_definitions.setBook(
data.book,
{ transaction }
);
}
return quiz_definitions;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const quiz_definitions = await db.quiz_definitions.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of quiz_definitions) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of quiz_definitions) {
await record.destroy({transaction});
}
});
return quiz_definitions;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const quiz_definitions = await db.quiz_definitions.findByPk(id, options);
await quiz_definitions.update({
deletedBy: currentUser.id
}, {
transaction,
});
await quiz_definitions.destroy({
transaction
});
return quiz_definitions;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const quiz_definitions = await db.quiz_definitions.findOne(
{ where },
{ transaction },
);
if (!quiz_definitions) {
return quiz_definitions;
}
const output = quiz_definitions.get({plain: true});
output.quiz_questions_quiz_definition = await quiz_definitions.getQuiz_questions_quiz_definition({
transaction
});
output.quiz_attempts_quiz_definition = await quiz_definitions.getQuiz_attempts_quiz_definition({
transaction
});
output.book = await quiz_definitions.getBook({
transaction
});
return output;
}
static async findAll(
filter,
options
) {
const limit = filter.limit || 0;
let offset = 0;
let where = {};
const currentPage = +filter.page;
offset = currentPage * limit;
const orderBy = null;
const transaction = (options && options.transaction) || undefined;
let include = [
{
model: db.books,
as: 'book',
where: filter.book ? {
[Op.or]: [
{ id: { [Op.in]: filter.book.split('|').map(term => Utils.uuid(term)) } },
{
title: {
[Op.or]: filter.book.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.title) {
where = {
...where,
[Op.and]: Utils.ilike(
'quiz_definitions',
'title',
filter.title,
),
};
}
if (filter.question_countRange) {
const [start, end] = filter.question_countRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
question_count: {
...where.question_count,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
question_count: {
...where.question_count,
[Op.lte]: end,
},
};
}
}
if (filter.time_limit_secondsRange) {
const [start, end] = filter.time_limit_secondsRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
time_limit_seconds: {
...where.time_limit_seconds,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
time_limit_seconds: {
...where.time_limit_seconds,
[Op.lte]: end,
},
};
}
}
if (filter.generated_atRange) {
const [start, end] = filter.generated_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
generated_at: {
...where.generated_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
generated_at: {
...where.generated_at,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.difficulty) {
where = {
...where,
difficulty: filter.difficulty,
};
}
if (filter.status) {
where = {
...where,
status: filter.status,
};
}
if (filter.createdAtRange) {
const [start, end] = filter.createdAtRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.lte]: end,
},
};
}
}
}
const queryOptions = {
where,
include,
distinct: true,
order: filter.field && filter.sort
? [[filter.field, filter.sort]]
: [['createdAt', 'desc']],
transaction: options?.transaction,
logging: console.log
};
if (!options?.countOnly) {
queryOptions.limit = limit ? Number(limit) : undefined;
queryOptions.offset = offset ? Number(offset) : undefined;
}
try {
const { rows, count } = await db.quiz_definitions.findAndCountAll(queryOptions);
return {
rows: options?.countOnly ? [] : rows,
count: count
};
} catch (error) {
console.error('Error executing query:', error);
throw error;
}
}
static async findAllAutocomplete(query, limit, offset, ) {
let where = {};
if (query) {
where = {
[Op.or]: [
{ ['id']: Utils.uuid(query) },
Utils.ilike(
'quiz_definitions',
'title',
query,
),
],
};
}
const records = await db.quiz_definitions.findAll({
attributes: [ 'id', 'title' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['title', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.title,
}));
}
};

View File

@ -0,0 +1,484 @@
const db = require('../models');
const FileDBApi = require('./file');
const crypto = require('crypto');
const Utils = require('../utils');
const Sequelize = db.Sequelize;
const Op = Sequelize.Op;
module.exports = class Quiz_questionsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const quiz_questions = await db.quiz_questions.create(
{
id: data.id || undefined,
prompt: data.prompt
||
null
,
question_type: data.question_type
||
null
,
explanation: data.explanation
||
null
,
order_index: data.order_index
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await quiz_questions.setQuiz_definition( data.quiz_definition || null, {
transaction,
});
return quiz_questions;
}
static async bulkImport(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
// Prepare data - wrapping individual data transformations in a map() method
const quiz_questionsData = data.map((item, index) => ({
id: item.id || undefined,
prompt: item.prompt
||
null
,
question_type: item.question_type
||
null
,
explanation: item.explanation
||
null
,
order_index: item.order_index
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const quiz_questions = await db.quiz_questions.bulkCreate(quiz_questionsData, { transaction });
// For each item created, replace relation files
return quiz_questions;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const quiz_questions = await db.quiz_questions.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.prompt !== undefined) updatePayload.prompt = data.prompt;
if (data.question_type !== undefined) updatePayload.question_type = data.question_type;
if (data.explanation !== undefined) updatePayload.explanation = data.explanation;
if (data.order_index !== undefined) updatePayload.order_index = data.order_index;
updatePayload.updatedById = currentUser.id;
await quiz_questions.update(updatePayload, {transaction});
if (data.quiz_definition !== undefined) {
await quiz_questions.setQuiz_definition(
data.quiz_definition,
{ transaction }
);
}
return quiz_questions;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const quiz_questions = await db.quiz_questions.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of quiz_questions) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of quiz_questions) {
await record.destroy({transaction});
}
});
return quiz_questions;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const quiz_questions = await db.quiz_questions.findByPk(id, options);
await quiz_questions.update({
deletedBy: currentUser.id
}, {
transaction,
});
await quiz_questions.destroy({
transaction
});
return quiz_questions;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const quiz_questions = await db.quiz_questions.findOne(
{ where },
{ transaction },
);
if (!quiz_questions) {
return quiz_questions;
}
const output = quiz_questions.get({plain: true});
output.quiz_answer_choices_quiz_question = await quiz_questions.getQuiz_answer_choices_quiz_question({
transaction
});
output.quiz_definition = await quiz_questions.getQuiz_definition({
transaction
});
return output;
}
static async findAll(
filter,
options
) {
const limit = filter.limit || 0;
let offset = 0;
let where = {};
const currentPage = +filter.page;
offset = currentPage * limit;
const orderBy = null;
const transaction = (options && options.transaction) || undefined;
let include = [
{
model: db.quiz_definitions,
as: 'quiz_definition',
where: filter.quiz_definition ? {
[Op.or]: [
{ id: { [Op.in]: filter.quiz_definition.split('|').map(term => Utils.uuid(term)) } },
{
title: {
[Op.or]: filter.quiz_definition.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.prompt) {
where = {
...where,
[Op.and]: Utils.ilike(
'quiz_questions',
'prompt',
filter.prompt,
),
};
}
if (filter.explanation) {
where = {
...where,
[Op.and]: Utils.ilike(
'quiz_questions',
'explanation',
filter.explanation,
),
};
}
if (filter.order_indexRange) {
const [start, end] = filter.order_indexRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
order_index: {
...where.order_index,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
order_index: {
...where.order_index,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.question_type) {
where = {
...where,
question_type: filter.question_type,
};
}
if (filter.createdAtRange) {
const [start, end] = filter.createdAtRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.lte]: end,
},
};
}
}
}
const queryOptions = {
where,
include,
distinct: true,
order: filter.field && filter.sort
? [[filter.field, filter.sort]]
: [['createdAt', 'desc']],
transaction: options?.transaction,
logging: console.log
};
if (!options?.countOnly) {
queryOptions.limit = limit ? Number(limit) : undefined;
queryOptions.offset = offset ? Number(offset) : undefined;
}
try {
const { rows, count } = await db.quiz_questions.findAndCountAll(queryOptions);
return {
rows: options?.countOnly ? [] : rows,
count: count
};
} catch (error) {
console.error('Error executing query:', error);
throw error;
}
}
static async findAllAutocomplete(query, limit, offset, ) {
let where = {};
if (query) {
where = {
[Op.or]: [
{ ['id']: Utils.uuid(query) },
Utils.ilike(
'quiz_questions',
'prompt',
query,
),
],
};
}
const records = await db.quiz_questions.findAll({
attributes: [ 'id', 'prompt' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['prompt', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.prompt,
}));
}
};

View File

@ -0,0 +1,506 @@
const db = require('../models');
const FileDBApi = require('./file');
const crypto = require('crypto');
const Utils = require('../utils');
const Sequelize = db.Sequelize;
const Op = Sequelize.Op;
module.exports = class Rank_tiersDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const rank_tiers = await db.rank_tiers.create(
{
id: data.id || undefined,
name: data.name
||
null
,
min_points: data.min_points
||
null
,
max_points: data.max_points
||
null
,
description: data.description
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.rank_tiers.getTableName(),
belongsToColumn: 'icon_images',
belongsToId: rank_tiers.id,
},
data.icon_images,
options,
);
return rank_tiers;
}
static async bulkImport(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
// Prepare data - wrapping individual data transformations in a map() method
const rank_tiersData = data.map((item, index) => ({
id: item.id || undefined,
name: item.name
||
null
,
min_points: item.min_points
||
null
,
max_points: item.max_points
||
null
,
description: item.description
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const rank_tiers = await db.rank_tiers.bulkCreate(rank_tiersData, { transaction });
// For each item created, replace relation files
for (let i = 0; i < rank_tiers.length; i++) {
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.rank_tiers.getTableName(),
belongsToColumn: 'icon_images',
belongsToId: rank_tiers[i].id,
},
data[i].icon_images,
options,
);
}
return rank_tiers;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const rank_tiers = await db.rank_tiers.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.name !== undefined) updatePayload.name = data.name;
if (data.min_points !== undefined) updatePayload.min_points = data.min_points;
if (data.max_points !== undefined) updatePayload.max_points = data.max_points;
if (data.description !== undefined) updatePayload.description = data.description;
updatePayload.updatedById = currentUser.id;
await rank_tiers.update(updatePayload, {transaction});
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.rank_tiers.getTableName(),
belongsToColumn: 'icon_images',
belongsToId: rank_tiers.id,
},
data.icon_images,
options,
);
return rank_tiers;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const rank_tiers = await db.rank_tiers.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of rank_tiers) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of rank_tiers) {
await record.destroy({transaction});
}
});
return rank_tiers;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const rank_tiers = await db.rank_tiers.findByPk(id, options);
await rank_tiers.update({
deletedBy: currentUser.id
}, {
transaction,
});
await rank_tiers.destroy({
transaction
});
return rank_tiers;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const rank_tiers = await db.rank_tiers.findOne(
{ where },
{ transaction },
);
if (!rank_tiers) {
return rank_tiers;
}
const output = rank_tiers.get({plain: true});
output.user_ranks_rank_tier = await rank_tiers.getUser_ranks_rank_tier({
transaction
});
output.icon_images = await rank_tiers.getIcon_images({
transaction
});
return output;
}
static async findAll(
filter,
options
) {
const limit = filter.limit || 0;
let offset = 0;
let where = {};
const currentPage = +filter.page;
offset = currentPage * limit;
const orderBy = null;
const transaction = (options && options.transaction) || undefined;
let include = [
{
model: db.file,
as: 'icon_images',
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.name) {
where = {
...where,
[Op.and]: Utils.ilike(
'rank_tiers',
'name',
filter.name,
),
};
}
if (filter.description) {
where = {
...where,
[Op.and]: Utils.ilike(
'rank_tiers',
'description',
filter.description,
),
};
}
if (filter.min_pointsRange) {
const [start, end] = filter.min_pointsRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
min_points: {
...where.min_points,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
min_points: {
...where.min_points,
[Op.lte]: end,
},
};
}
}
if (filter.max_pointsRange) {
const [start, end] = filter.max_pointsRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
max_points: {
...where.max_points,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
max_points: {
...where.max_points,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.createdAtRange) {
const [start, end] = filter.createdAtRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.lte]: end,
},
};
}
}
}
const queryOptions = {
where,
include,
distinct: true,
order: filter.field && filter.sort
? [[filter.field, filter.sort]]
: [['createdAt', 'desc']],
transaction: options?.transaction,
logging: console.log
};
if (!options?.countOnly) {
queryOptions.limit = limit ? Number(limit) : undefined;
queryOptions.offset = offset ? Number(offset) : undefined;
}
try {
const { rows, count } = await db.rank_tiers.findAndCountAll(queryOptions);
return {
rows: options?.countOnly ? [] : rows,
count: count
};
} catch (error) {
console.error('Error executing query:', error);
throw error;
}
}
static async findAllAutocomplete(query, limit, offset, ) {
let where = {};
if (query) {
where = {
[Op.or]: [
{ ['id']: Utils.uuid(query) },
Utils.ilike(
'rank_tiers',
'name',
query,
),
],
};
}
const records = await db.rank_tiers.findAll({
attributes: [ 'id', 'name' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['name', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.name,
}));
}
};

View File

@ -0,0 +1,596 @@
const db = require('../models');
const FileDBApi = require('./file');
const crypto = require('crypto');
const Utils = require('../utils');
const Sequelize = db.Sequelize;
const Op = Sequelize.Op;
module.exports = class Reading_circle_eventsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const reading_circle_events = await db.reading_circle_events.create(
{
id: data.id || undefined,
title: data.title
||
null
,
agenda: data.agenda
||
null
,
status: data.status
||
null
,
start_at: data.start_at
||
null
,
end_at: data.end_at
||
null
,
meeting_link: data.meeting_link
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await reading_circle_events.setBook_club( data.book_club || null, {
transaction,
});
await reading_circle_events.setBook( data.book || null, {
transaction,
});
return reading_circle_events;
}
static async bulkImport(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
// Prepare data - wrapping individual data transformations in a map() method
const reading_circle_eventsData = data.map((item, index) => ({
id: item.id || undefined,
title: item.title
||
null
,
agenda: item.agenda
||
null
,
status: item.status
||
null
,
start_at: item.start_at
||
null
,
end_at: item.end_at
||
null
,
meeting_link: item.meeting_link
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const reading_circle_events = await db.reading_circle_events.bulkCreate(reading_circle_eventsData, { transaction });
// For each item created, replace relation files
return reading_circle_events;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const reading_circle_events = await db.reading_circle_events.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.title !== undefined) updatePayload.title = data.title;
if (data.agenda !== undefined) updatePayload.agenda = data.agenda;
if (data.status !== undefined) updatePayload.status = data.status;
if (data.start_at !== undefined) updatePayload.start_at = data.start_at;
if (data.end_at !== undefined) updatePayload.end_at = data.end_at;
if (data.meeting_link !== undefined) updatePayload.meeting_link = data.meeting_link;
updatePayload.updatedById = currentUser.id;
await reading_circle_events.update(updatePayload, {transaction});
if (data.book_club !== undefined) {
await reading_circle_events.setBook_club(
data.book_club,
{ transaction }
);
}
if (data.book !== undefined) {
await reading_circle_events.setBook(
data.book,
{ transaction }
);
}
return reading_circle_events;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const reading_circle_events = await db.reading_circle_events.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of reading_circle_events) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of reading_circle_events) {
await record.destroy({transaction});
}
});
return reading_circle_events;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const reading_circle_events = await db.reading_circle_events.findByPk(id, options);
await reading_circle_events.update({
deletedBy: currentUser.id
}, {
transaction,
});
await reading_circle_events.destroy({
transaction
});
return reading_circle_events;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const reading_circle_events = await db.reading_circle_events.findOne(
{ where },
{ transaction },
);
if (!reading_circle_events) {
return reading_circle_events;
}
const output = reading_circle_events.get({plain: true});
output.book_club = await reading_circle_events.getBook_club({
transaction
});
output.book = await reading_circle_events.getBook({
transaction
});
return output;
}
static async findAll(
filter,
options
) {
const limit = filter.limit || 0;
let offset = 0;
let where = {};
const currentPage = +filter.page;
offset = currentPage * limit;
const orderBy = null;
const transaction = (options && options.transaction) || undefined;
let include = [
{
model: db.book_clubs,
as: 'book_club',
where: filter.book_club ? {
[Op.or]: [
{ id: { [Op.in]: filter.book_club.split('|').map(term => Utils.uuid(term)) } },
{
name: {
[Op.or]: filter.book_club.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.books,
as: 'book',
where: filter.book ? {
[Op.or]: [
{ id: { [Op.in]: filter.book.split('|').map(term => Utils.uuid(term)) } },
{
title: {
[Op.or]: filter.book.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.title) {
where = {
...where,
[Op.and]: Utils.ilike(
'reading_circle_events',
'title',
filter.title,
),
};
}
if (filter.agenda) {
where = {
...where,
[Op.and]: Utils.ilike(
'reading_circle_events',
'agenda',
filter.agenda,
),
};
}
if (filter.meeting_link) {
where = {
...where,
[Op.and]: Utils.ilike(
'reading_circle_events',
'meeting_link',
filter.meeting_link,
),
};
}
if (filter.calendarStart && filter.calendarEnd) {
where = {
...where,
[Op.or]: [
{
start_at: {
[Op.between]: [filter.calendarStart, filter.calendarEnd],
},
},
{
end_at: {
[Op.between]: [filter.calendarStart, filter.calendarEnd],
},
},
],
};
}
if (filter.start_atRange) {
const [start, end] = filter.start_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
start_at: {
...where.start_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
start_at: {
...where.start_at,
[Op.lte]: end,
},
};
}
}
if (filter.end_atRange) {
const [start, end] = filter.end_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
end_at: {
...where.end_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
end_at: {
...where.end_at,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.status) {
where = {
...where,
status: filter.status,
};
}
if (filter.createdAtRange) {
const [start, end] = filter.createdAtRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.lte]: end,
},
};
}
}
}
const queryOptions = {
where,
include,
distinct: true,
order: filter.field && filter.sort
? [[filter.field, filter.sort]]
: [['createdAt', 'desc']],
transaction: options?.transaction,
logging: console.log
};
if (!options?.countOnly) {
queryOptions.limit = limit ? Number(limit) : undefined;
queryOptions.offset = offset ? Number(offset) : undefined;
}
try {
const { rows, count } = await db.reading_circle_events.findAndCountAll(queryOptions);
return {
rows: options?.countOnly ? [] : rows,
count: count
};
} catch (error) {
console.error('Error executing query:', error);
throw error;
}
}
static async findAllAutocomplete(query, limit, offset, ) {
let where = {};
if (query) {
where = {
[Op.or]: [
{ ['id']: Utils.uuid(query) },
Utils.ilike(
'reading_circle_events',
'title',
query,
),
],
};
}
const records = await db.reading_circle_events.findAll({
attributes: [ 'id', 'title' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['title', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.title,
}));
}
};

View File

@ -0,0 +1,523 @@
const db = require('../models');
const FileDBApi = require('./file');
const crypto = require('crypto');
const Utils = require('../utils');
const Sequelize = db.Sequelize;
const Op = Sequelize.Op;
module.exports = class Reading_streaksDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const reading_streaks = await db.reading_streaks.create(
{
id: data.id || undefined,
current_streak_days: data.current_streak_days
||
null
,
best_streak_days: data.best_streak_days
||
null
,
last_streak_date: data.last_streak_date
||
null
,
started_at: data.started_at
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await reading_streaks.setUser( data.user || null, {
transaction,
});
return reading_streaks;
}
static async bulkImport(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
// Prepare data - wrapping individual data transformations in a map() method
const reading_streaksData = data.map((item, index) => ({
id: item.id || undefined,
current_streak_days: item.current_streak_days
||
null
,
best_streak_days: item.best_streak_days
||
null
,
last_streak_date: item.last_streak_date
||
null
,
started_at: item.started_at
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const reading_streaks = await db.reading_streaks.bulkCreate(reading_streaksData, { transaction });
// For each item created, replace relation files
return reading_streaks;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const reading_streaks = await db.reading_streaks.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.current_streak_days !== undefined) updatePayload.current_streak_days = data.current_streak_days;
if (data.best_streak_days !== undefined) updatePayload.best_streak_days = data.best_streak_days;
if (data.last_streak_date !== undefined) updatePayload.last_streak_date = data.last_streak_date;
if (data.started_at !== undefined) updatePayload.started_at = data.started_at;
updatePayload.updatedById = currentUser.id;
await reading_streaks.update(updatePayload, {transaction});
if (data.user !== undefined) {
await reading_streaks.setUser(
data.user,
{ transaction }
);
}
return reading_streaks;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const reading_streaks = await db.reading_streaks.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of reading_streaks) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of reading_streaks) {
await record.destroy({transaction});
}
});
return reading_streaks;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const reading_streaks = await db.reading_streaks.findByPk(id, options);
await reading_streaks.update({
deletedBy: currentUser.id
}, {
transaction,
});
await reading_streaks.destroy({
transaction
});
return reading_streaks;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const reading_streaks = await db.reading_streaks.findOne(
{ where },
{ transaction },
);
if (!reading_streaks) {
return reading_streaks;
}
const output = reading_streaks.get({plain: true});
output.user = await reading_streaks.getUser({
transaction
});
return output;
}
static async findAll(
filter,
options
) {
const limit = filter.limit || 0;
let offset = 0;
let where = {};
const currentPage = +filter.page;
offset = currentPage * limit;
const orderBy = null;
const transaction = (options && options.transaction) || undefined;
let include = [
{
model: db.users,
as: 'user',
where: filter.user ? {
[Op.or]: [
{ id: { [Op.in]: filter.user.split('|').map(term => Utils.uuid(term)) } },
{
firstName: {
[Op.or]: filter.user.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.current_streak_daysRange) {
const [start, end] = filter.current_streak_daysRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
current_streak_days: {
...where.current_streak_days,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
current_streak_days: {
...where.current_streak_days,
[Op.lte]: end,
},
};
}
}
if (filter.best_streak_daysRange) {
const [start, end] = filter.best_streak_daysRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
best_streak_days: {
...where.best_streak_days,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
best_streak_days: {
...where.best_streak_days,
[Op.lte]: end,
},
};
}
}
if (filter.last_streak_dateRange) {
const [start, end] = filter.last_streak_dateRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
last_streak_date: {
...where.last_streak_date,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
last_streak_date: {
...where.last_streak_date,
[Op.lte]: end,
},
};
}
}
if (filter.started_atRange) {
const [start, end] = filter.started_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
started_at: {
...where.started_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
started_at: {
...where.started_at,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.createdAtRange) {
const [start, end] = filter.createdAtRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.lte]: end,
},
};
}
}
}
const queryOptions = {
where,
include,
distinct: true,
order: filter.field && filter.sort
? [[filter.field, filter.sort]]
: [['createdAt', 'desc']],
transaction: options?.transaction,
logging: console.log
};
if (!options?.countOnly) {
queryOptions.limit = limit ? Number(limit) : undefined;
queryOptions.offset = offset ? Number(offset) : undefined;
}
try {
const { rows, count } = await db.reading_streaks.findAndCountAll(queryOptions);
return {
rows: options?.countOnly ? [] : rows,
count: count
};
} catch (error) {
console.error('Error executing query:', error);
throw error;
}
}
static async findAllAutocomplete(query, limit, offset, ) {
let where = {};
if (query) {
where = {
[Op.or]: [
{ ['id']: Utils.uuid(query) },
Utils.ilike(
'reading_streaks',
'current_streak_days',
query,
),
],
};
}
const records = await db.reading_streaks.findAll({
attributes: [ 'id', 'current_streak_days' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['current_streak_days', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.current_streak_days,
}));
}
};

View File

@ -0,0 +1,530 @@
const db = require('../models');
const FileDBApi = require('./file');
const crypto = require('crypto');
const Utils = require('../utils');
const Sequelize = db.Sequelize;
const Op = Sequelize.Op;
module.exports = class Recommendation_eventsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const recommendation_events = await db.recommendation_events.create(
{
id: data.id || undefined,
source: data.source
||
null
,
score: data.score
||
null
,
explanation: data.explanation
||
null
,
recommended_at: data.recommended_at
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await recommendation_events.setUser( data.user || null, {
transaction,
});
await recommendation_events.setBook( data.book || null, {
transaction,
});
return recommendation_events;
}
static async bulkImport(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
// Prepare data - wrapping individual data transformations in a map() method
const recommendation_eventsData = data.map((item, index) => ({
id: item.id || undefined,
source: item.source
||
null
,
score: item.score
||
null
,
explanation: item.explanation
||
null
,
recommended_at: item.recommended_at
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const recommendation_events = await db.recommendation_events.bulkCreate(recommendation_eventsData, { transaction });
// For each item created, replace relation files
return recommendation_events;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const recommendation_events = await db.recommendation_events.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.source !== undefined) updatePayload.source = data.source;
if (data.score !== undefined) updatePayload.score = data.score;
if (data.explanation !== undefined) updatePayload.explanation = data.explanation;
if (data.recommended_at !== undefined) updatePayload.recommended_at = data.recommended_at;
updatePayload.updatedById = currentUser.id;
await recommendation_events.update(updatePayload, {transaction});
if (data.user !== undefined) {
await recommendation_events.setUser(
data.user,
{ transaction }
);
}
if (data.book !== undefined) {
await recommendation_events.setBook(
data.book,
{ transaction }
);
}
return recommendation_events;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const recommendation_events = await db.recommendation_events.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of recommendation_events) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of recommendation_events) {
await record.destroy({transaction});
}
});
return recommendation_events;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const recommendation_events = await db.recommendation_events.findByPk(id, options);
await recommendation_events.update({
deletedBy: currentUser.id
}, {
transaction,
});
await recommendation_events.destroy({
transaction
});
return recommendation_events;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const recommendation_events = await db.recommendation_events.findOne(
{ where },
{ transaction },
);
if (!recommendation_events) {
return recommendation_events;
}
const output = recommendation_events.get({plain: true});
output.user = await recommendation_events.getUser({
transaction
});
output.book = await recommendation_events.getBook({
transaction
});
return output;
}
static async findAll(
filter,
options
) {
const limit = filter.limit || 0;
let offset = 0;
let where = {};
const currentPage = +filter.page;
offset = currentPage * limit;
const orderBy = null;
const transaction = (options && options.transaction) || undefined;
let include = [
{
model: db.users,
as: 'user',
where: filter.user ? {
[Op.or]: [
{ id: { [Op.in]: filter.user.split('|').map(term => Utils.uuid(term)) } },
{
firstName: {
[Op.or]: filter.user.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.books,
as: 'book',
where: filter.book ? {
[Op.or]: [
{ id: { [Op.in]: filter.book.split('|').map(term => Utils.uuid(term)) } },
{
title: {
[Op.or]: filter.book.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.explanation) {
where = {
...where,
[Op.and]: Utils.ilike(
'recommendation_events',
'explanation',
filter.explanation,
),
};
}
if (filter.scoreRange) {
const [start, end] = filter.scoreRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
score: {
...where.score,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
score: {
...where.score,
[Op.lte]: end,
},
};
}
}
if (filter.recommended_atRange) {
const [start, end] = filter.recommended_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
recommended_at: {
...where.recommended_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
recommended_at: {
...where.recommended_at,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.source) {
where = {
...where,
source: filter.source,
};
}
if (filter.createdAtRange) {
const [start, end] = filter.createdAtRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.lte]: end,
},
};
}
}
}
const queryOptions = {
where,
include,
distinct: true,
order: filter.field && filter.sort
? [[filter.field, filter.sort]]
: [['createdAt', 'desc']],
transaction: options?.transaction,
logging: console.log
};
if (!options?.countOnly) {
queryOptions.limit = limit ? Number(limit) : undefined;
queryOptions.offset = offset ? Number(offset) : undefined;
}
try {
const { rows, count } = await db.recommendation_events.findAndCountAll(queryOptions);
return {
rows: options?.countOnly ? [] : rows,
count: count
};
} catch (error) {
console.error('Error executing query:', error);
throw error;
}
}
static async findAllAutocomplete(query, limit, offset, ) {
let where = {};
if (query) {
where = {
[Op.or]: [
{ ['id']: Utils.uuid(query) },
Utils.ilike(
'recommendation_events',
'explanation',
query,
),
],
};
}
const records = await db.recommendation_events.findAll({
attributes: [ 'id', 'explanation' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['explanation', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.explanation,
}));
}
};

432
backend/src/db/api/roles.js Normal file
View File

@ -0,0 +1,432 @@
const db = require('../models');
const FileDBApi = require('./file');
const crypto = require('crypto');
const Utils = require('../utils');
const Sequelize = db.Sequelize;
const Op = Sequelize.Op;
module.exports = class RolesDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const roles = await db.roles.create(
{
id: data.id || undefined,
name: data.name
||
null
,
role_customization: data.role_customization
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await roles.setPermissions(data.permissions || [], {
transaction,
});
return roles;
}
static async bulkImport(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
// Prepare data - wrapping individual data transformations in a map() method
const rolesData = data.map((item, index) => ({
id: item.id || undefined,
name: item.name
||
null
,
role_customization: item.role_customization
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const roles = await db.roles.bulkCreate(rolesData, { transaction });
// For each item created, replace relation files
return roles;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const roles = await db.roles.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.name !== undefined) updatePayload.name = data.name;
if (data.role_customization !== undefined) updatePayload.role_customization = data.role_customization;
updatePayload.updatedById = currentUser.id;
await roles.update(updatePayload, {transaction});
if (data.permissions !== undefined) {
await roles.setPermissions(data.permissions, { transaction });
}
return roles;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const roles = await db.roles.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of roles) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of roles) {
await record.destroy({transaction});
}
});
return roles;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const roles = await db.roles.findByPk(id, options);
await roles.update({
deletedBy: currentUser.id
}, {
transaction,
});
await roles.destroy({
transaction
});
return roles;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const roles = await db.roles.findOne(
{ where },
{ transaction },
);
if (!roles) {
return roles;
}
const output = roles.get({plain: true});
output.users_app_role = await roles.getUsers_app_role({
transaction
});
output.permissions = await roles.getPermissions({
transaction
});
return output;
}
static async findAll(
filter,
options
) {
const limit = filter.limit || 0;
let offset = 0;
let where = {};
const currentPage = +filter.page;
offset = currentPage * limit;
const orderBy = null;
const transaction = (options && options.transaction) || undefined;
let include = [
{
model: db.permissions,
as: 'permissions',
required: false,
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.name) {
where = {
...where,
[Op.and]: Utils.ilike(
'roles',
'name',
filter.name,
),
};
}
if (filter.role_customization) {
where = {
...where,
[Op.and]: Utils.ilike(
'roles',
'role_customization',
filter.role_customization,
),
};
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.permissions) {
const searchTerms = filter.permissions.split('|');
include = [
{
model: db.permissions,
as: 'permissions_filter',
required: searchTerms.length > 0,
where: searchTerms.length > 0 ? {
[Op.or]: [
{ id: { [Op.in]: searchTerms.map(term => Utils.uuid(term)) } },
{
name: {
[Op.or]: searchTerms.map(term => ({ [Op.iLike]: `%${term}%` }))
}
}
]
} : undefined
},
...include,
]
}
if (filter.createdAtRange) {
const [start, end] = filter.createdAtRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.lte]: end,
},
};
}
}
}
const queryOptions = {
where,
include,
distinct: true,
order: filter.field && filter.sort
? [[filter.field, filter.sort]]
: [['createdAt', 'desc']],
transaction: options?.transaction,
logging: console.log
};
if (!options?.countOnly) {
queryOptions.limit = limit ? Number(limit) : undefined;
queryOptions.offset = offset ? Number(offset) : undefined;
}
try {
const { rows, count } = await db.roles.findAndCountAll(queryOptions);
return {
rows: options?.countOnly ? [] : rows,
count: count
};
} catch (error) {
console.error('Error executing query:', error);
throw error;
}
}
static async findAllAutocomplete(query, limit, offset, ) {
let where = {};
if (query) {
where = {
[Op.or]: [
{ ['id']: Utils.uuid(query) },
Utils.ilike(
'roles',
'name',
query,
),
],
};
}
const records = await db.roles.findAll({
attributes: [ 'id', 'name' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['name', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.name,
}));
}
};

View File

@ -0,0 +1,508 @@
const db = require('../models');
const FileDBApi = require('./file');
const crypto = require('crypto');
const Utils = require('../utils');
const Sequelize = db.Sequelize;
const Op = Sequelize.Op;
module.exports = class User_achievementsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const user_achievements = await db.user_achievements.create(
{
id: data.id || undefined,
earned_at: data.earned_at
||
null
,
progress_value: data.progress_value
||
null
,
notified: data.notified
||
false
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await user_achievements.setUser( data.user || null, {
transaction,
});
await user_achievements.setAchievement_definition( data.achievement_definition || null, {
transaction,
});
return user_achievements;
}
static async bulkImport(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
// Prepare data - wrapping individual data transformations in a map() method
const user_achievementsData = data.map((item, index) => ({
id: item.id || undefined,
earned_at: item.earned_at
||
null
,
progress_value: item.progress_value
||
null
,
notified: item.notified
||
false
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const user_achievements = await db.user_achievements.bulkCreate(user_achievementsData, { transaction });
// For each item created, replace relation files
return user_achievements;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const user_achievements = await db.user_achievements.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.earned_at !== undefined) updatePayload.earned_at = data.earned_at;
if (data.progress_value !== undefined) updatePayload.progress_value = data.progress_value;
if (data.notified !== undefined) updatePayload.notified = data.notified;
updatePayload.updatedById = currentUser.id;
await user_achievements.update(updatePayload, {transaction});
if (data.user !== undefined) {
await user_achievements.setUser(
data.user,
{ transaction }
);
}
if (data.achievement_definition !== undefined) {
await user_achievements.setAchievement_definition(
data.achievement_definition,
{ transaction }
);
}
return user_achievements;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const user_achievements = await db.user_achievements.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of user_achievements) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of user_achievements) {
await record.destroy({transaction});
}
});
return user_achievements;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const user_achievements = await db.user_achievements.findByPk(id, options);
await user_achievements.update({
deletedBy: currentUser.id
}, {
transaction,
});
await user_achievements.destroy({
transaction
});
return user_achievements;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const user_achievements = await db.user_achievements.findOne(
{ where },
{ transaction },
);
if (!user_achievements) {
return user_achievements;
}
const output = user_achievements.get({plain: true});
output.user = await user_achievements.getUser({
transaction
});
output.achievement_definition = await user_achievements.getAchievement_definition({
transaction
});
return output;
}
static async findAll(
filter,
options
) {
const limit = filter.limit || 0;
let offset = 0;
let where = {};
const currentPage = +filter.page;
offset = currentPage * limit;
const orderBy = null;
const transaction = (options && options.transaction) || undefined;
let include = [
{
model: db.users,
as: 'user',
where: filter.user ? {
[Op.or]: [
{ id: { [Op.in]: filter.user.split('|').map(term => Utils.uuid(term)) } },
{
firstName: {
[Op.or]: filter.user.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.achievement_definitions,
as: 'achievement_definition',
where: filter.achievement_definition ? {
[Op.or]: [
{ id: { [Op.in]: filter.achievement_definition.split('|').map(term => Utils.uuid(term)) } },
{
name: {
[Op.or]: filter.achievement_definition.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.earned_atRange) {
const [start, end] = filter.earned_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
earned_at: {
...where.earned_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
earned_at: {
...where.earned_at,
[Op.lte]: end,
},
};
}
}
if (filter.progress_valueRange) {
const [start, end] = filter.progress_valueRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
progress_value: {
...where.progress_value,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
progress_value: {
...where.progress_value,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.notified) {
where = {
...where,
notified: filter.notified,
};
}
if (filter.createdAtRange) {
const [start, end] = filter.createdAtRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.lte]: end,
},
};
}
}
}
const queryOptions = {
where,
include,
distinct: true,
order: filter.field && filter.sort
? [[filter.field, filter.sort]]
: [['createdAt', 'desc']],
transaction: options?.transaction,
logging: console.log
};
if (!options?.countOnly) {
queryOptions.limit = limit ? Number(limit) : undefined;
queryOptions.offset = offset ? Number(offset) : undefined;
}
try {
const { rows, count } = await db.user_achievements.findAndCountAll(queryOptions);
return {
rows: options?.countOnly ? [] : rows,
count: count
};
} catch (error) {
console.error('Error executing query:', error);
throw error;
}
}
static async findAllAutocomplete(query, limit, offset, ) {
let where = {};
if (query) {
where = {
[Op.or]: [
{ ['id']: Utils.uuid(query) },
Utils.ilike(
'user_achievements',
'progress_value',
query,
),
],
};
}
const records = await db.user_achievements.findAll({
attributes: [ 'id', 'progress_value' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['progress_value', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.progress_value,
}));
}
};

View File

@ -0,0 +1,580 @@
const db = require('../models');
const FileDBApi = require('./file');
const crypto = require('crypto');
const Utils = require('../utils');
const Sequelize = db.Sequelize;
const Op = Sequelize.Op;
module.exports = class User_challengesDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const user_challenges = await db.user_challenges.create(
{
id: data.id || undefined,
status: data.status
||
null
,
progress_value: data.progress_value
||
null
,
joined_at: data.joined_at
||
null
,
completed_at: data.completed_at
||
null
,
coins_awarded: data.coins_awarded
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await user_challenges.setUser( data.user || null, {
transaction,
});
await user_challenges.setChallenge_definition( data.challenge_definition || null, {
transaction,
});
return user_challenges;
}
static async bulkImport(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
// Prepare data - wrapping individual data transformations in a map() method
const user_challengesData = data.map((item, index) => ({
id: item.id || undefined,
status: item.status
||
null
,
progress_value: item.progress_value
||
null
,
joined_at: item.joined_at
||
null
,
completed_at: item.completed_at
||
null
,
coins_awarded: item.coins_awarded
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const user_challenges = await db.user_challenges.bulkCreate(user_challengesData, { transaction });
// For each item created, replace relation files
return user_challenges;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const user_challenges = await db.user_challenges.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.status !== undefined) updatePayload.status = data.status;
if (data.progress_value !== undefined) updatePayload.progress_value = data.progress_value;
if (data.joined_at !== undefined) updatePayload.joined_at = data.joined_at;
if (data.completed_at !== undefined) updatePayload.completed_at = data.completed_at;
if (data.coins_awarded !== undefined) updatePayload.coins_awarded = data.coins_awarded;
updatePayload.updatedById = currentUser.id;
await user_challenges.update(updatePayload, {transaction});
if (data.user !== undefined) {
await user_challenges.setUser(
data.user,
{ transaction }
);
}
if (data.challenge_definition !== undefined) {
await user_challenges.setChallenge_definition(
data.challenge_definition,
{ transaction }
);
}
return user_challenges;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const user_challenges = await db.user_challenges.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of user_challenges) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of user_challenges) {
await record.destroy({transaction});
}
});
return user_challenges;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const user_challenges = await db.user_challenges.findByPk(id, options);
await user_challenges.update({
deletedBy: currentUser.id
}, {
transaction,
});
await user_challenges.destroy({
transaction
});
return user_challenges;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const user_challenges = await db.user_challenges.findOne(
{ where },
{ transaction },
);
if (!user_challenges) {
return user_challenges;
}
const output = user_challenges.get({plain: true});
output.user = await user_challenges.getUser({
transaction
});
output.challenge_definition = await user_challenges.getChallenge_definition({
transaction
});
return output;
}
static async findAll(
filter,
options
) {
const limit = filter.limit || 0;
let offset = 0;
let where = {};
const currentPage = +filter.page;
offset = currentPage * limit;
const orderBy = null;
const transaction = (options && options.transaction) || undefined;
let include = [
{
model: db.users,
as: 'user',
where: filter.user ? {
[Op.or]: [
{ id: { [Op.in]: filter.user.split('|').map(term => Utils.uuid(term)) } },
{
firstName: {
[Op.or]: filter.user.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.challenge_definitions,
as: 'challenge_definition',
where: filter.challenge_definition ? {
[Op.or]: [
{ id: { [Op.in]: filter.challenge_definition.split('|').map(term => Utils.uuid(term)) } },
{
name: {
[Op.or]: filter.challenge_definition.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.progress_valueRange) {
const [start, end] = filter.progress_valueRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
progress_value: {
...where.progress_value,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
progress_value: {
...where.progress_value,
[Op.lte]: end,
},
};
}
}
if (filter.joined_atRange) {
const [start, end] = filter.joined_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
joined_at: {
...where.joined_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
joined_at: {
...where.joined_at,
[Op.lte]: end,
},
};
}
}
if (filter.completed_atRange) {
const [start, end] = filter.completed_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
completed_at: {
...where.completed_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
completed_at: {
...where.completed_at,
[Op.lte]: end,
},
};
}
}
if (filter.coins_awardedRange) {
const [start, end] = filter.coins_awardedRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
coins_awarded: {
...where.coins_awarded,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
coins_awarded: {
...where.coins_awarded,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.status) {
where = {
...where,
status: filter.status,
};
}
if (filter.createdAtRange) {
const [start, end] = filter.createdAtRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.lte]: end,
},
};
}
}
}
const queryOptions = {
where,
include,
distinct: true,
order: filter.field && filter.sort
? [[filter.field, filter.sort]]
: [['createdAt', 'desc']],
transaction: options?.transaction,
logging: console.log
};
if (!options?.countOnly) {
queryOptions.limit = limit ? Number(limit) : undefined;
queryOptions.offset = offset ? Number(offset) : undefined;
}
try {
const { rows, count } = await db.user_challenges.findAndCountAll(queryOptions);
return {
rows: options?.countOnly ? [] : rows,
count: count
};
} catch (error) {
console.error('Error executing query:', error);
throw error;
}
}
static async findAllAutocomplete(query, limit, offset, ) {
let where = {};
if (query) {
where = {
[Op.or]: [
{ ['id']: Utils.uuid(query) },
Utils.ilike(
'user_challenges',
'status',
query,
),
],
};
}
const records = await db.user_challenges.findAll({
attributes: [ 'id', 'status' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['status', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.status,
}));
}
};

View File

@ -0,0 +1,659 @@
const db = require('../models');
const FileDBApi = require('./file');
const crypto = require('crypto');
const Utils = require('../utils');
const Sequelize = db.Sequelize;
const Op = Sequelize.Op;
module.exports = class User_library_itemsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const user_library_items = await db.user_library_items.create(
{
id: data.id || undefined,
source: data.source
||
null
,
status: data.status
||
null
,
offline_downloaded: data.offline_downloaded
||
false
,
downloaded_at: data.downloaded_at
||
null
,
progress_percent: data.progress_percent
||
null
,
current_location: data.current_location
||
null
,
last_opened_at: data.last_opened_at
||
null
,
completed_at: data.completed_at
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await user_library_items.setUser( data.user || null, {
transaction,
});
await user_library_items.setBook( data.book || null, {
transaction,
});
return user_library_items;
}
static async bulkImport(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
// Prepare data - wrapping individual data transformations in a map() method
const user_library_itemsData = data.map((item, index) => ({
id: item.id || undefined,
source: item.source
||
null
,
status: item.status
||
null
,
offline_downloaded: item.offline_downloaded
||
false
,
downloaded_at: item.downloaded_at
||
null
,
progress_percent: item.progress_percent
||
null
,
current_location: item.current_location
||
null
,
last_opened_at: item.last_opened_at
||
null
,
completed_at: item.completed_at
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const user_library_items = await db.user_library_items.bulkCreate(user_library_itemsData, { transaction });
// For each item created, replace relation files
return user_library_items;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const user_library_items = await db.user_library_items.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.source !== undefined) updatePayload.source = data.source;
if (data.status !== undefined) updatePayload.status = data.status;
if (data.offline_downloaded !== undefined) updatePayload.offline_downloaded = data.offline_downloaded;
if (data.downloaded_at !== undefined) updatePayload.downloaded_at = data.downloaded_at;
if (data.progress_percent !== undefined) updatePayload.progress_percent = data.progress_percent;
if (data.current_location !== undefined) updatePayload.current_location = data.current_location;
if (data.last_opened_at !== undefined) updatePayload.last_opened_at = data.last_opened_at;
if (data.completed_at !== undefined) updatePayload.completed_at = data.completed_at;
updatePayload.updatedById = currentUser.id;
await user_library_items.update(updatePayload, {transaction});
if (data.user !== undefined) {
await user_library_items.setUser(
data.user,
{ transaction }
);
}
if (data.book !== undefined) {
await user_library_items.setBook(
data.book,
{ transaction }
);
}
return user_library_items;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const user_library_items = await db.user_library_items.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of user_library_items) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of user_library_items) {
await record.destroy({transaction});
}
});
return user_library_items;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const user_library_items = await db.user_library_items.findByPk(id, options);
await user_library_items.update({
deletedBy: currentUser.id
}, {
transaction,
});
await user_library_items.destroy({
transaction
});
return user_library_items;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const user_library_items = await db.user_library_items.findOne(
{ where },
{ transaction },
);
if (!user_library_items) {
return user_library_items;
}
const output = user_library_items.get({plain: true});
output.user = await user_library_items.getUser({
transaction
});
output.book = await user_library_items.getBook({
transaction
});
return output;
}
static async findAll(
filter,
options
) {
const limit = filter.limit || 0;
let offset = 0;
let where = {};
const currentPage = +filter.page;
offset = currentPage * limit;
const orderBy = null;
const transaction = (options && options.transaction) || undefined;
let include = [
{
model: db.users,
as: 'user',
where: filter.user ? {
[Op.or]: [
{ id: { [Op.in]: filter.user.split('|').map(term => Utils.uuid(term)) } },
{
firstName: {
[Op.or]: filter.user.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.books,
as: 'book',
where: filter.book ? {
[Op.or]: [
{ id: { [Op.in]: filter.book.split('|').map(term => Utils.uuid(term)) } },
{
title: {
[Op.or]: filter.book.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.downloaded_atRange) {
const [start, end] = filter.downloaded_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
downloaded_at: {
...where.downloaded_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
downloaded_at: {
...where.downloaded_at,
[Op.lte]: end,
},
};
}
}
if (filter.progress_percentRange) {
const [start, end] = filter.progress_percentRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
progress_percent: {
...where.progress_percent,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
progress_percent: {
...where.progress_percent,
[Op.lte]: end,
},
};
}
}
if (filter.current_locationRange) {
const [start, end] = filter.current_locationRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
current_location: {
...where.current_location,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
current_location: {
...where.current_location,
[Op.lte]: end,
},
};
}
}
if (filter.last_opened_atRange) {
const [start, end] = filter.last_opened_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
last_opened_at: {
...where.last_opened_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
last_opened_at: {
...where.last_opened_at,
[Op.lte]: end,
},
};
}
}
if (filter.completed_atRange) {
const [start, end] = filter.completed_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
completed_at: {
...where.completed_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
completed_at: {
...where.completed_at,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.source) {
where = {
...where,
source: filter.source,
};
}
if (filter.status) {
where = {
...where,
status: filter.status,
};
}
if (filter.offline_downloaded) {
where = {
...where,
offline_downloaded: filter.offline_downloaded,
};
}
if (filter.createdAtRange) {
const [start, end] = filter.createdAtRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.lte]: end,
},
};
}
}
}
const queryOptions = {
where,
include,
distinct: true,
order: filter.field && filter.sort
? [[filter.field, filter.sort]]
: [['createdAt', 'desc']],
transaction: options?.transaction,
logging: console.log
};
if (!options?.countOnly) {
queryOptions.limit = limit ? Number(limit) : undefined;
queryOptions.offset = offset ? Number(offset) : undefined;
}
try {
const { rows, count } = await db.user_library_items.findAndCountAll(queryOptions);
return {
rows: options?.countOnly ? [] : rows,
count: count
};
} catch (error) {
console.error('Error executing query:', error);
throw error;
}
}
static async findAllAutocomplete(query, limit, offset, ) {
let where = {};
if (query) {
where = {
[Op.or]: [
{ ['id']: Utils.uuid(query) },
Utils.ilike(
'user_library_items',
'status',
query,
),
],
};
}
const records = await db.user_library_items.findAll({
attributes: [ 'id', 'status' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['status', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.status,
}));
}
};

View File

@ -0,0 +1,486 @@
const db = require('../models');
const FileDBApi = require('./file');
const crypto = require('crypto');
const Utils = require('../utils');
const Sequelize = db.Sequelize;
const Op = Sequelize.Op;
module.exports = class User_ranksDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const user_ranks = await db.user_ranks.create(
{
id: data.id || undefined,
rank_points: data.rank_points
||
null
,
updated_at_time: data.updated_at_time
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await user_ranks.setUser( data.user || null, {
transaction,
});
await user_ranks.setRank_tier( data.rank_tier || null, {
transaction,
});
return user_ranks;
}
static async bulkImport(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
// Prepare data - wrapping individual data transformations in a map() method
const user_ranksData = data.map((item, index) => ({
id: item.id || undefined,
rank_points: item.rank_points
||
null
,
updated_at_time: item.updated_at_time
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const user_ranks = await db.user_ranks.bulkCreate(user_ranksData, { transaction });
// For each item created, replace relation files
return user_ranks;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const user_ranks = await db.user_ranks.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.rank_points !== undefined) updatePayload.rank_points = data.rank_points;
if (data.updated_at_time !== undefined) updatePayload.updated_at_time = data.updated_at_time;
updatePayload.updatedById = currentUser.id;
await user_ranks.update(updatePayload, {transaction});
if (data.user !== undefined) {
await user_ranks.setUser(
data.user,
{ transaction }
);
}
if (data.rank_tier !== undefined) {
await user_ranks.setRank_tier(
data.rank_tier,
{ transaction }
);
}
return user_ranks;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const user_ranks = await db.user_ranks.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of user_ranks) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of user_ranks) {
await record.destroy({transaction});
}
});
return user_ranks;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const user_ranks = await db.user_ranks.findByPk(id, options);
await user_ranks.update({
deletedBy: currentUser.id
}, {
transaction,
});
await user_ranks.destroy({
transaction
});
return user_ranks;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const user_ranks = await db.user_ranks.findOne(
{ where },
{ transaction },
);
if (!user_ranks) {
return user_ranks;
}
const output = user_ranks.get({plain: true});
output.user = await user_ranks.getUser({
transaction
});
output.rank_tier = await user_ranks.getRank_tier({
transaction
});
return output;
}
static async findAll(
filter,
options
) {
const limit = filter.limit || 0;
let offset = 0;
let where = {};
const currentPage = +filter.page;
offset = currentPage * limit;
const orderBy = null;
const transaction = (options && options.transaction) || undefined;
let include = [
{
model: db.users,
as: 'user',
where: filter.user ? {
[Op.or]: [
{ id: { [Op.in]: filter.user.split('|').map(term => Utils.uuid(term)) } },
{
firstName: {
[Op.or]: filter.user.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.rank_tiers,
as: 'rank_tier',
where: filter.rank_tier ? {
[Op.or]: [
{ id: { [Op.in]: filter.rank_tier.split('|').map(term => Utils.uuid(term)) } },
{
name: {
[Op.or]: filter.rank_tier.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.rank_pointsRange) {
const [start, end] = filter.rank_pointsRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
rank_points: {
...where.rank_points,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
rank_points: {
...where.rank_points,
[Op.lte]: end,
},
};
}
}
if (filter.updated_at_timeRange) {
const [start, end] = filter.updated_at_timeRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
updated_at_time: {
...where.updated_at_time,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
updated_at_time: {
...where.updated_at_time,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.createdAtRange) {
const [start, end] = filter.createdAtRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.lte]: end,
},
};
}
}
}
const queryOptions = {
where,
include,
distinct: true,
order: filter.field && filter.sort
? [[filter.field, filter.sort]]
: [['createdAt', 'desc']],
transaction: options?.transaction,
logging: console.log
};
if (!options?.countOnly) {
queryOptions.limit = limit ? Number(limit) : undefined;
queryOptions.offset = offset ? Number(offset) : undefined;
}
try {
const { rows, count } = await db.user_ranks.findAndCountAll(queryOptions);
return {
rows: options?.countOnly ? [] : rows,
count: count
};
} catch (error) {
console.error('Error executing query:', error);
throw error;
}
}
static async findAllAutocomplete(query, limit, offset, ) {
let where = {};
if (query) {
where = {
[Op.or]: [
{ ['id']: Utils.uuid(query) },
Utils.ilike(
'user_ranks',
'rank_points',
query,
),
],
};
}
const records = await db.user_ranks.findAll({
attributes: [ 'id', 'rank_points' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['rank_points', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.rank_points,
}));
}
};

View File

@ -0,0 +1,621 @@
const db = require('../models');
const FileDBApi = require('./file');
const crypto = require('crypto');
const Utils = require('../utils');
const Sequelize = db.Sequelize;
const Op = Sequelize.Op;
module.exports = class User_uploadsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const user_uploads = await db.user_uploads.create(
{
id: data.id || undefined,
title: data.title
||
null
,
status: data.status
||
null
,
content_type: data.content_type
||
null
,
rejection_reason: data.rejection_reason
||
null
,
uploaded_at: data.uploaded_at
||
null
,
reviewed_at: data.reviewed_at
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await user_uploads.setUser( data.user || null, {
transaction,
});
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.user_uploads.getTableName(),
belongsToColumn: 'file_assets',
belongsToId: user_uploads.id,
},
data.file_assets,
options,
);
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.user_uploads.getTableName(),
belongsToColumn: 'preview_images',
belongsToId: user_uploads.id,
},
data.preview_images,
options,
);
return user_uploads;
}
static async bulkImport(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
// Prepare data - wrapping individual data transformations in a map() method
const user_uploadsData = data.map((item, index) => ({
id: item.id || undefined,
title: item.title
||
null
,
status: item.status
||
null
,
content_type: item.content_type
||
null
,
rejection_reason: item.rejection_reason
||
null
,
uploaded_at: item.uploaded_at
||
null
,
reviewed_at: item.reviewed_at
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const user_uploads = await db.user_uploads.bulkCreate(user_uploadsData, { transaction });
// For each item created, replace relation files
for (let i = 0; i < user_uploads.length; i++) {
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.user_uploads.getTableName(),
belongsToColumn: 'file_assets',
belongsToId: user_uploads[i].id,
},
data[i].file_assets,
options,
);
}
for (let i = 0; i < user_uploads.length; i++) {
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.user_uploads.getTableName(),
belongsToColumn: 'preview_images',
belongsToId: user_uploads[i].id,
},
data[i].preview_images,
options,
);
}
return user_uploads;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const user_uploads = await db.user_uploads.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.title !== undefined) updatePayload.title = data.title;
if (data.status !== undefined) updatePayload.status = data.status;
if (data.content_type !== undefined) updatePayload.content_type = data.content_type;
if (data.rejection_reason !== undefined) updatePayload.rejection_reason = data.rejection_reason;
if (data.uploaded_at !== undefined) updatePayload.uploaded_at = data.uploaded_at;
if (data.reviewed_at !== undefined) updatePayload.reviewed_at = data.reviewed_at;
updatePayload.updatedById = currentUser.id;
await user_uploads.update(updatePayload, {transaction});
if (data.user !== undefined) {
await user_uploads.setUser(
data.user,
{ transaction }
);
}
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.user_uploads.getTableName(),
belongsToColumn: 'file_assets',
belongsToId: user_uploads.id,
},
data.file_assets,
options,
);
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.user_uploads.getTableName(),
belongsToColumn: 'preview_images',
belongsToId: user_uploads.id,
},
data.preview_images,
options,
);
return user_uploads;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const user_uploads = await db.user_uploads.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of user_uploads) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of user_uploads) {
await record.destroy({transaction});
}
});
return user_uploads;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const user_uploads = await db.user_uploads.findByPk(id, options);
await user_uploads.update({
deletedBy: currentUser.id
}, {
transaction,
});
await user_uploads.destroy({
transaction
});
return user_uploads;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const user_uploads = await db.user_uploads.findOne(
{ where },
{ transaction },
);
if (!user_uploads) {
return user_uploads;
}
const output = user_uploads.get({plain: true});
output.user = await user_uploads.getUser({
transaction
});
output.file_assets = await user_uploads.getFile_assets({
transaction
});
output.preview_images = await user_uploads.getPreview_images({
transaction
});
return output;
}
static async findAll(
filter,
options
) {
const limit = filter.limit || 0;
let offset = 0;
let where = {};
const currentPage = +filter.page;
offset = currentPage * limit;
const orderBy = null;
const transaction = (options && options.transaction) || undefined;
let include = [
{
model: db.users,
as: 'user',
where: filter.user ? {
[Op.or]: [
{ id: { [Op.in]: filter.user.split('|').map(term => Utils.uuid(term)) } },
{
firstName: {
[Op.or]: filter.user.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.file,
as: 'file_assets',
},
{
model: db.file,
as: 'preview_images',
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.title) {
where = {
...where,
[Op.and]: Utils.ilike(
'user_uploads',
'title',
filter.title,
),
};
}
if (filter.rejection_reason) {
where = {
...where,
[Op.and]: Utils.ilike(
'user_uploads',
'rejection_reason',
filter.rejection_reason,
),
};
}
if (filter.uploaded_atRange) {
const [start, end] = filter.uploaded_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
uploaded_at: {
...where.uploaded_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
uploaded_at: {
...where.uploaded_at,
[Op.lte]: end,
},
};
}
}
if (filter.reviewed_atRange) {
const [start, end] = filter.reviewed_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
reviewed_at: {
...where.reviewed_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
reviewed_at: {
...where.reviewed_at,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.status) {
where = {
...where,
status: filter.status,
};
}
if (filter.content_type) {
where = {
...where,
content_type: filter.content_type,
};
}
if (filter.createdAtRange) {
const [start, end] = filter.createdAtRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.lte]: end,
},
};
}
}
}
const queryOptions = {
where,
include,
distinct: true,
order: filter.field && filter.sort
? [[filter.field, filter.sort]]
: [['createdAt', 'desc']],
transaction: options?.transaction,
logging: console.log
};
if (!options?.countOnly) {
queryOptions.limit = limit ? Number(limit) : undefined;
queryOptions.offset = offset ? Number(offset) : undefined;
}
try {
const { rows, count } = await db.user_uploads.findAndCountAll(queryOptions);
return {
rows: options?.countOnly ? [] : rows,
count: count
};
} catch (error) {
console.error('Error executing query:', error);
throw error;
}
}
static async findAllAutocomplete(query, limit, offset, ) {
let where = {};
if (query) {
where = {
[Op.or]: [
{ ['id']: Utils.uuid(query) },
Utils.ilike(
'user_uploads',
'title',
query,
),
],
};
}
const records = await db.user_uploads.findAll({
attributes: [ 'id', 'title' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['title', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.title,
}));
}
};

1048
backend/src/db/api/users.js Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,639 @@
const db = require('../models');
const FileDBApi = require('./file');
const crypto = require('crypto');
const Utils = require('../utils');
const Sequelize = db.Sequelize;
const Op = Sequelize.Op;
module.exports = class Withdrawal_requestsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const withdrawal_requests = await db.withdrawal_requests.create(
{
id: data.id || undefined,
status: data.status
||
null
,
coins_amount: data.coins_amount
||
null
,
cash_amount_uzs: data.cash_amount_uzs
||
null
,
payout_method: data.payout_method
||
null
,
payout_destination: data.payout_destination
||
null
,
provider_reference: data.provider_reference
||
null
,
admin_note: data.admin_note
||
null
,
requested_at: data.requested_at
||
null
,
processed_at: data.processed_at
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await withdrawal_requests.setUser( data.user || null, {
transaction,
});
return withdrawal_requests;
}
static async bulkImport(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
// Prepare data - wrapping individual data transformations in a map() method
const withdrawal_requestsData = data.map((item, index) => ({
id: item.id || undefined,
status: item.status
||
null
,
coins_amount: item.coins_amount
||
null
,
cash_amount_uzs: item.cash_amount_uzs
||
null
,
payout_method: item.payout_method
||
null
,
payout_destination: item.payout_destination
||
null
,
provider_reference: item.provider_reference
||
null
,
admin_note: item.admin_note
||
null
,
requested_at: item.requested_at
||
null
,
processed_at: item.processed_at
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const withdrawal_requests = await db.withdrawal_requests.bulkCreate(withdrawal_requestsData, { transaction });
// For each item created, replace relation files
return withdrawal_requests;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const withdrawal_requests = await db.withdrawal_requests.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.status !== undefined) updatePayload.status = data.status;
if (data.coins_amount !== undefined) updatePayload.coins_amount = data.coins_amount;
if (data.cash_amount_uzs !== undefined) updatePayload.cash_amount_uzs = data.cash_amount_uzs;
if (data.payout_method !== undefined) updatePayload.payout_method = data.payout_method;
if (data.payout_destination !== undefined) updatePayload.payout_destination = data.payout_destination;
if (data.provider_reference !== undefined) updatePayload.provider_reference = data.provider_reference;
if (data.admin_note !== undefined) updatePayload.admin_note = data.admin_note;
if (data.requested_at !== undefined) updatePayload.requested_at = data.requested_at;
if (data.processed_at !== undefined) updatePayload.processed_at = data.processed_at;
updatePayload.updatedById = currentUser.id;
await withdrawal_requests.update(updatePayload, {transaction});
if (data.user !== undefined) {
await withdrawal_requests.setUser(
data.user,
{ transaction }
);
}
return withdrawal_requests;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const withdrawal_requests = await db.withdrawal_requests.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of withdrawal_requests) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of withdrawal_requests) {
await record.destroy({transaction});
}
});
return withdrawal_requests;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const withdrawal_requests = await db.withdrawal_requests.findByPk(id, options);
await withdrawal_requests.update({
deletedBy: currentUser.id
}, {
transaction,
});
await withdrawal_requests.destroy({
transaction
});
return withdrawal_requests;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const withdrawal_requests = await db.withdrawal_requests.findOne(
{ where },
{ transaction },
);
if (!withdrawal_requests) {
return withdrawal_requests;
}
const output = withdrawal_requests.get({plain: true});
output.payment_transactions_withdrawal_request = await withdrawal_requests.getPayment_transactions_withdrawal_request({
transaction
});
output.user = await withdrawal_requests.getUser({
transaction
});
return output;
}
static async findAll(
filter,
options
) {
const limit = filter.limit || 0;
let offset = 0;
let where = {};
const currentPage = +filter.page;
offset = currentPage * limit;
const orderBy = null;
const transaction = (options && options.transaction) || undefined;
let include = [
{
model: db.users,
as: 'user',
where: filter.user ? {
[Op.or]: [
{ id: { [Op.in]: filter.user.split('|').map(term => Utils.uuid(term)) } },
{
firstName: {
[Op.or]: filter.user.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.payout_destination) {
where = {
...where,
[Op.and]: Utils.ilike(
'withdrawal_requests',
'payout_destination',
filter.payout_destination,
),
};
}
if (filter.provider_reference) {
where = {
...where,
[Op.and]: Utils.ilike(
'withdrawal_requests',
'provider_reference',
filter.provider_reference,
),
};
}
if (filter.admin_note) {
where = {
...where,
[Op.and]: Utils.ilike(
'withdrawal_requests',
'admin_note',
filter.admin_note,
),
};
}
if (filter.coins_amountRange) {
const [start, end] = filter.coins_amountRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
coins_amount: {
...where.coins_amount,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
coins_amount: {
...where.coins_amount,
[Op.lte]: end,
},
};
}
}
if (filter.cash_amount_uzsRange) {
const [start, end] = filter.cash_amount_uzsRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
cash_amount_uzs: {
...where.cash_amount_uzs,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
cash_amount_uzs: {
...where.cash_amount_uzs,
[Op.lte]: end,
},
};
}
}
if (filter.requested_atRange) {
const [start, end] = filter.requested_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
requested_at: {
...where.requested_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
requested_at: {
...where.requested_at,
[Op.lte]: end,
},
};
}
}
if (filter.processed_atRange) {
const [start, end] = filter.processed_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
processed_at: {
...where.processed_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
processed_at: {
...where.processed_at,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.status) {
where = {
...where,
status: filter.status,
};
}
if (filter.payout_method) {
where = {
...where,
payout_method: filter.payout_method,
};
}
if (filter.createdAtRange) {
const [start, end] = filter.createdAtRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.lte]: end,
},
};
}
}
}
const queryOptions = {
where,
include,
distinct: true,
order: filter.field && filter.sort
? [[filter.field, filter.sort]]
: [['createdAt', 'desc']],
transaction: options?.transaction,
logging: console.log
};
if (!options?.countOnly) {
queryOptions.limit = limit ? Number(limit) : undefined;
queryOptions.offset = offset ? Number(offset) : undefined;
}
try {
const { rows, count } = await db.withdrawal_requests.findAndCountAll(queryOptions);
return {
rows: options?.countOnly ? [] : rows,
count: count
};
} catch (error) {
console.error('Error executing query:', error);
throw error;
}
}
static async findAllAutocomplete(query, limit, offset, ) {
let where = {};
if (query) {
where = {
[Op.or]: [
{ ['id']: Utils.uuid(query) },
Utils.ilike(
'withdrawal_requests',
'payout_destination',
query,
),
],
};
}
const records = await db.withdrawal_requests.findAll({
attributes: [ 'id', 'payout_destination' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['payout_destination', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.payout_destination,
}));
}
};

View File

@ -0,0 +1,33 @@
module.exports = {
production: {
dialect: 'postgres',
username: process.env.DB_USER,
password: process.env.DB_PASS,
database: process.env.DB_NAME,
host: process.env.DB_HOST,
port: process.env.DB_PORT,
logging: console.log,
seederStorage: 'sequelize',
},
development: {
username: 'postgres',
dialect: 'postgres',
password: '',
database: 'db_noir_ai',
host: process.env.DB_HOST || 'localhost',
logging: console.log,
seederStorage: 'sequelize',
},
dev_stage: {
dialect: 'postgres',
username: process.env.DB_USER,
password: process.env.DB_PASS,
database: process.env.DB_NAME,
host: process.env.DB_HOST,
port: process.env.DB_PORT,
logging: console.log,
seederStorage: 'sequelize',
}
};

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,124 @@
module.exports = {
async up(queryInterface, Sequelize) {
const transaction = await queryInterface.sequelize.transaction();
try {
const rows = await queryInterface.sequelize.query(
"SELECT to_regclass('public.files') AS regclass_name;",
{
transaction,
type: Sequelize.QueryTypes.SELECT,
},
);
const tableName = rows[0].regclass_name;
if (tableName) {
await transaction.commit();
return;
}
await queryInterface.createTable(
'files',
{
id: {
type: Sequelize.DataTypes.UUID,
defaultValue: Sequelize.DataTypes.UUIDV4,
primaryKey: true,
},
belongsTo: {
type: Sequelize.DataTypes.STRING(255),
allowNull: true,
},
belongsToId: {
type: Sequelize.DataTypes.UUID,
allowNull: true,
},
belongsToColumn: {
type: Sequelize.DataTypes.STRING(255),
allowNull: true,
},
name: {
type: Sequelize.DataTypes.STRING(2083),
allowNull: false,
},
sizeInBytes: {
type: Sequelize.DataTypes.INTEGER,
allowNull: true,
},
privateUrl: {
type: Sequelize.DataTypes.STRING(2083),
allowNull: true,
},
publicUrl: {
type: Sequelize.DataTypes.STRING(2083),
allowNull: false,
},
createdAt: {
type: Sequelize.DataTypes.DATE,
allowNull: false,
},
updatedAt: {
type: Sequelize.DataTypes.DATE,
allowNull: false,
},
deletedAt: {
type: Sequelize.DataTypes.DATE,
allowNull: true,
},
createdById: {
type: Sequelize.DataTypes.UUID,
allowNull: true,
references: {
key: 'id',
model: 'users',
},
onDelete: 'SET NULL',
onUpdate: 'CASCADE',
},
updatedById: {
type: Sequelize.DataTypes.UUID,
allowNull: true,
references: {
key: 'id',
model: 'users',
},
onDelete: 'SET NULL',
onUpdate: 'CASCADE',
},
},
{ transaction },
);
await transaction.commit();
} catch (err) {
await transaction.rollback();
throw err;
}
},
async down(queryInterface, Sequelize) {
const transaction = await queryInterface.sequelize.transaction();
try {
const rows = await queryInterface.sequelize.query(
"SELECT to_regclass('public.files') AS regclass_name;",
{
transaction,
type: Sequelize.QueryTypes.SELECT,
},
);
const tableName = rows[0].regclass_name;
if (!tableName) {
await transaction.commit();
return;
}
await queryInterface.dropTable('files', { transaction });
await transaction.commit();
} catch (err) {
await transaction.rollback();
throw err;
}
},
};

View File

@ -0,0 +1,77 @@
module.exports = {
async up(queryInterface, Sequelize) {
const transaction = await queryInterface.sequelize.transaction();
try {
const rows = await queryInterface.sequelize.query(
"SELECT to_regclass('public.\"usersCustom_permissionsPermissions\"') AS regclass_name;",
{
transaction,
type: Sequelize.QueryTypes.SELECT,
},
);
const tableName = rows[0].regclass_name;
if (tableName) {
await transaction.commit();
return;
}
await queryInterface.createTable(
'usersCustom_permissionsPermissions',
{
createdAt: {
type: Sequelize.DataTypes.DATE,
allowNull: false,
},
updatedAt: {
type: Sequelize.DataTypes.DATE,
allowNull: false,
},
users_custom_permissionsId: {
type: Sequelize.DataTypes.UUID,
allowNull: false,
primaryKey: true,
},
permissionId: {
type: Sequelize.DataTypes.UUID,
allowNull: false,
primaryKey: true,
},
},
{ transaction },
);
await transaction.commit();
} catch (err) {
await transaction.rollback();
throw err;
}
},
async down(queryInterface, Sequelize) {
const transaction = await queryInterface.sequelize.transaction();
try {
const rows = await queryInterface.sequelize.query(
"SELECT to_regclass('public.\"usersCustom_permissionsPermissions\"') AS regclass_name;",
{
transaction,
type: Sequelize.QueryTypes.SELECT,
},
);
const tableName = rows[0].regclass_name;
if (!tableName) {
await transaction.commit();
return;
}
await queryInterface.dropTable('usersCustom_permissionsPermissions', { transaction });
await transaction.commit();
} catch (err) {
await transaction.rollback();
throw err;
}
},
};

View File

@ -0,0 +1,224 @@
const config = require('../../config');
const providers = config.providers;
const crypto = require('crypto');
const bcrypt = require('bcrypt');
const moment = require('moment');
module.exports = function(sequelize, DataTypes) {
const achievement_definitions = sequelize.define(
'achievement_definitions',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
name: {
type: DataTypes.TEXT,
},
description: {
type: DataTypes.TEXT,
},
category: {
type: DataTypes.ENUM,
values: [
"reading",
"streak",
"coins",
"social",
"quiz",
"challenge"
],
},
rarity: {
type: DataTypes.ENUM,
values: [
"common",
"rare",
"epic",
"legendary"
],
},
target_value: {
type: DataTypes.INTEGER,
},
metric: {
type: DataTypes.ENUM,
values: [
"books_completed",
"minutes_read",
"coins_earned",
"streak_days",
"quizzes_passed",
"challenges_completed",
"friends_added"
],
},
active: {
type: DataTypes.BOOLEAN,
allowNull: false,
defaultValue: false,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
achievement_definitions.associate = (db) => {
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
db.achievement_definitions.hasMany(db.user_achievements, {
as: 'user_achievements_achievement_definition',
foreignKey: {
name: 'achievement_definitionId',
},
constraints: false,
});
//end loop
db.achievement_definitions.hasMany(db.file, {
as: 'badge_images',
foreignKey: 'belongsToId',
constraints: false,
scope: {
belongsTo: db.achievement_definitions.getTableName(),
belongsToColumn: 'badge_images',
},
});
db.achievement_definitions.belongsTo(db.users, {
as: 'createdBy',
});
db.achievement_definitions.belongsTo(db.users, {
as: 'updatedBy',
});
};
return achievement_definitions;
};

View File

@ -0,0 +1,147 @@
const config = require('../../config');
const providers = config.providers;
const crypto = require('crypto');
const bcrypt = require('bcrypt');
const moment = require('moment');
module.exports = function(sequelize, DataTypes) {
const authors = sequelize.define(
'authors',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
name: {
type: DataTypes.TEXT,
},
bio: {
type: DataTypes.TEXT,
},
website_url: {
type: DataTypes.TEXT,
},
primary_language: {
type: DataTypes.ENUM,
values: [
"uz",
"ru",
"en",
"other"
],
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
authors.associate = (db) => {
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
//end loop
db.authors.hasMany(db.file, {
as: 'photo_images',
foreignKey: 'belongsToId',
constraints: false,
scope: {
belongsTo: db.authors.getTableName(),
belongsToColumn: 'photo_images',
},
});
db.authors.belongsTo(db.users, {
as: 'createdBy',
});
db.authors.belongsTo(db.users, {
as: 'updatedBy',
});
};
return authors;
};

View File

@ -0,0 +1,158 @@
const config = require('../../config');
const providers = config.providers;
const crypto = require('crypto');
const bcrypt = require('bcrypt');
const moment = require('moment');
module.exports = function(sequelize, DataTypes) {
const book_club_memberships = sequelize.define(
'book_club_memberships',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
role: {
type: DataTypes.ENUM,
values: [
"member",
"moderator",
"owner"
],
},
status: {
type: DataTypes.ENUM,
values: [
"invited",
"joined",
"left",
"banned"
],
},
joined_at: {
type: DataTypes.DATE,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
book_club_memberships.associate = (db) => {
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
//end loop
db.book_club_memberships.belongsTo(db.book_clubs, {
as: 'book_club',
foreignKey: {
name: 'book_clubId',
},
constraints: false,
});
db.book_club_memberships.belongsTo(db.users, {
as: 'user',
foreignKey: {
name: 'userId',
},
constraints: false,
});
db.book_club_memberships.belongsTo(db.users, {
as: 'createdBy',
});
db.book_club_memberships.belongsTo(db.users, {
as: 'updatedBy',
});
};
return book_club_memberships;
};

View File

@ -0,0 +1,189 @@
const config = require('../../config');
const providers = config.providers;
const crypto = require('crypto');
const bcrypt = require('bcrypt');
const moment = require('moment');
module.exports = function(sequelize, DataTypes) {
const book_clubs = sequelize.define(
'book_clubs',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
name: {
type: DataTypes.TEXT,
},
description: {
type: DataTypes.TEXT,
},
visibility: {
type: DataTypes.ENUM,
values: [
"public",
"private"
],
},
status: {
type: DataTypes.ENUM,
values: [
"active",
"archived"
],
},
created_at_time: {
type: DataTypes.DATE,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
book_clubs.associate = (db) => {
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
db.book_clubs.hasMany(db.book_club_memberships, {
as: 'book_club_memberships_book_club',
foreignKey: {
name: 'book_clubId',
},
constraints: false,
});
db.book_clubs.hasMany(db.club_chat_messages, {
as: 'club_chat_messages_book_club',
foreignKey: {
name: 'book_clubId',
},
constraints: false,
});
db.book_clubs.hasMany(db.reading_circle_events, {
as: 'reading_circle_events_book_club',
foreignKey: {
name: 'book_clubId',
},
constraints: false,
});
//end loop
db.book_clubs.belongsTo(db.users, {
as: 'owner',
foreignKey: {
name: 'ownerId',
},
constraints: false,
});
db.book_clubs.hasMany(db.file, {
as: 'cover_images',
foreignKey: 'belongsToId',
constraints: false,
scope: {
belongsTo: db.book_clubs.getTableName(),
belongsToColumn: 'cover_images',
},
});
db.book_clubs.belongsTo(db.users, {
as: 'createdBy',
});
db.book_clubs.belongsTo(db.users, {
as: 'updatedBy',
});
};
return book_clubs;
};

View File

@ -0,0 +1,131 @@
const config = require('../../config');
const providers = config.providers;
const crypto = require('crypto');
const bcrypt = require('bcrypt');
const moment = require('moment');
module.exports = function(sequelize, DataTypes) {
const bookmarks = sequelize.define(
'bookmarks',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
location: {
type: DataTypes.INTEGER,
},
label: {
type: DataTypes.TEXT,
},
added_at: {
type: DataTypes.DATE,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
bookmarks.associate = (db) => {
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
//end loop
db.bookmarks.belongsTo(db.users, {
as: 'user',
foreignKey: {
name: 'userId',
},
constraints: false,
});
db.bookmarks.belongsTo(db.books, {
as: 'book',
foreignKey: {
name: 'bookId',
},
constraints: false,
});
db.bookmarks.belongsTo(db.users, {
as: 'createdBy',
});
db.bookmarks.belongsTo(db.users, {
as: 'updatedBy',
});
};
return bookmarks;
};

View File

@ -0,0 +1,355 @@
const config = require('../../config');
const providers = config.providers;
const crypto = require('crypto');
const bcrypt = require('bcrypt');
const moment = require('moment');
module.exports = function(sequelize, DataTypes) {
const books = sequelize.define(
'books',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
title: {
type: DataTypes.TEXT,
},
subtitle: {
type: DataTypes.TEXT,
},
isbn: {
type: DataTypes.TEXT,
},
language: {
type: DataTypes.ENUM,
values: [
"uz",
"ru",
"en",
"other"
],
},
format: {
type: DataTypes.ENUM,
values: [
"ebook",
"audiobook",
"videobook",
"physical_reference"
],
},
status: {
type: DataTypes.ENUM,
values: [
"draft",
"published",
"archived"
],
},
description: {
type: DataTypes.TEXT,
},
page_count: {
type: DataTypes.INTEGER,
},
word_count: {
type: DataTypes.INTEGER,
},
duration_seconds: {
type: DataTypes.INTEGER,
},
difficulty_score: {
type: DataTypes.DECIMAL,
},
popularity_score: {
type: DataTypes.DECIMAL,
},
published_at: {
type: DataTypes.DATE,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
books.associate = (db) => {
db.books.belongsToMany(db.authors, {
as: 'authors',
foreignKey: {
name: 'books_authorsId',
},
constraints: false,
through: 'booksAuthorsAuthors',
});
db.books.belongsToMany(db.authors, {
as: 'authors_filter',
foreignKey: {
name: 'books_authorsId',
},
constraints: false,
through: 'booksAuthorsAuthors',
});
db.books.belongsToMany(db.genres, {
as: 'genres',
foreignKey: {
name: 'books_genresId',
},
constraints: false,
through: 'booksGenresGenres',
});
db.books.belongsToMany(db.genres, {
as: 'genres_filter',
foreignKey: {
name: 'books_genresId',
},
constraints: false,
through: 'booksGenresGenres',
});
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
db.books.hasMany(db.user_library_items, {
as: 'user_library_items_book',
foreignKey: {
name: 'bookId',
},
constraints: false,
});
db.books.hasMany(db.bookmarks, {
as: 'bookmarks_book',
foreignKey: {
name: 'bookId',
},
constraints: false,
});
db.books.hasMany(db.notes, {
as: 'notes_book',
foreignKey: {
name: 'bookId',
},
constraints: false,
});
db.books.hasMany(db.camera_scan_sessions, {
as: 'camera_scan_sessions_book',
foreignKey: {
name: 'bookId',
},
constraints: false,
});
db.books.hasMany(db.coin_ledger_entries, {
as: 'coin_ledger_entries_book',
foreignKey: {
name: 'bookId',
},
constraints: false,
});
db.books.hasMany(db.quiz_definitions, {
as: 'quiz_definitions_book',
foreignKey: {
name: 'bookId',
},
constraints: false,
});
db.books.hasMany(db.reading_circle_events, {
as: 'reading_circle_events_book',
foreignKey: {
name: 'bookId',
},
constraints: false,
});
db.books.hasMany(db.recommendation_events, {
as: 'recommendation_events_book',
foreignKey: {
name: 'bookId',
},
constraints: false,
});
//end loop
db.books.belongsTo(db.publishers, {
as: 'publisher',
foreignKey: {
name: 'publisherId',
},
constraints: false,
});
db.books.hasMany(db.file, {
as: 'cover_images',
foreignKey: 'belongsToId',
constraints: false,
scope: {
belongsTo: db.books.getTableName(),
belongsToColumn: 'cover_images',
},
});
db.books.hasMany(db.file, {
as: 'content_files',
foreignKey: 'belongsToId',
constraints: false,
scope: {
belongsTo: db.books.getTableName(),
belongsToColumn: 'content_files',
},
});
db.books.belongsTo(db.users, {
as: 'createdBy',
});
db.books.belongsTo(db.users, {
as: 'updatedBy',
});
};
return books;
};

View File

@ -0,0 +1,239 @@
const config = require('../../config');
const providers = config.providers;
const crypto = require('crypto');
const bcrypt = require('bcrypt');
const moment = require('moment');
module.exports = function(sequelize, DataTypes) {
const camera_scan_sessions = sequelize.define(
'camera_scan_sessions',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
scan_type: {
type: DataTypes.ENUM,
values: [
"cover",
"page",
"shelf"
],
},
status: {
type: DataTypes.ENUM,
values: [
"started",
"verifying",
"failed",
"completed",
"flagged"
],
},
started_at: {
type: DataTypes.DATE,
},
ended_at: {
type: DataTypes.DATE,
},
frames_analyzed: {
type: DataTypes.INTEGER,
},
pages_detected: {
type: DataTypes.INTEGER,
},
confidence_score: {
type: DataTypes.DECIMAL,
},
page_turning_detected: {
type: DataTypes.BOOLEAN,
allowNull: false,
defaultValue: false,
},
duplicate_page_detected: {
type: DataTypes.BOOLEAN,
allowNull: false,
defaultValue: false,
},
fraud_reason: {
type: DataTypes.TEXT,
},
coins_awarded: {
type: DataTypes.INTEGER,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
camera_scan_sessions.associate = (db) => {
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
db.camera_scan_sessions.hasMany(db.coin_ledger_entries, {
as: 'coin_ledger_entries_scan_session',
foreignKey: {
name: 'scan_sessionId',
},
constraints: false,
});
db.camera_scan_sessions.hasMany(db.fraud_flags, {
as: 'fraud_flags_scan_session',
foreignKey: {
name: 'scan_sessionId',
},
constraints: false,
});
//end loop
db.camera_scan_sessions.belongsTo(db.users, {
as: 'user',
foreignKey: {
name: 'userId',
},
constraints: false,
});
db.camera_scan_sessions.belongsTo(db.books, {
as: 'book',
foreignKey: {
name: 'bookId',
},
constraints: false,
});
db.camera_scan_sessions.belongsTo(db.users, {
as: 'createdBy',
});
db.camera_scan_sessions.belongsTo(db.users, {
as: 'updatedBy',
});
};
return camera_scan_sessions;
};

View File

@ -0,0 +1,191 @@
const config = require('../../config');
const providers = config.providers;
const crypto = require('crypto');
const bcrypt = require('bcrypt');
const moment = require('moment');
module.exports = function(sequelize, DataTypes) {
const challenge_definitions = sequelize.define(
'challenge_definitions',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
name: {
type: DataTypes.TEXT,
},
description: {
type: DataTypes.TEXT,
},
status: {
type: DataTypes.ENUM,
values: [
"draft",
"active",
"ended",
"archived"
],
},
challenge_type: {
type: DataTypes.ENUM,
values: [
"read_books",
"read_minutes",
"scan_books",
"complete_quizzes",
"earn_coins"
],
},
target_value: {
type: DataTypes.INTEGER,
},
reward_coins: {
type: DataTypes.INTEGER,
},
start_at: {
type: DataTypes.DATE,
},
end_at: {
type: DataTypes.DATE,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
challenge_definitions.associate = (db) => {
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
db.challenge_definitions.hasMany(db.user_challenges, {
as: 'user_challenges_challenge_definition',
foreignKey: {
name: 'challenge_definitionId',
},
constraints: false,
});
//end loop
db.challenge_definitions.belongsTo(db.users, {
as: 'createdBy',
});
db.challenge_definitions.belongsTo(db.users, {
as: 'updatedBy',
});
};
return challenge_definitions;
};

View File

@ -0,0 +1,144 @@
const config = require('../../config');
const providers = config.providers;
const crypto = require('crypto');
const bcrypt = require('bcrypt');
const moment = require('moment');
module.exports = function(sequelize, DataTypes) {
const club_chat_messages = sequelize.define(
'club_chat_messages',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
message_text: {
type: DataTypes.TEXT,
},
sent_at: {
type: DataTypes.DATE,
},
is_deleted: {
type: DataTypes.BOOLEAN,
allowNull: false,
defaultValue: false,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
club_chat_messages.associate = (db) => {
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
//end loop
db.club_chat_messages.belongsTo(db.book_clubs, {
as: 'book_club',
foreignKey: {
name: 'book_clubId',
},
constraints: false,
});
db.club_chat_messages.belongsTo(db.users, {
as: 'sender',
foreignKey: {
name: 'senderId',
},
constraints: false,
});
db.club_chat_messages.hasMany(db.file, {
as: 'attachment_files',
foreignKey: 'belongsToId',
constraints: false,
scope: {
belongsTo: db.club_chat_messages.getTableName(),
belongsToColumn: 'attachment_files',
},
});
db.club_chat_messages.belongsTo(db.users, {
as: 'createdBy',
});
db.club_chat_messages.belongsTo(db.users, {
as: 'updatedBy',
});
};
return club_chat_messages;
};

View File

@ -0,0 +1,201 @@
const config = require('../../config');
const providers = config.providers;
const crypto = require('crypto');
const bcrypt = require('bcrypt');
const moment = require('moment');
module.exports = function(sequelize, DataTypes) {
const coin_ledger_entries = sequelize.define(
'coin_ledger_entries',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
entry_type: {
type: DataTypes.ENUM,
values: [
"earn",
"spend",
"adjustment",
"reversal"
],
},
reason: {
type: DataTypes.ENUM,
values: [
"scan_read",
"ebook_read",
"quiz_passed",
"streak_bonus",
"daily_login",
"challenge_reward",
"referral",
"admin_adjustment",
"withdrawal_conversion",
"fraud_reversal"
],
},
amount_coins: {
type: DataTypes.INTEGER,
},
description: {
type: DataTypes.TEXT,
},
occurred_at: {
type: DataTypes.DATE,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
coin_ledger_entries.associate = (db) => {
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
//end loop
db.coin_ledger_entries.belongsTo(db.users, {
as: 'user',
foreignKey: {
name: 'userId',
},
constraints: false,
});
db.coin_ledger_entries.belongsTo(db.camera_scan_sessions, {
as: 'scan_session',
foreignKey: {
name: 'scan_sessionId',
},
constraints: false,
});
db.coin_ledger_entries.belongsTo(db.books, {
as: 'book',
foreignKey: {
name: 'bookId',
},
constraints: false,
});
db.coin_ledger_entries.belongsTo(db.users, {
as: 'createdBy',
});
db.coin_ledger_entries.belongsTo(db.users, {
as: 'updatedBy',
});
};
return coin_ledger_entries;
};

View File

@ -0,0 +1,123 @@
const config = require('../../config');
const providers = config.providers;
const crypto = require('crypto');
const bcrypt = require('bcrypt');
const moment = require('moment');
module.exports = function(sequelize, DataTypes) {
const daily_login_rewards = sequelize.define(
'daily_login_rewards',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
rewarded_at: {
type: DataTypes.DATE,
},
coins_awarded: {
type: DataTypes.INTEGER,
},
streak_day: {
type: DataTypes.INTEGER,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
daily_login_rewards.associate = (db) => {
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
//end loop
db.daily_login_rewards.belongsTo(db.users, {
as: 'user',
foreignKey: {
name: 'userId',
},
constraints: false,
});
db.daily_login_rewards.belongsTo(db.users, {
as: 'createdBy',
});
db.daily_login_rewards.belongsTo(db.users, {
as: 'updatedBy',
});
};
return daily_login_rewards;
};

View File

@ -0,0 +1,53 @@
module.exports = function(sequelize, DataTypes) {
const file = sequelize.define(
'file',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
belongsTo: DataTypes.STRING(255),
belongsToId: DataTypes.UUID,
belongsToColumn: DataTypes.STRING(255),
name: {
type: DataTypes.STRING(2083),
allowNull: false,
validate: {
notEmpty: true,
},
},
sizeInBytes: {
type: DataTypes.INTEGER,
allowNull: true,
},
privateUrl: {
type: DataTypes.STRING(2083),
allowNull: true,
},
publicUrl: {
type: DataTypes.STRING(2083),
allowNull: false,
validate: {
notEmpty: true,
},
},
},
{
timestamps: true,
paranoid: true,
},
);
file.associate = (db) => {
db.file.belongsTo(db.users, {
as: 'createdBy',
});
db.file.belongsTo(db.users, {
as: 'updatedBy',
});
};
return file;
};

View File

@ -0,0 +1,175 @@
const config = require('../../config');
const providers = config.providers;
const crypto = require('crypto');
const bcrypt = require('bcrypt');
const moment = require('moment');
module.exports = function(sequelize, DataTypes) {
const fraud_flags = sequelize.define(
'fraud_flags',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
severity: {
type: DataTypes.ENUM,
values: [
"low",
"medium",
"high",
"critical"
],
},
status: {
type: DataTypes.ENUM,
values: [
"open",
"investigating",
"resolved",
"dismissed"
],
},
reason: {
type: DataTypes.TEXT,
},
flagged_at: {
type: DataTypes.DATE,
},
resolved_at: {
type: DataTypes.DATE,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
fraud_flags.associate = (db) => {
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
//end loop
db.fraud_flags.belongsTo(db.users, {
as: 'user',
foreignKey: {
name: 'userId',
},
constraints: false,
});
db.fraud_flags.belongsTo(db.camera_scan_sessions, {
as: 'scan_session',
foreignKey: {
name: 'scan_sessionId',
},
constraints: false,
});
db.fraud_flags.belongsTo(db.users, {
as: 'createdBy',
});
db.fraud_flags.belongsTo(db.users, {
as: 'updatedBy',
});
};
return fraud_flags;
};

View File

@ -0,0 +1,146 @@
const config = require('../../config');
const providers = config.providers;
const crypto = require('crypto');
const bcrypt = require('bcrypt');
const moment = require('moment');
module.exports = function(sequelize, DataTypes) {
const friendships = sequelize.define(
'friendships',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
status: {
type: DataTypes.ENUM,
values: [
"requested",
"accepted",
"blocked",
"declined"
],
},
requested_at: {
type: DataTypes.DATE,
},
responded_at: {
type: DataTypes.DATE,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
friendships.associate = (db) => {
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
//end loop
db.friendships.belongsTo(db.users, {
as: 'requester',
foreignKey: {
name: 'requesterId',
},
constraints: false,
});
db.friendships.belongsTo(db.users, {
as: 'addressee',
foreignKey: {
name: 'addresseeId',
},
constraints: false,
});
db.friendships.belongsTo(db.users, {
as: 'createdBy',
});
db.friendships.belongsTo(db.users, {
as: 'updatedBy',
});
};
return friendships;
};

View File

@ -0,0 +1,108 @@
const config = require('../../config');
const providers = config.providers;
const crypto = require('crypto');
const bcrypt = require('bcrypt');
const moment = require('moment');
module.exports = function(sequelize, DataTypes) {
const genres = sequelize.define(
'genres',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
name: {
type: DataTypes.TEXT,
},
description: {
type: DataTypes.TEXT,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
genres.associate = (db) => {
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
//end loop
db.genres.belongsTo(db.users, {
as: 'createdBy',
});
db.genres.belongsTo(db.users, {
as: 'updatedBy',
});
};
return genres;
};

View File

@ -0,0 +1,38 @@
'use strict';
const fs = require('fs');
const path = require('path');
const Sequelize = require('sequelize');
const basename = path.basename(__filename);
const env = process.env.NODE_ENV || 'development';
const config = require("../db.config")[env];
const db = {};
let sequelize;
console.log(env);
if (config.use_env_variable) {
sequelize = new Sequelize(process.env[config.use_env_variable], config);
} else {
sequelize = new Sequelize(config.database, config.username, config.password, config);
}
fs
.readdirSync(__dirname)
.filter(file => {
return (file.indexOf('.') !== 0) && (file !== basename) && (file.slice(-3) === '.js');
})
.forEach(file => {
const model = require(path.join(__dirname, file))(sequelize, Sequelize.DataTypes)
db[model.name] = model;
});
Object.keys(db).forEach(modelName => {
if (db[modelName].associate) {
db[modelName].associate(db);
}
});
db.sequelize = sequelize;
db.Sequelize = Sequelize;
module.exports = db;

View File

@ -0,0 +1,176 @@
const config = require('../../config');
const providers = config.providers;
const crypto = require('crypto');
const bcrypt = require('bcrypt');
const moment = require('moment');
module.exports = function(sequelize, DataTypes) {
const kyc_verifications = sequelize.define(
'kyc_verifications',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
status: {
type: DataTypes.ENUM,
values: [
"not_started",
"pending",
"approved",
"rejected"
],
},
document_type: {
type: DataTypes.TEXT,
},
full_name_on_document: {
type: DataTypes.TEXT,
},
document_number: {
type: DataTypes.TEXT,
},
submitted_at: {
type: DataTypes.DATE,
},
reviewed_at: {
type: DataTypes.DATE,
},
review_note: {
type: DataTypes.TEXT,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
kyc_verifications.associate = (db) => {
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
//end loop
db.kyc_verifications.belongsTo(db.users, {
as: 'user',
foreignKey: {
name: 'userId',
},
constraints: false,
});
db.kyc_verifications.hasMany(db.file, {
as: 'document_files',
foreignKey: 'belongsToId',
constraints: false,
scope: {
belongsTo: db.kyc_verifications.getTableName(),
belongsToColumn: 'document_files',
},
});
db.kyc_verifications.belongsTo(db.users, {
as: 'createdBy',
});
db.kyc_verifications.belongsTo(db.users, {
as: 'updatedBy',
});
};
return kyc_verifications;
};

View File

@ -0,0 +1,148 @@
const config = require('../../config');
const providers = config.providers;
const crypto = require('crypto');
const bcrypt = require('bcrypt');
const moment = require('moment');
module.exports = function(sequelize, DataTypes) {
const notes = sequelize.define(
'notes',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
location: {
type: DataTypes.INTEGER,
},
title: {
type: DataTypes.TEXT,
},
content: {
type: DataTypes.TEXT,
},
is_private: {
type: DataTypes.BOOLEAN,
allowNull: false,
defaultValue: false,
},
noted_at: {
type: DataTypes.DATE,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
notes.associate = (db) => {
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
//end loop
db.notes.belongsTo(db.users, {
as: 'user',
foreignKey: {
name: 'userId',
},
constraints: false,
});
db.notes.belongsTo(db.books, {
as: 'book',
foreignKey: {
name: 'bookId',
},
constraints: false,
});
db.notes.belongsTo(db.users, {
as: 'createdBy',
});
db.notes.belongsTo(db.users, {
as: 'updatedBy',
});
};
return notes;
};

View File

@ -0,0 +1,190 @@
const config = require('../../config');
const providers = config.providers;
const crypto = require('crypto');
const bcrypt = require('bcrypt');
const moment = require('moment');
module.exports = function(sequelize, DataTypes) {
const payment_transactions = sequelize.define(
'payment_transactions',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
status: {
type: DataTypes.ENUM,
values: [
"initiated",
"pending",
"succeeded",
"failed",
"refunded"
],
},
provider: {
type: DataTypes.ENUM,
values: [
"payme",
"click",
"apelsin",
"paynet",
"manual",
"other"
],
},
amount_uzs: {
type: DataTypes.DECIMAL,
},
provider_transaction_reference: {
type: DataTypes.TEXT,
},
failure_reason: {
type: DataTypes.TEXT,
},
initiated_at: {
type: DataTypes.DATE,
},
finalized_at: {
type: DataTypes.DATE,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
payment_transactions.associate = (db) => {
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
//end loop
db.payment_transactions.belongsTo(db.withdrawal_requests, {
as: 'withdrawal_request',
foreignKey: {
name: 'withdrawal_requestId',
},
constraints: false,
});
db.payment_transactions.belongsTo(db.users, {
as: 'createdBy',
});
db.payment_transactions.belongsTo(db.users, {
as: 'updatedBy',
});
};
return payment_transactions;
};

View File

@ -0,0 +1,101 @@
const config = require('../../config');
const providers = config.providers;
const crypto = require('crypto');
const bcrypt = require('bcrypt');
const moment = require('moment');
module.exports = function(sequelize, DataTypes) {
const permissions = sequelize.define(
'permissions',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
name: {
type: DataTypes.TEXT,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
permissions.associate = (db) => {
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
//end loop
db.permissions.belongsTo(db.users, {
as: 'createdBy',
});
db.permissions.belongsTo(db.users, {
as: 'updatedBy',
});
};
return permissions;
};

View File

@ -0,0 +1,130 @@
const config = require('../../config');
const providers = config.providers;
const crypto = require('crypto');
const bcrypt = require('bcrypt');
const moment = require('moment');
module.exports = function(sequelize, DataTypes) {
const publishers = sequelize.define(
'publishers',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
name: {
type: DataTypes.TEXT,
},
country: {
type: DataTypes.TEXT,
},
website_url: {
type: DataTypes.TEXT,
},
description: {
type: DataTypes.TEXT,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
publishers.associate = (db) => {
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
db.publishers.hasMany(db.books, {
as: 'books_publisher',
foreignKey: {
name: 'publisherId',
},
constraints: false,
});
//end loop
db.publishers.belongsTo(db.users, {
as: 'createdBy',
});
db.publishers.belongsTo(db.users, {
as: 'updatedBy',
});
};
return publishers;
};

View File

@ -0,0 +1,175 @@
const config = require('../../config');
const providers = config.providers;
const crypto = require('crypto');
const bcrypt = require('bcrypt');
const moment = require('moment');
module.exports = function(sequelize, DataTypes) {
const push_notifications = sequelize.define(
'push_notifications',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
title: {
type: DataTypes.TEXT,
},
body: {
type: DataTypes.TEXT,
},
status: {
type: DataTypes.ENUM,
values: [
"queued",
"sent",
"failed"
],
},
channel: {
type: DataTypes.ENUM,
values: [
"fcm",
"email",
"in_app"
],
},
scheduled_at: {
type: DataTypes.DATE,
},
sent_at: {
type: DataTypes.DATE,
},
deep_link: {
type: DataTypes.TEXT,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
push_notifications.associate = (db) => {
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
//end loop
db.push_notifications.belongsTo(db.users, {
as: 'user',
foreignKey: {
name: 'userId',
},
constraints: false,
});
db.push_notifications.belongsTo(db.users, {
as: 'createdBy',
});
db.push_notifications.belongsTo(db.users, {
as: 'updatedBy',
});
};
return push_notifications;
};

View File

@ -0,0 +1,126 @@
const config = require('../../config');
const providers = config.providers;
const crypto = require('crypto');
const bcrypt = require('bcrypt');
const moment = require('moment');
module.exports = function(sequelize, DataTypes) {
const quiz_answer_choices = sequelize.define(
'quiz_answer_choices',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
choice_text: {
type: DataTypes.TEXT,
},
is_correct: {
type: DataTypes.BOOLEAN,
allowNull: false,
defaultValue: false,
},
order_index: {
type: DataTypes.INTEGER,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
quiz_answer_choices.associate = (db) => {
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
//end loop
db.quiz_answer_choices.belongsTo(db.quiz_questions, {
as: 'quiz_question',
foreignKey: {
name: 'quiz_questionId',
},
constraints: false,
});
db.quiz_answer_choices.belongsTo(db.users, {
as: 'createdBy',
});
db.quiz_answer_choices.belongsTo(db.users, {
as: 'updatedBy',
});
};
return quiz_answer_choices;
};

View File

@ -0,0 +1,177 @@
const config = require('../../config');
const providers = config.providers;
const crypto = require('crypto');
const bcrypt = require('bcrypt');
const moment = require('moment');
module.exports = function(sequelize, DataTypes) {
const quiz_attempts = sequelize.define(
'quiz_attempts',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
status: {
type: DataTypes.ENUM,
values: [
"started",
"submitted",
"passed",
"failed",
"abandoned"
],
},
score_percent: {
type: DataTypes.INTEGER,
},
correct_count: {
type: DataTypes.INTEGER,
},
total_count: {
type: DataTypes.INTEGER,
},
started_at: {
type: DataTypes.DATE,
},
submitted_at: {
type: DataTypes.DATE,
},
coins_awarded: {
type: DataTypes.INTEGER,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
quiz_attempts.associate = (db) => {
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
//end loop
db.quiz_attempts.belongsTo(db.users, {
as: 'user',
foreignKey: {
name: 'userId',
},
constraints: false,
});
db.quiz_attempts.belongsTo(db.quiz_definitions, {
as: 'quiz_definition',
foreignKey: {
name: 'quiz_definitionId',
},
constraints: false,
});
db.quiz_attempts.belongsTo(db.users, {
as: 'createdBy',
});
db.quiz_attempts.belongsTo(db.users, {
as: 'updatedBy',
});
};
return quiz_attempts;
};

View File

@ -0,0 +1,184 @@
const config = require('../../config');
const providers = config.providers;
const crypto = require('crypto');
const bcrypt = require('bcrypt');
const moment = require('moment');
module.exports = function(sequelize, DataTypes) {
const quiz_definitions = sequelize.define(
'quiz_definitions',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
title: {
type: DataTypes.TEXT,
},
difficulty: {
type: DataTypes.ENUM,
values: [
"easy",
"medium",
"hard"
],
},
status: {
type: DataTypes.ENUM,
values: [
"draft",
"published",
"archived"
],
},
question_count: {
type: DataTypes.INTEGER,
},
time_limit_seconds: {
type: DataTypes.INTEGER,
},
generated_at: {
type: DataTypes.DATE,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
quiz_definitions.associate = (db) => {
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
db.quiz_definitions.hasMany(db.quiz_questions, {
as: 'quiz_questions_quiz_definition',
foreignKey: {
name: 'quiz_definitionId',
},
constraints: false,
});
db.quiz_definitions.hasMany(db.quiz_attempts, {
as: 'quiz_attempts_quiz_definition',
foreignKey: {
name: 'quiz_definitionId',
},
constraints: false,
});
//end loop
db.quiz_definitions.belongsTo(db.books, {
as: 'book',
foreignKey: {
name: 'bookId',
},
constraints: false,
});
db.quiz_definitions.belongsTo(db.users, {
as: 'createdBy',
});
db.quiz_definitions.belongsTo(db.users, {
as: 'updatedBy',
});
};
return quiz_definitions;
};

View File

@ -0,0 +1,150 @@
const config = require('../../config');
const providers = config.providers;
const crypto = require('crypto');
const bcrypt = require('bcrypt');
const moment = require('moment');
module.exports = function(sequelize, DataTypes) {
const quiz_questions = sequelize.define(
'quiz_questions',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
prompt: {
type: DataTypes.TEXT,
},
question_type: {
type: DataTypes.ENUM,
values: [
"single_choice",
"multiple_choice",
"true_false"
],
},
explanation: {
type: DataTypes.TEXT,
},
order_index: {
type: DataTypes.INTEGER,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
quiz_questions.associate = (db) => {
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
db.quiz_questions.hasMany(db.quiz_answer_choices, {
as: 'quiz_answer_choices_quiz_question',
foreignKey: {
name: 'quiz_questionId',
},
constraints: false,
});
//end loop
db.quiz_questions.belongsTo(db.quiz_definitions, {
as: 'quiz_definition',
foreignKey: {
name: 'quiz_definitionId',
},
constraints: false,
});
db.quiz_questions.belongsTo(db.users, {
as: 'createdBy',
});
db.quiz_questions.belongsTo(db.users, {
as: 'updatedBy',
});
};
return quiz_questions;
};

View File

@ -0,0 +1,140 @@
const config = require('../../config');
const providers = config.providers;
const crypto = require('crypto');
const bcrypt = require('bcrypt');
const moment = require('moment');
module.exports = function(sequelize, DataTypes) {
const rank_tiers = sequelize.define(
'rank_tiers',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
name: {
type: DataTypes.TEXT,
},
min_points: {
type: DataTypes.INTEGER,
},
max_points: {
type: DataTypes.INTEGER,
},
description: {
type: DataTypes.TEXT,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
rank_tiers.associate = (db) => {
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
db.rank_tiers.hasMany(db.user_ranks, {
as: 'user_ranks_rank_tier',
foreignKey: {
name: 'rank_tierId',
},
constraints: false,
});
//end loop
db.rank_tiers.hasMany(db.file, {
as: 'icon_images',
foreignKey: 'belongsToId',
constraints: false,
scope: {
belongsTo: db.rank_tiers.getTableName(),
belongsToColumn: 'icon_images',
},
});
db.rank_tiers.belongsTo(db.users, {
as: 'createdBy',
});
db.rank_tiers.belongsTo(db.users, {
as: 'updatedBy',
});
};
return rank_tiers;
};

View File

@ -0,0 +1,167 @@
const config = require('../../config');
const providers = config.providers;
const crypto = require('crypto');
const bcrypt = require('bcrypt');
const moment = require('moment');
module.exports = function(sequelize, DataTypes) {
const reading_circle_events = sequelize.define(
'reading_circle_events',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
title: {
type: DataTypes.TEXT,
},
agenda: {
type: DataTypes.TEXT,
},
status: {
type: DataTypes.ENUM,
values: [
"scheduled",
"ongoing",
"completed",
"cancelled"
],
},
start_at: {
type: DataTypes.DATE,
},
end_at: {
type: DataTypes.DATE,
},
meeting_link: {
type: DataTypes.TEXT,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
reading_circle_events.associate = (db) => {
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
//end loop
db.reading_circle_events.belongsTo(db.book_clubs, {
as: 'book_club',
foreignKey: {
name: 'book_clubId',
},
constraints: false,
});
db.reading_circle_events.belongsTo(db.books, {
as: 'book',
foreignKey: {
name: 'bookId',
},
constraints: false,
});
db.reading_circle_events.belongsTo(db.users, {
as: 'createdBy',
});
db.reading_circle_events.belongsTo(db.users, {
as: 'updatedBy',
});
};
return reading_circle_events;
};

View File

@ -0,0 +1,130 @@
const config = require('../../config');
const providers = config.providers;
const crypto = require('crypto');
const bcrypt = require('bcrypt');
const moment = require('moment');
module.exports = function(sequelize, DataTypes) {
const reading_streaks = sequelize.define(
'reading_streaks',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
current_streak_days: {
type: DataTypes.INTEGER,
},
best_streak_days: {
type: DataTypes.INTEGER,
},
last_streak_date: {
type: DataTypes.DATE,
},
started_at: {
type: DataTypes.DATE,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
reading_streaks.associate = (db) => {
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
//end loop
db.reading_streaks.belongsTo(db.users, {
as: 'user',
foreignKey: {
name: 'userId',
},
constraints: false,
});
db.reading_streaks.belongsTo(db.users, {
as: 'createdBy',
});
db.reading_streaks.belongsTo(db.users, {
as: 'updatedBy',
});
};
return reading_streaks;
};

View File

@ -0,0 +1,153 @@
const config = require('../../config');
const providers = config.providers;
const crypto = require('crypto');
const bcrypt = require('bcrypt');
const moment = require('moment');
module.exports = function(sequelize, DataTypes) {
const recommendation_events = sequelize.define(
'recommendation_events',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
source: {
type: DataTypes.ENUM,
values: [
"ai",
"trending",
"editorial",
"club"
],
},
score: {
type: DataTypes.DECIMAL,
},
explanation: {
type: DataTypes.TEXT,
},
recommended_at: {
type: DataTypes.DATE,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
recommendation_events.associate = (db) => {
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
//end loop
db.recommendation_events.belongsTo(db.users, {
as: 'user',
foreignKey: {
name: 'userId',
},
constraints: false,
});
db.recommendation_events.belongsTo(db.books, {
as: 'book',
foreignKey: {
name: 'bookId',
},
constraints: false,
});
db.recommendation_events.belongsTo(db.users, {
as: 'createdBy',
});
db.recommendation_events.belongsTo(db.users, {
as: 'updatedBy',
});
};
return recommendation_events;
};

View File

@ -0,0 +1,134 @@
const config = require('../../config');
const providers = config.providers;
const crypto = require('crypto');
const bcrypt = require('bcrypt');
const moment = require('moment');
module.exports = function(sequelize, DataTypes) {
const roles = sequelize.define(
'roles',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
name: {
type: DataTypes.TEXT,
},
role_customization: {
type: DataTypes.TEXT,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
roles.associate = (db) => {
db.roles.belongsToMany(db.permissions, {
as: 'permissions',
foreignKey: {
name: 'roles_permissionsId',
},
constraints: false,
through: 'rolesPermissionsPermissions',
});
db.roles.belongsToMany(db.permissions, {
as: 'permissions_filter',
foreignKey: {
name: 'roles_permissionsId',
},
constraints: false,
through: 'rolesPermissionsPermissions',
});
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
db.roles.hasMany(db.users, {
as: 'users_app_role',
foreignKey: {
name: 'app_roleId',
},
constraints: false,
});
//end loop
db.roles.belongsTo(db.users, {
as: 'createdBy',
});
db.roles.belongsTo(db.users, {
as: 'updatedBy',
});
};
return roles;
};

View File

@ -0,0 +1,134 @@
const config = require('../../config');
const providers = config.providers;
const crypto = require('crypto');
const bcrypt = require('bcrypt');
const moment = require('moment');
module.exports = function(sequelize, DataTypes) {
const user_achievements = sequelize.define(
'user_achievements',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
earned_at: {
type: DataTypes.DATE,
},
progress_value: {
type: DataTypes.INTEGER,
},
notified: {
type: DataTypes.BOOLEAN,
allowNull: false,
defaultValue: false,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
user_achievements.associate = (db) => {
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
//end loop
db.user_achievements.belongsTo(db.users, {
as: 'user',
foreignKey: {
name: 'userId',
},
constraints: false,
});
db.user_achievements.belongsTo(db.achievement_definitions, {
as: 'achievement_definition',
foreignKey: {
name: 'achievement_definitionId',
},
constraints: false,
});
db.user_achievements.belongsTo(db.users, {
as: 'createdBy',
});
db.user_achievements.belongsTo(db.users, {
as: 'updatedBy',
});
};
return user_achievements;
};

View File

@ -0,0 +1,163 @@
const config = require('../../config');
const providers = config.providers;
const crypto = require('crypto');
const bcrypt = require('bcrypt');
const moment = require('moment');
module.exports = function(sequelize, DataTypes) {
const user_challenges = sequelize.define(
'user_challenges',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
status: {
type: DataTypes.ENUM,
values: [
"joined",
"in_progress",
"completed",
"expired",
"cancelled"
],
},
progress_value: {
type: DataTypes.INTEGER,
},
joined_at: {
type: DataTypes.DATE,
},
completed_at: {
type: DataTypes.DATE,
},
coins_awarded: {
type: DataTypes.INTEGER,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
user_challenges.associate = (db) => {
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
//end loop
db.user_challenges.belongsTo(db.users, {
as: 'user',
foreignKey: {
name: 'userId',
},
constraints: false,
});
db.user_challenges.belongsTo(db.challenge_definitions, {
as: 'challenge_definition',
foreignKey: {
name: 'challenge_definitionId',
},
constraints: false,
});
db.user_challenges.belongsTo(db.users, {
as: 'createdBy',
});
db.user_challenges.belongsTo(db.users, {
as: 'updatedBy',
});
};
return user_challenges;
};

View File

@ -0,0 +1,196 @@
const config = require('../../config');
const providers = config.providers;
const crypto = require('crypto');
const bcrypt = require('bcrypt');
const moment = require('moment');
module.exports = function(sequelize, DataTypes) {
const user_library_items = sequelize.define(
'user_library_items',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
source: {
type: DataTypes.ENUM,
values: [
"library",
"upload",
"scan_claim"
],
},
status: {
type: DataTypes.ENUM,
values: [
"saved",
"in_progress",
"completed",
"archived"
],
},
offline_downloaded: {
type: DataTypes.BOOLEAN,
allowNull: false,
defaultValue: false,
},
downloaded_at: {
type: DataTypes.DATE,
},
progress_percent: {
type: DataTypes.DECIMAL,
},
current_location: {
type: DataTypes.INTEGER,
},
last_opened_at: {
type: DataTypes.DATE,
},
completed_at: {
type: DataTypes.DATE,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
user_library_items.associate = (db) => {
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
//end loop
db.user_library_items.belongsTo(db.users, {
as: 'user',
foreignKey: {
name: 'userId',
},
constraints: false,
});
db.user_library_items.belongsTo(db.books, {
as: 'book',
foreignKey: {
name: 'bookId',
},
constraints: false,
});
db.user_library_items.belongsTo(db.users, {
as: 'createdBy',
});
db.user_library_items.belongsTo(db.users, {
as: 'updatedBy',
});
};
return user_library_items;
};

View File

@ -0,0 +1,124 @@
const config = require('../../config');
const providers = config.providers;
const crypto = require('crypto');
const bcrypt = require('bcrypt');
const moment = require('moment');
module.exports = function(sequelize, DataTypes) {
const user_ranks = sequelize.define(
'user_ranks',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
rank_points: {
type: DataTypes.INTEGER,
},
updated_at_time: {
type: DataTypes.DATE,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
user_ranks.associate = (db) => {
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
//end loop
db.user_ranks.belongsTo(db.users, {
as: 'user',
foreignKey: {
name: 'userId',
},
constraints: false,
});
db.user_ranks.belongsTo(db.rank_tiers, {
as: 'rank_tier',
foreignKey: {
name: 'rank_tierId',
},
constraints: false,
});
db.user_ranks.belongsTo(db.users, {
as: 'createdBy',
});
db.user_ranks.belongsTo(db.users, {
as: 'updatedBy',
});
};
return user_ranks;
};

View File

@ -0,0 +1,194 @@
const config = require('../../config');
const providers = config.providers;
const crypto = require('crypto');
const bcrypt = require('bcrypt');
const moment = require('moment');
module.exports = function(sequelize, DataTypes) {
const user_uploads = sequelize.define(
'user_uploads',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
title: {
type: DataTypes.TEXT,
},
status: {
type: DataTypes.ENUM,
values: [
"uploaded",
"under_review",
"approved",
"rejected"
],
},
content_type: {
type: DataTypes.ENUM,
values: [
"ebook",
"document",
"audio",
"video"
],
},
rejection_reason: {
type: DataTypes.TEXT,
},
uploaded_at: {
type: DataTypes.DATE,
},
reviewed_at: {
type: DataTypes.DATE,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
user_uploads.associate = (db) => {
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
//end loop
db.user_uploads.belongsTo(db.users, {
as: 'user',
foreignKey: {
name: 'userId',
},
constraints: false,
});
db.user_uploads.hasMany(db.file, {
as: 'file_assets',
foreignKey: 'belongsToId',
constraints: false,
scope: {
belongsTo: db.user_uploads.getTableName(),
belongsToColumn: 'file_assets',
},
});
db.user_uploads.hasMany(db.file, {
as: 'preview_images',
foreignKey: 'belongsToId',
constraints: false,
scope: {
belongsTo: db.user_uploads.getTableName(),
belongsToColumn: 'preview_images',
},
});
db.user_uploads.belongsTo(db.users, {
as: 'createdBy',
});
db.user_uploads.belongsTo(db.users, {
as: 'updatedBy',
});
};
return user_uploads;
};

View File

@ -0,0 +1,435 @@
const config = require('../../config');
const providers = config.providers;
const crypto = require('crypto');
const bcrypt = require('bcrypt');
const moment = require('moment');
module.exports = function(sequelize, DataTypes) {
const users = sequelize.define(
'users',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
firstName: {
type: DataTypes.TEXT,
},
lastName: {
type: DataTypes.TEXT,
},
phoneNumber: {
type: DataTypes.TEXT,
},
email: {
type: DataTypes.TEXT,
},
disabled: {
type: DataTypes.BOOLEAN,
allowNull: false,
defaultValue: false,
},
password: {
type: DataTypes.TEXT,
},
emailVerified: {
type: DataTypes.BOOLEAN,
allowNull: false,
defaultValue: false,
},
emailVerificationToken: {
type: DataTypes.TEXT,
},
emailVerificationTokenExpiresAt: {
type: DataTypes.DATE,
},
passwordResetToken: {
type: DataTypes.TEXT,
},
passwordResetTokenExpiresAt: {
type: DataTypes.DATE,
},
provider: {
type: DataTypes.TEXT,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
users.associate = (db) => {
db.users.belongsToMany(db.permissions, {
as: 'custom_permissions',
foreignKey: {
name: 'users_custom_permissionsId',
},
constraints: false,
through: 'usersCustom_permissionsPermissions',
});
db.users.belongsToMany(db.permissions, {
as: 'custom_permissions_filter',
foreignKey: {
name: 'users_custom_permissionsId',
},
constraints: false,
through: 'usersCustom_permissionsPermissions',
});
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
db.users.hasMany(db.user_library_items, {
as: 'user_library_items_user',
foreignKey: {
name: 'userId',
},
constraints: false,
});
db.users.hasMany(db.bookmarks, {
as: 'bookmarks_user',
foreignKey: {
name: 'userId',
},
constraints: false,
});
db.users.hasMany(db.notes, {
as: 'notes_user',
foreignKey: {
name: 'userId',
},
constraints: false,
});
db.users.hasMany(db.camera_scan_sessions, {
as: 'camera_scan_sessions_user',
foreignKey: {
name: 'userId',
},
constraints: false,
});
db.users.hasMany(db.coin_ledger_entries, {
as: 'coin_ledger_entries_user',
foreignKey: {
name: 'userId',
},
constraints: false,
});
db.users.hasMany(db.withdrawal_requests, {
as: 'withdrawal_requests_user',
foreignKey: {
name: 'userId',
},
constraints: false,
});
db.users.hasMany(db.daily_login_rewards, {
as: 'daily_login_rewards_user',
foreignKey: {
name: 'userId',
},
constraints: false,
});
db.users.hasMany(db.reading_streaks, {
as: 'reading_streaks_user',
foreignKey: {
name: 'userId',
},
constraints: false,
});
db.users.hasMany(db.user_achievements, {
as: 'user_achievements_user',
foreignKey: {
name: 'userId',
},
constraints: false,
});
db.users.hasMany(db.user_ranks, {
as: 'user_ranks_user',
foreignKey: {
name: 'userId',
},
constraints: false,
});
db.users.hasMany(db.user_challenges, {
as: 'user_challenges_user',
foreignKey: {
name: 'userId',
},
constraints: false,
});
db.users.hasMany(db.quiz_attempts, {
as: 'quiz_attempts_user',
foreignKey: {
name: 'userId',
},
constraints: false,
});
db.users.hasMany(db.friendships, {
as: 'friendships_requester',
foreignKey: {
name: 'requesterId',
},
constraints: false,
});
db.users.hasMany(db.friendships, {
as: 'friendships_addressee',
foreignKey: {
name: 'addresseeId',
},
constraints: false,
});
db.users.hasMany(db.book_clubs, {
as: 'book_clubs_owner',
foreignKey: {
name: 'ownerId',
},
constraints: false,
});
db.users.hasMany(db.book_club_memberships, {
as: 'book_club_memberships_user',
foreignKey: {
name: 'userId',
},
constraints: false,
});
db.users.hasMany(db.club_chat_messages, {
as: 'club_chat_messages_sender',
foreignKey: {
name: 'senderId',
},
constraints: false,
});
db.users.hasMany(db.recommendation_events, {
as: 'recommendation_events_user',
foreignKey: {
name: 'userId',
},
constraints: false,
});
db.users.hasMany(db.push_notifications, {
as: 'push_notifications_user',
foreignKey: {
name: 'userId',
},
constraints: false,
});
db.users.hasMany(db.fraud_flags, {
as: 'fraud_flags_user',
foreignKey: {
name: 'userId',
},
constraints: false,
});
db.users.hasMany(db.kyc_verifications, {
as: 'kyc_verifications_user',
foreignKey: {
name: 'userId',
},
constraints: false,
});
db.users.hasMany(db.user_uploads, {
as: 'user_uploads_user',
foreignKey: {
name: 'userId',
},
constraints: false,
});
//end loop
db.users.belongsTo(db.roles, {
as: 'app_role',
foreignKey: {
name: 'app_roleId',
},
constraints: false,
});
db.users.hasMany(db.file, {
as: 'avatar',
foreignKey: 'belongsToId',
constraints: false,
scope: {
belongsTo: db.users.getTableName(),
belongsToColumn: 'avatar',
},
});
db.users.belongsTo(db.users, {
as: 'createdBy',
});
db.users.belongsTo(db.users, {
as: 'updatedBy',
});
};
users.beforeCreate((users, options) => {
users = trimStringFields(users);
if (users.provider !== providers.LOCAL && Object.values(providers).indexOf(users.provider) > -1) {
users.emailVerified = true;
if (!users.password) {
const password = crypto
.randomBytes(20)
.toString('hex');
const hashedPassword = bcrypt.hashSync(
password,
config.bcrypt.saltRounds,
);
users.password = hashedPassword
}
}
});
users.beforeUpdate((users, options) => {
users = trimStringFields(users);
});
return users;
};
function trimStringFields(users) {
users.email = users.email.trim();
users.firstName = users.firstName
? users.firstName.trim()
: null;
users.lastName = users.lastName
? users.lastName.trim()
: null;
return users;
}

View File

@ -0,0 +1,203 @@
const config = require('../../config');
const providers = config.providers;
const crypto = require('crypto');
const bcrypt = require('bcrypt');
const moment = require('moment');
module.exports = function(sequelize, DataTypes) {
const withdrawal_requests = sequelize.define(
'withdrawal_requests',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
status: {
type: DataTypes.ENUM,
values: [
"pending",
"processing",
"completed",
"rejected",
"cancelled"
],
},
coins_amount: {
type: DataTypes.INTEGER,
},
cash_amount_uzs: {
type: DataTypes.DECIMAL,
},
payout_method: {
type: DataTypes.ENUM,
values: [
"bank_transfer",
"mobile_money",
"e_wallet"
],
},
payout_destination: {
type: DataTypes.TEXT,
},
provider_reference: {
type: DataTypes.TEXT,
},
admin_note: {
type: DataTypes.TEXT,
},
requested_at: {
type: DataTypes.DATE,
},
processed_at: {
type: DataTypes.DATE,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
withdrawal_requests.associate = (db) => {
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
db.withdrawal_requests.hasMany(db.payment_transactions, {
as: 'payment_transactions_withdrawal_request',
foreignKey: {
name: 'withdrawal_requestId',
},
constraints: false,
});
//end loop
db.withdrawal_requests.belongsTo(db.users, {
as: 'user',
foreignKey: {
name: 'userId',
},
constraints: false,
});
db.withdrawal_requests.belongsTo(db.users, {
as: 'createdBy',
});
db.withdrawal_requests.belongsTo(db.users, {
as: 'updatedBy',
});
};
return withdrawal_requests;
};

16
backend/src/db/reset.js Normal file
View File

@ -0,0 +1,16 @@
const db = require('./models');
const {execSync} = require("child_process");
console.log('Resetting Database');
db.sequelize
.sync({ force: true })
.then(() => {
execSync("sequelize db:seed:all");
console.log('OK');
process.exit();
})
.catch((error) => {
console.error(error);
process.exit(1);
});

View File

@ -0,0 +1,66 @@
'use strict';
const bcrypt = require("bcrypt");
const config = require("../../config");
const ids = [
'193bf4b5-9f07-4bd5-9a43-e7e41f3e96af',
'af5a87be-8f9c-4630-902a-37a60b7005ba',
'5bc531ab-611f-41f3-9373-b7cc5d09c93d',
]
module.exports = {
up: async (queryInterface, Sequelize) => {
let admin_hash = bcrypt.hashSync(config.admin_pass, config.bcrypt.saltRounds);
let user_hash = bcrypt.hashSync(config.user_pass, config.bcrypt.saltRounds);
try {
await queryInterface.bulkInsert('users', [
{
id: ids[0],
firstName: 'Admin',
email: config.admin_email,
emailVerified: true,
provider: config.providers.LOCAL,
password: admin_hash,
createdAt: new Date(),
updatedAt: new Date()
},
{
id: ids[1],
firstName: 'John',
email: 'john@doe.com',
emailVerified: true,
provider: config.providers.LOCAL,
password: user_hash,
createdAt: new Date(),
updatedAt: new Date()
},
{
id: ids[2],
firstName: 'Client',
email: 'client@hello.com',
emailVerified: true,
provider: config.providers.LOCAL,
password: user_hash,
createdAt: new Date(),
updatedAt: new Date()
},
]);
} catch (error) {
console.error('Error during bulkInsert:', error);
throw error;
}
},
down: async (queryInterface, Sequelize) => {
try {
await queryInterface.bulkDelete('users', {
id: {
[Sequelize.Op.in]: ids,
},
}, {});
} catch (error) {
console.error('Error during bulkDelete:', error);
throw error;
}
}
}

Some files were not shown because too many files have changed in this diff Show More