Initial version

This commit is contained in:
Flatlogic Bot 2026-06-13 09:42:42 +00:00
commit 80b67adda3
736 changed files with 228542 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>App Preview</h2>
<p>Multiplayer educational quiz gaming platform with many modes, quizzes, avatars, rewards, and community sharing.</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 @@
# App Preview
## 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`

1
backend/.env Normal file
View File

@ -0,0 +1 @@
PORT=8080

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 @@
#App Preview - 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_app_preview;`
- Then give that new user privileges to the new database then quit the `psql`.
- `postgres=> GRANT ALL PRIVILEGES ON DATABASE db_app_preview 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": "apppreview",
"description": "App Preview - 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: "78926cea",
user_pass: "11f80925aeb0",
admin_email: "admin@flatlogic.com",
providers: {
LOCAL: 'local',
GOOGLE: 'google',
MICROSOFT: 'microsoft'
},
secret_key: process.env.SECRET_KEY || '78926cea-0fe7-49a6-a249-11f80925aeb0',
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: 'App Preview <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: 'StudentPlayer',
},
project_uuid: '78926cea-0fe7-49a6-a249-11f80925aeb0',
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 = 'Colorful classroom planets illustration';
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,578 @@
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 AchievementsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const achievements = await db.achievements.create(
{
id: data.id || undefined,
name: data.name
||
null
,
description: data.description
||
null
,
category: data.category
||
null
,
target_value: data.target_value
||
null
,
reward_yux: data.reward_yux
||
null
,
is_repeatable: data.is_repeatable
||
false
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await achievements.setReward_title( data.reward_title || null, {
transaction,
});
await achievements.setReward_badge( data.reward_badge || null, {
transaction,
});
return 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 achievementsData = data.map((item, index) => ({
id: item.id || undefined,
name: item.name
||
null
,
description: item.description
||
null
,
category: item.category
||
null
,
target_value: item.target_value
||
null
,
reward_yux: item.reward_yux
||
null
,
is_repeatable: item.is_repeatable
||
false
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const achievements = await db.achievements.bulkCreate(achievementsData, { transaction });
// For each item created, replace relation files
return achievements;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const achievements = await db.achievements.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.target_value !== undefined) updatePayload.target_value = data.target_value;
if (data.reward_yux !== undefined) updatePayload.reward_yux = data.reward_yux;
if (data.is_repeatable !== undefined) updatePayload.is_repeatable = data.is_repeatable;
updatePayload.updatedById = currentUser.id;
await achievements.update(updatePayload, {transaction});
if (data.reward_title !== undefined) {
await achievements.setReward_title(
data.reward_title,
{ transaction }
);
}
if (data.reward_badge !== undefined) {
await achievements.setReward_badge(
data.reward_badge,
{ transaction }
);
}
return achievements;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const achievements = await db.achievements.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of achievements) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of achievements) {
await record.destroy({transaction});
}
});
return achievements;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const achievements = await db.achievements.findByPk(id, options);
await achievements.update({
deletedBy: currentUser.id
}, {
transaction,
});
await achievements.destroy({
transaction
});
return achievements;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const achievements = await db.achievements.findOne(
{ where },
{ transaction },
);
if (!achievements) {
return achievements;
}
const output = achievements.get({plain: true});
output.user_achievements_achievement = await achievements.getUser_achievements_achievement({
transaction
});
output.reward_title = await achievements.getReward_title({
transaction
});
output.reward_badge = await achievements.getReward_badge({
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.titles,
as: 'reward_title',
where: filter.reward_title ? {
[Op.or]: [
{ id: { [Op.in]: filter.reward_title.split('|').map(term => Utils.uuid(term)) } },
{
name: {
[Op.or]: filter.reward_title.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.badges,
as: 'reward_badge',
where: filter.reward_badge ? {
[Op.or]: [
{ id: { [Op.in]: filter.reward_badge.split('|').map(term => Utils.uuid(term)) } },
{
name: {
[Op.or]: filter.reward_badge.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.name) {
where = {
...where,
[Op.and]: Utils.ilike(
'achievements',
'name',
filter.name,
),
};
}
if (filter.description) {
where = {
...where,
[Op.and]: Utils.ilike(
'achievements',
'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.reward_yuxRange) {
const [start, end] = filter.reward_yuxRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
reward_yux: {
...where.reward_yux,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
reward_yux: {
...where.reward_yux,
[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.is_repeatable) {
where = {
...where,
is_repeatable: filter.is_repeatable,
};
}
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.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(
'achievements',
'name',
query,
),
],
};
}
const records = await db.achievements.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,613 @@
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 Avatar_customizationsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const avatar_customizations = await db.avatar_customizations.create(
{
id: data.id || undefined,
profile_name: data.profile_name
||
null
,
base_color: data.base_color
||
null
,
custom_color_hex: data.custom_color_hex
||
null
,
face_style: data.face_style
||
null
,
pattern_style: data.pattern_style
||
null
,
pattern_color: data.pattern_color
||
null
,
pattern_custom_hex: data.pattern_custom_hex
||
null
,
hat_style: data.hat_style
||
null
,
is_active: data.is_active
||
false
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await avatar_customizations.setUser( data.user || null, {
transaction,
});
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.avatar_customizations.getTableName(),
belongsToColumn: 'render_images',
belongsToId: avatar_customizations.id,
},
data.render_images,
options,
);
return avatar_customizations;
}
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 avatar_customizationsData = data.map((item, index) => ({
id: item.id || undefined,
profile_name: item.profile_name
||
null
,
base_color: item.base_color
||
null
,
custom_color_hex: item.custom_color_hex
||
null
,
face_style: item.face_style
||
null
,
pattern_style: item.pattern_style
||
null
,
pattern_color: item.pattern_color
||
null
,
pattern_custom_hex: item.pattern_custom_hex
||
null
,
hat_style: item.hat_style
||
null
,
is_active: item.is_active
||
false
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const avatar_customizations = await db.avatar_customizations.bulkCreate(avatar_customizationsData, { transaction });
// For each item created, replace relation files
for (let i = 0; i < avatar_customizations.length; i++) {
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.avatar_customizations.getTableName(),
belongsToColumn: 'render_images',
belongsToId: avatar_customizations[i].id,
},
data[i].render_images,
options,
);
}
return avatar_customizations;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const avatar_customizations = await db.avatar_customizations.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.profile_name !== undefined) updatePayload.profile_name = data.profile_name;
if (data.base_color !== undefined) updatePayload.base_color = data.base_color;
if (data.custom_color_hex !== undefined) updatePayload.custom_color_hex = data.custom_color_hex;
if (data.face_style !== undefined) updatePayload.face_style = data.face_style;
if (data.pattern_style !== undefined) updatePayload.pattern_style = data.pattern_style;
if (data.pattern_color !== undefined) updatePayload.pattern_color = data.pattern_color;
if (data.pattern_custom_hex !== undefined) updatePayload.pattern_custom_hex = data.pattern_custom_hex;
if (data.hat_style !== undefined) updatePayload.hat_style = data.hat_style;
if (data.is_active !== undefined) updatePayload.is_active = data.is_active;
updatePayload.updatedById = currentUser.id;
await avatar_customizations.update(updatePayload, {transaction});
if (data.user !== undefined) {
await avatar_customizations.setUser(
data.user,
{ transaction }
);
}
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.avatar_customizations.getTableName(),
belongsToColumn: 'render_images',
belongsToId: avatar_customizations.id,
},
data.render_images,
options,
);
return avatar_customizations;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const avatar_customizations = await db.avatar_customizations.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of avatar_customizations) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of avatar_customizations) {
await record.destroy({transaction});
}
});
return avatar_customizations;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const avatar_customizations = await db.avatar_customizations.findByPk(id, options);
await avatar_customizations.update({
deletedBy: currentUser.id
}, {
transaction,
});
await avatar_customizations.destroy({
transaction
});
return avatar_customizations;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const avatar_customizations = await db.avatar_customizations.findOne(
{ where },
{ transaction },
);
if (!avatar_customizations) {
return avatar_customizations;
}
const output = avatar_customizations.get({plain: true});
output.match_players_avatar_customization = await avatar_customizations.getMatch_players_avatar_customization({
transaction
});
output.user = await avatar_customizations.getUser({
transaction
});
output.render_images = await avatar_customizations.getRender_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: 'render_images',
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.profile_name) {
where = {
...where,
[Op.and]: Utils.ilike(
'avatar_customizations',
'profile_name',
filter.profile_name,
),
};
}
if (filter.custom_color_hex) {
where = {
...where,
[Op.and]: Utils.ilike(
'avatar_customizations',
'custom_color_hex',
filter.custom_color_hex,
),
};
}
if (filter.pattern_custom_hex) {
where = {
...where,
[Op.and]: Utils.ilike(
'avatar_customizations',
'pattern_custom_hex',
filter.pattern_custom_hex,
),
};
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.base_color) {
where = {
...where,
base_color: filter.base_color,
};
}
if (filter.face_style) {
where = {
...where,
face_style: filter.face_style,
};
}
if (filter.pattern_style) {
where = {
...where,
pattern_style: filter.pattern_style,
};
}
if (filter.pattern_color) {
where = {
...where,
pattern_color: filter.pattern_color,
};
}
if (filter.hat_style) {
where = {
...where,
hat_style: filter.hat_style,
};
}
if (filter.is_active) {
where = {
...where,
is_active: filter.is_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.avatar_customizations.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(
'avatar_customizations',
'profile_name',
query,
),
],
};
}
const records = await db.avatar_customizations.findAll({
attributes: [ 'id', 'profile_name' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['profile_name', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.profile_name,
}));
}
};

View File

@ -0,0 +1,533 @@
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 AvatarsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const avatars = await db.avatars.create(
{
id: data.id || undefined,
name: data.name
||
null
,
rarity: data.rarity
||
null
,
source_type: data.source_type
||
null
,
is_collectible: data.is_collectible
||
false
,
model_key: data.model_key
||
null
,
drop_weight: data.drop_weight
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.avatars.getTableName(),
belongsToColumn: 'preview_images',
belongsToId: avatars.id,
},
data.preview_images,
options,
);
return avatars;
}
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 avatarsData = data.map((item, index) => ({
id: item.id || undefined,
name: item.name
||
null
,
rarity: item.rarity
||
null
,
source_type: item.source_type
||
null
,
is_collectible: item.is_collectible
||
false
,
model_key: item.model_key
||
null
,
drop_weight: item.drop_weight
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const avatars = await db.avatars.bulkCreate(avatarsData, { transaction });
// For each item created, replace relation files
for (let i = 0; i < avatars.length; i++) {
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.avatars.getTableName(),
belongsToColumn: 'preview_images',
belongsToId: avatars[i].id,
},
data[i].preview_images,
options,
);
}
return avatars;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const avatars = await db.avatars.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.name !== undefined) updatePayload.name = data.name;
if (data.rarity !== undefined) updatePayload.rarity = data.rarity;
if (data.source_type !== undefined) updatePayload.source_type = data.source_type;
if (data.is_collectible !== undefined) updatePayload.is_collectible = data.is_collectible;
if (data.model_key !== undefined) updatePayload.model_key = data.model_key;
if (data.drop_weight !== undefined) updatePayload.drop_weight = data.drop_weight;
updatePayload.updatedById = currentUser.id;
await avatars.update(updatePayload, {transaction});
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.avatars.getTableName(),
belongsToColumn: 'preview_images',
belongsToId: avatars.id,
},
data.preview_images,
options,
);
return avatars;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const avatars = await db.avatars.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of avatars) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of avatars) {
await record.destroy({transaction});
}
});
return avatars;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const avatars = await db.avatars.findByPk(id, options);
await avatars.update({
deletedBy: currentUser.id
}, {
transaction,
});
await avatars.destroy({
transaction
});
return avatars;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const avatars = await db.avatars.findOne(
{ where },
{ transaction },
);
if (!avatars) {
return avatars;
}
const output = avatars.get({plain: true});
output.box_items_avatar = await avatars.getBox_items_avatar({
transaction
});
output.inventory_items_avatar = await avatars.getInventory_items_avatar({
transaction
});
output.preview_images = await avatars.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.file,
as: 'preview_images',
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.name) {
where = {
...where,
[Op.and]: Utils.ilike(
'avatars',
'name',
filter.name,
),
};
}
if (filter.model_key) {
where = {
...where,
[Op.and]: Utils.ilike(
'avatars',
'model_key',
filter.model_key,
),
};
}
if (filter.drop_weightRange) {
const [start, end] = filter.drop_weightRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
drop_weight: {
...where.drop_weight,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
drop_weight: {
...where.drop_weight,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.rarity) {
where = {
...where,
rarity: filter.rarity,
};
}
if (filter.source_type) {
where = {
...where,
source_type: filter.source_type,
};
}
if (filter.is_collectible) {
where = {
...where,
is_collectible: filter.is_collectible,
};
}
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.avatars.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(
'avatars',
'name',
query,
),
],
};
}
const records = await db.avatars.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,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 BadgesDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const badges = await db.badges.create(
{
id: data.id || undefined,
name: data.name
||
null
,
description: data.description
||
null
,
unlock_type: data.unlock_type
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.badges.getTableName(),
belongsToColumn: 'badge_images',
belongsToId: badges.id,
},
data.badge_images,
options,
);
return badges;
}
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 badgesData = data.map((item, index) => ({
id: item.id || undefined,
name: item.name
||
null
,
description: item.description
||
null
,
unlock_type: item.unlock_type
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const badges = await db.badges.bulkCreate(badgesData, { transaction });
// For each item created, replace relation files
for (let i = 0; i < badges.length; i++) {
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.badges.getTableName(),
belongsToColumn: 'badge_images',
belongsToId: badges[i].id,
},
data[i].badge_images,
options,
);
}
return badges;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const badges = await db.badges.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.name !== undefined) updatePayload.name = data.name;
if (data.description !== undefined) updatePayload.description = data.description;
if (data.unlock_type !== undefined) updatePayload.unlock_type = data.unlock_type;
updatePayload.updatedById = currentUser.id;
await badges.update(updatePayload, {transaction});
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.badges.getTableName(),
belongsToColumn: 'badge_images',
belongsToId: badges.id,
},
data.badge_images,
options,
);
return badges;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const badges = await db.badges.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of badges) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of badges) {
await record.destroy({transaction});
}
});
return badges;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const badges = await db.badges.findByPk(id, options);
await badges.update({
deletedBy: currentUser.id
}, {
transaction,
});
await badges.destroy({
transaction
});
return badges;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const badges = await db.badges.findOne(
{ where },
{ transaction },
);
if (!badges) {
return badges;
}
const output = badges.get({plain: true});
output.inventory_items_badge = await badges.getInventory_items_badge({
transaction
});
output.achievements_reward_badge = await badges.getAchievements_reward_badge({
transaction
});
output.daily_rewards_badge = await badges.getDaily_rewards_badge({
transaction
});
output.badge_images = await badges.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(
'badges',
'name',
filter.name,
),
};
}
if (filter.description) {
where = {
...where,
[Op.and]: Utils.ilike(
'badges',
'description',
filter.description,
),
};
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.unlock_type) {
where = {
...where,
unlock_type: filter.unlock_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.badges.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(
'badges',
'name',
query,
),
],
};
}
const records = await db.badges.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,524 @@
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 Box_itemsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const box_items = await db.box_items.create(
{
id: data.id || undefined,
item_kind: data.item_kind
||
null
,
rarity: data.rarity
||
null
,
drop_rate_percent: data.drop_rate_percent
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await box_items.setBox( data.box || null, {
transaction,
});
await box_items.setAvatar( data.avatar || null, {
transaction,
});
await box_items.setCosmetic( data.cosmetic || null, {
transaction,
});
return box_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 box_itemsData = data.map((item, index) => ({
id: item.id || undefined,
item_kind: item.item_kind
||
null
,
rarity: item.rarity
||
null
,
drop_rate_percent: item.drop_rate_percent
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const box_items = await db.box_items.bulkCreate(box_itemsData, { transaction });
// For each item created, replace relation files
return box_items;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const box_items = await db.box_items.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.item_kind !== undefined) updatePayload.item_kind = data.item_kind;
if (data.rarity !== undefined) updatePayload.rarity = data.rarity;
if (data.drop_rate_percent !== undefined) updatePayload.drop_rate_percent = data.drop_rate_percent;
updatePayload.updatedById = currentUser.id;
await box_items.update(updatePayload, {transaction});
if (data.box !== undefined) {
await box_items.setBox(
data.box,
{ transaction }
);
}
if (data.avatar !== undefined) {
await box_items.setAvatar(
data.avatar,
{ transaction }
);
}
if (data.cosmetic !== undefined) {
await box_items.setCosmetic(
data.cosmetic,
{ transaction }
);
}
return box_items;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const box_items = await db.box_items.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of box_items) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of box_items) {
await record.destroy({transaction});
}
});
return box_items;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const box_items = await db.box_items.findByPk(id, options);
await box_items.update({
deletedBy: currentUser.id
}, {
transaction,
});
await box_items.destroy({
transaction
});
return box_items;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const box_items = await db.box_items.findOne(
{ where },
{ transaction },
);
if (!box_items) {
return box_items;
}
const output = box_items.get({plain: true});
output.box = await box_items.getBox({
transaction
});
output.avatar = await box_items.getAvatar({
transaction
});
output.cosmetic = await box_items.getCosmetic({
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.boxes,
as: 'box',
where: filter.box ? {
[Op.or]: [
{ id: { [Op.in]: filter.box.split('|').map(term => Utils.uuid(term)) } },
{
name: {
[Op.or]: filter.box.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.avatars,
as: 'avatar',
where: filter.avatar ? {
[Op.or]: [
{ id: { [Op.in]: filter.avatar.split('|').map(term => Utils.uuid(term)) } },
{
name: {
[Op.or]: filter.avatar.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.cosmetics,
as: 'cosmetic',
where: filter.cosmetic ? {
[Op.or]: [
{ id: { [Op.in]: filter.cosmetic.split('|').map(term => Utils.uuid(term)) } },
{
name: {
[Op.or]: filter.cosmetic.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.drop_rate_percentRange) {
const [start, end] = filter.drop_rate_percentRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
drop_rate_percent: {
...where.drop_rate_percent,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
drop_rate_percent: {
...where.drop_rate_percent,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.item_kind) {
where = {
...where,
item_kind: filter.item_kind,
};
}
if (filter.rarity) {
where = {
...where,
rarity: filter.rarity,
};
}
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.box_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(
'box_items',
'item_kind',
query,
),
],
};
}
const records = await db.box_items.findAll({
attributes: [ 'id', 'item_kind' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['item_kind', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.item_kind,
}));
}
};

517
backend/src/db/api/boxes.js Normal file
View File

@ -0,0 +1,517 @@
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 BoxesDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const boxes = await db.boxes.create(
{
id: data.id || undefined,
name: data.name
||
null
,
description: data.description
||
null
,
box_type: data.box_type
||
null
,
price_yux: data.price_yux
||
null
,
is_available: data.is_available
||
false
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.boxes.getTableName(),
belongsToColumn: 'box_images',
belongsToId: boxes.id,
},
data.box_images,
options,
);
return boxes;
}
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 boxesData = data.map((item, index) => ({
id: item.id || undefined,
name: item.name
||
null
,
description: item.description
||
null
,
box_type: item.box_type
||
null
,
price_yux: item.price_yux
||
null
,
is_available: item.is_available
||
false
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const boxes = await db.boxes.bulkCreate(boxesData, { transaction });
// For each item created, replace relation files
for (let i = 0; i < boxes.length; i++) {
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.boxes.getTableName(),
belongsToColumn: 'box_images',
belongsToId: boxes[i].id,
},
data[i].box_images,
options,
);
}
return boxes;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const boxes = await db.boxes.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.name !== undefined) updatePayload.name = data.name;
if (data.description !== undefined) updatePayload.description = data.description;
if (data.box_type !== undefined) updatePayload.box_type = data.box_type;
if (data.price_yux !== undefined) updatePayload.price_yux = data.price_yux;
if (data.is_available !== undefined) updatePayload.is_available = data.is_available;
updatePayload.updatedById = currentUser.id;
await boxes.update(updatePayload, {transaction});
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.boxes.getTableName(),
belongsToColumn: 'box_images',
belongsToId: boxes.id,
},
data.box_images,
options,
);
return boxes;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const boxes = await db.boxes.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of boxes) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of boxes) {
await record.destroy({transaction});
}
});
return boxes;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const boxes = await db.boxes.findByPk(id, options);
await boxes.update({
deletedBy: currentUser.id
}, {
transaction,
});
await boxes.destroy({
transaction
});
return boxes;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const boxes = await db.boxes.findOne(
{ where },
{ transaction },
);
if (!boxes) {
return boxes;
}
const output = boxes.get({plain: true});
output.box_items_box = await boxes.getBox_items_box({
transaction
});
output.purchases_box = await boxes.getPurchases_box({
transaction
});
output.daily_rewards_box = await boxes.getDaily_rewards_box({
transaction
});
output.box_images = await boxes.getBox_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: 'box_images',
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.name) {
where = {
...where,
[Op.and]: Utils.ilike(
'boxes',
'name',
filter.name,
),
};
}
if (filter.description) {
where = {
...where,
[Op.and]: Utils.ilike(
'boxes',
'description',
filter.description,
),
};
}
if (filter.price_yuxRange) {
const [start, end] = filter.price_yuxRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
price_yux: {
...where.price_yux,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
price_yux: {
...where.price_yux,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.box_type) {
where = {
...where,
box_type: filter.box_type,
};
}
if (filter.is_available) {
where = {
...where,
is_available: filter.is_available,
};
}
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.boxes.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(
'boxes',
'name',
query,
),
],
};
}
const records = await db.boxes.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,546 @@
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 Community_mode_build_sessionsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const community_mode_build_sessions = await db.community_mode_build_sessions.create(
{
id: data.id || undefined,
concept: data.concept
||
null
,
status: data.status
||
null
,
started_at: data.started_at
||
null
,
finished_at: data.finished_at
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await community_mode_build_sessions.setUser( data.user || null, {
transaction,
});
await community_mode_build_sessions.setResult_mode( data.result_mode || null, {
transaction,
});
return community_mode_build_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 community_mode_build_sessionsData = data.map((item, index) => ({
id: item.id || undefined,
concept: item.concept
||
null
,
status: item.status
||
null
,
started_at: item.started_at
||
null
,
finished_at: item.finished_at
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const community_mode_build_sessions = await db.community_mode_build_sessions.bulkCreate(community_mode_build_sessionsData, { transaction });
// For each item created, replace relation files
return community_mode_build_sessions;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const community_mode_build_sessions = await db.community_mode_build_sessions.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.concept !== undefined) updatePayload.concept = data.concept;
if (data.status !== undefined) updatePayload.status = data.status;
if (data.started_at !== undefined) updatePayload.started_at = data.started_at;
if (data.finished_at !== undefined) updatePayload.finished_at = data.finished_at;
updatePayload.updatedById = currentUser.id;
await community_mode_build_sessions.update(updatePayload, {transaction});
if (data.user !== undefined) {
await community_mode_build_sessions.setUser(
data.user,
{ transaction }
);
}
if (data.result_mode !== undefined) {
await community_mode_build_sessions.setResult_mode(
data.result_mode,
{ transaction }
);
}
return community_mode_build_sessions;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const community_mode_build_sessions = await db.community_mode_build_sessions.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of community_mode_build_sessions) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of community_mode_build_sessions) {
await record.destroy({transaction});
}
});
return community_mode_build_sessions;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const community_mode_build_sessions = await db.community_mode_build_sessions.findByPk(id, options);
await community_mode_build_sessions.update({
deletedBy: currentUser.id
}, {
transaction,
});
await community_mode_build_sessions.destroy({
transaction
});
return community_mode_build_sessions;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const community_mode_build_sessions = await db.community_mode_build_sessions.findOne(
{ where },
{ transaction },
);
if (!community_mode_build_sessions) {
return community_mode_build_sessions;
}
const output = community_mode_build_sessions.get({plain: true});
output.user = await community_mode_build_sessions.getUser({
transaction
});
output.result_mode = await community_mode_build_sessions.getResult_mode({
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.community_modes,
as: 'result_mode',
where: filter.result_mode ? {
[Op.or]: [
{ id: { [Op.in]: filter.result_mode.split('|').map(term => Utils.uuid(term)) } },
{
name: {
[Op.or]: filter.result_mode.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.concept) {
where = {
...where,
[Op.and]: Utils.ilike(
'community_mode_build_sessions',
'concept',
filter.concept,
),
};
}
if (filter.calendarStart && filter.calendarEnd) {
where = {
...where,
[Op.or]: [
{
started_at: {
[Op.between]: [filter.calendarStart, filter.calendarEnd],
},
},
{
finished_at: {
[Op.between]: [filter.calendarStart, filter.calendarEnd],
},
},
],
};
}
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.finished_atRange) {
const [start, end] = filter.finished_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
finished_at: {
...where.finished_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
finished_at: {
...where.finished_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.community_mode_build_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(
'community_mode_build_sessions',
'concept',
query,
),
],
};
}
const records = await db.community_mode_build_sessions.findAll({
attributes: [ 'id', 'concept' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['concept', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.concept,
}));
}
};

View File

@ -0,0 +1,570 @@
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 Community_modesDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const community_modes = await db.community_modes.create(
{
id: data.id || undefined,
name: data.name
||
null
,
description: data.description
||
null
,
status: data.status
||
null
,
is_unofficial: data.is_unofficial
||
false
,
rules_summary: data.rules_summary
||
null
,
published_at: data.published_at
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await community_modes.setCreator( data.creator || null, {
transaction,
});
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.community_modes.getTableName(),
belongsToColumn: 'mode_images',
belongsToId: community_modes.id,
},
data.mode_images,
options,
);
return community_modes;
}
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 community_modesData = data.map((item, index) => ({
id: item.id || undefined,
name: item.name
||
null
,
description: item.description
||
null
,
status: item.status
||
null
,
is_unofficial: item.is_unofficial
||
false
,
rules_summary: item.rules_summary
||
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 community_modes = await db.community_modes.bulkCreate(community_modesData, { transaction });
// For each item created, replace relation files
for (let i = 0; i < community_modes.length; i++) {
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.community_modes.getTableName(),
belongsToColumn: 'mode_images',
belongsToId: community_modes[i].id,
},
data[i].mode_images,
options,
);
}
return community_modes;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const community_modes = await db.community_modes.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.is_unofficial !== undefined) updatePayload.is_unofficial = data.is_unofficial;
if (data.rules_summary !== undefined) updatePayload.rules_summary = data.rules_summary;
if (data.published_at !== undefined) updatePayload.published_at = data.published_at;
updatePayload.updatedById = currentUser.id;
await community_modes.update(updatePayload, {transaction});
if (data.creator !== undefined) {
await community_modes.setCreator(
data.creator,
{ transaction }
);
}
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.community_modes.getTableName(),
belongsToColumn: 'mode_images',
belongsToId: community_modes.id,
},
data.mode_images,
options,
);
return community_modes;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const community_modes = await db.community_modes.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of community_modes) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of community_modes) {
await record.destroy({transaction});
}
});
return community_modes;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const community_modes = await db.community_modes.findByPk(id, options);
await community_modes.update({
deletedBy: currentUser.id
}, {
transaction,
});
await community_modes.destroy({
transaction
});
return community_modes;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const community_modes = await db.community_modes.findOne(
{ where },
{ transaction },
);
if (!community_modes) {
return community_modes;
}
const output = community_modes.get({plain: true});
output.community_mode_build_sessions_result_mode = await community_modes.getCommunity_mode_build_sessions_result_mode({
transaction
});
output.creator = await community_modes.getCreator({
transaction
});
output.mode_images = await community_modes.getMode_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: 'creator',
where: filter.creator ? {
[Op.or]: [
{ id: { [Op.in]: filter.creator.split('|').map(term => Utils.uuid(term)) } },
{
firstName: {
[Op.or]: filter.creator.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.file,
as: 'mode_images',
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.name) {
where = {
...where,
[Op.and]: Utils.ilike(
'community_modes',
'name',
filter.name,
),
};
}
if (filter.description) {
where = {
...where,
[Op.and]: Utils.ilike(
'community_modes',
'description',
filter.description,
),
};
}
if (filter.rules_summary) {
where = {
...where,
[Op.and]: Utils.ilike(
'community_modes',
'rules_summary',
filter.rules_summary,
),
};
}
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.status) {
where = {
...where,
status: filter.status,
};
}
if (filter.is_unofficial) {
where = {
...where,
is_unofficial: filter.is_unofficial,
};
}
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.community_modes.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(
'community_modes',
'name',
query,
),
],
};
}
const records = await db.community_modes.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,504 @@
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 CosmeticsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const cosmetics = await db.cosmetics.create(
{
id: data.id || undefined,
name: data.name
||
null
,
cosmetic_type: data.cosmetic_type
||
null
,
rarity: data.rarity
||
null
,
asset_key: data.asset_key
||
null
,
is_limited_time: data.is_limited_time
||
false
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.cosmetics.getTableName(),
belongsToColumn: 'icon_images',
belongsToId: cosmetics.id,
},
data.icon_images,
options,
);
return cosmetics;
}
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 cosmeticsData = data.map((item, index) => ({
id: item.id || undefined,
name: item.name
||
null
,
cosmetic_type: item.cosmetic_type
||
null
,
rarity: item.rarity
||
null
,
asset_key: item.asset_key
||
null
,
is_limited_time: item.is_limited_time
||
false
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const cosmetics = await db.cosmetics.bulkCreate(cosmeticsData, { transaction });
// For each item created, replace relation files
for (let i = 0; i < cosmetics.length; i++) {
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.cosmetics.getTableName(),
belongsToColumn: 'icon_images',
belongsToId: cosmetics[i].id,
},
data[i].icon_images,
options,
);
}
return cosmetics;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const cosmetics = await db.cosmetics.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.name !== undefined) updatePayload.name = data.name;
if (data.cosmetic_type !== undefined) updatePayload.cosmetic_type = data.cosmetic_type;
if (data.rarity !== undefined) updatePayload.rarity = data.rarity;
if (data.asset_key !== undefined) updatePayload.asset_key = data.asset_key;
if (data.is_limited_time !== undefined) updatePayload.is_limited_time = data.is_limited_time;
updatePayload.updatedById = currentUser.id;
await cosmetics.update(updatePayload, {transaction});
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.cosmetics.getTableName(),
belongsToColumn: 'icon_images',
belongsToId: cosmetics.id,
},
data.icon_images,
options,
);
return cosmetics;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const cosmetics = await db.cosmetics.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of cosmetics) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of cosmetics) {
await record.destroy({transaction});
}
});
return cosmetics;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const cosmetics = await db.cosmetics.findByPk(id, options);
await cosmetics.update({
deletedBy: currentUser.id
}, {
transaction,
});
await cosmetics.destroy({
transaction
});
return cosmetics;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const cosmetics = await db.cosmetics.findOne(
{ where },
{ transaction },
);
if (!cosmetics) {
return cosmetics;
}
const output = cosmetics.get({plain: true});
output.box_items_cosmetic = await cosmetics.getBox_items_cosmetic({
transaction
});
output.purchases_cosmetic = await cosmetics.getPurchases_cosmetic({
transaction
});
output.inventory_items_cosmetic = await cosmetics.getInventory_items_cosmetic({
transaction
});
output.daily_rewards_cosmetic = await cosmetics.getDaily_rewards_cosmetic({
transaction
});
output.icon_images = await cosmetics.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(
'cosmetics',
'name',
filter.name,
),
};
}
if (filter.asset_key) {
where = {
...where,
[Op.and]: Utils.ilike(
'cosmetics',
'asset_key',
filter.asset_key,
),
};
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.cosmetic_type) {
where = {
...where,
cosmetic_type: filter.cosmetic_type,
};
}
if (filter.rarity) {
where = {
...where,
rarity: filter.rarity,
};
}
if (filter.is_limited_time) {
where = {
...where,
is_limited_time: filter.is_limited_time,
};
}
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.cosmetics.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(
'cosmetics',
'name',
query,
),
],
};
}
const records = await db.cosmetics.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,624 @@
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_rewardsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const daily_rewards = await db.daily_rewards.create(
{
id: data.id || undefined,
name: data.name
||
null
,
reward_type: data.reward_type
||
null
,
day_index: data.day_index
||
null
,
yux_amount: data.yux_amount
||
null
,
is_enabled: data.is_enabled
||
false
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await daily_rewards.setBox( data.box || null, {
transaction,
});
await daily_rewards.setCosmetic( data.cosmetic || null, {
transaction,
});
await daily_rewards.setTitle_item( data.title_item || null, {
transaction,
});
await daily_rewards.setBadge( data.badge || null, {
transaction,
});
return daily_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_rewardsData = data.map((item, index) => ({
id: item.id || undefined,
name: item.name
||
null
,
reward_type: item.reward_type
||
null
,
day_index: item.day_index
||
null
,
yux_amount: item.yux_amount
||
null
,
is_enabled: item.is_enabled
||
false
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const daily_rewards = await db.daily_rewards.bulkCreate(daily_rewardsData, { transaction });
// For each item created, replace relation files
return daily_rewards;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const daily_rewards = await db.daily_rewards.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.name !== undefined) updatePayload.name = data.name;
if (data.reward_type !== undefined) updatePayload.reward_type = data.reward_type;
if (data.day_index !== undefined) updatePayload.day_index = data.day_index;
if (data.yux_amount !== undefined) updatePayload.yux_amount = data.yux_amount;
if (data.is_enabled !== undefined) updatePayload.is_enabled = data.is_enabled;
updatePayload.updatedById = currentUser.id;
await daily_rewards.update(updatePayload, {transaction});
if (data.box !== undefined) {
await daily_rewards.setBox(
data.box,
{ transaction }
);
}
if (data.cosmetic !== undefined) {
await daily_rewards.setCosmetic(
data.cosmetic,
{ transaction }
);
}
if (data.title_item !== undefined) {
await daily_rewards.setTitle_item(
data.title_item,
{ transaction }
);
}
if (data.badge !== undefined) {
await daily_rewards.setBadge(
data.badge,
{ transaction }
);
}
return daily_rewards;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const daily_rewards = await db.daily_rewards.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of daily_rewards) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of daily_rewards) {
await record.destroy({transaction});
}
});
return daily_rewards;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const daily_rewards = await db.daily_rewards.findByPk(id, options);
await daily_rewards.update({
deletedBy: currentUser.id
}, {
transaction,
});
await daily_rewards.destroy({
transaction
});
return daily_rewards;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const daily_rewards = await db.daily_rewards.findOne(
{ where },
{ transaction },
);
if (!daily_rewards) {
return daily_rewards;
}
const output = daily_rewards.get({plain: true});
output.box = await daily_rewards.getBox({
transaction
});
output.cosmetic = await daily_rewards.getCosmetic({
transaction
});
output.title_item = await daily_rewards.getTitle_item({
transaction
});
output.badge = await daily_rewards.getBadge({
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.boxes,
as: 'box',
where: filter.box ? {
[Op.or]: [
{ id: { [Op.in]: filter.box.split('|').map(term => Utils.uuid(term)) } },
{
name: {
[Op.or]: filter.box.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.cosmetics,
as: 'cosmetic',
where: filter.cosmetic ? {
[Op.or]: [
{ id: { [Op.in]: filter.cosmetic.split('|').map(term => Utils.uuid(term)) } },
{
name: {
[Op.or]: filter.cosmetic.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.titles,
as: 'title_item',
where: filter.title_item ? {
[Op.or]: [
{ id: { [Op.in]: filter.title_item.split('|').map(term => Utils.uuid(term)) } },
{
name: {
[Op.or]: filter.title_item.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.badges,
as: 'badge',
where: filter.badge ? {
[Op.or]: [
{ id: { [Op.in]: filter.badge.split('|').map(term => Utils.uuid(term)) } },
{
name: {
[Op.or]: filter.badge.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.name) {
where = {
...where,
[Op.and]: Utils.ilike(
'daily_rewards',
'name',
filter.name,
),
};
}
if (filter.day_indexRange) {
const [start, end] = filter.day_indexRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
day_index: {
...where.day_index,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
day_index: {
...where.day_index,
[Op.lte]: end,
},
};
}
}
if (filter.yux_amountRange) {
const [start, end] = filter.yux_amountRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
yux_amount: {
...where.yux_amount,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
yux_amount: {
...where.yux_amount,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.reward_type) {
where = {
...where,
reward_type: filter.reward_type,
};
}
if (filter.is_enabled) {
where = {
...where,
is_enabled: filter.is_enabled,
};
}
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_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_rewards',
'name',
query,
),
],
};
}
const records = await db.daily_rewards.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,564 @@
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 EventsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const events = await db.events.create(
{
id: data.id || undefined,
name: data.name
||
null
,
description: data.description
||
null
,
event_type: data.event_type
||
null
,
starts_at: data.starts_at
||
null
,
ends_at: data.ends_at
||
null
,
is_active: data.is_active
||
false
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.events.getTableName(),
belongsToColumn: 'event_images',
belongsToId: events.id,
},
data.event_images,
options,
);
return 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 eventsData = data.map((item, index) => ({
id: item.id || undefined,
name: item.name
||
null
,
description: item.description
||
null
,
event_type: item.event_type
||
null
,
starts_at: item.starts_at
||
null
,
ends_at: item.ends_at
||
null
,
is_active: item.is_active
||
false
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const events = await db.events.bulkCreate(eventsData, { transaction });
// For each item created, replace relation files
for (let i = 0; i < events.length; i++) {
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.events.getTableName(),
belongsToColumn: 'event_images',
belongsToId: events[i].id,
},
data[i].event_images,
options,
);
}
return events;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const events = await db.events.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.name !== undefined) updatePayload.name = data.name;
if (data.description !== undefined) updatePayload.description = data.description;
if (data.event_type !== undefined) updatePayload.event_type = data.event_type;
if (data.starts_at !== undefined) updatePayload.starts_at = data.starts_at;
if (data.ends_at !== undefined) updatePayload.ends_at = data.ends_at;
if (data.is_active !== undefined) updatePayload.is_active = data.is_active;
updatePayload.updatedById = currentUser.id;
await events.update(updatePayload, {transaction});
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.events.getTableName(),
belongsToColumn: 'event_images',
belongsToId: events.id,
},
data.event_images,
options,
);
return events;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const events = await db.events.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of events) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of events) {
await record.destroy({transaction});
}
});
return events;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const events = await db.events.findByPk(id, options);
await events.update({
deletedBy: currentUser.id
}, {
transaction,
});
await events.destroy({
transaction
});
return events;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const events = await db.events.findOne(
{ where },
{ transaction },
);
if (!events) {
return events;
}
const output = events.get({plain: true});
output.leaderboard_entries_event = await events.getLeaderboard_entries_event({
transaction
});
output.event_images = await events.getEvent_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: 'event_images',
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.name) {
where = {
...where,
[Op.and]: Utils.ilike(
'events',
'name',
filter.name,
),
};
}
if (filter.description) {
where = {
...where,
[Op.and]: Utils.ilike(
'events',
'description',
filter.description,
),
};
}
if (filter.calendarStart && filter.calendarEnd) {
where = {
...where,
[Op.or]: [
{
starts_at: {
[Op.between]: [filter.calendarStart, filter.calendarEnd],
},
},
{
ends_at: {
[Op.between]: [filter.calendarStart, filter.calendarEnd],
},
},
],
};
}
if (filter.starts_atRange) {
const [start, end] = filter.starts_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
starts_at: {
...where.starts_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
starts_at: {
...where.starts_at,
[Op.lte]: end,
},
};
}
}
if (filter.ends_atRange) {
const [start, end] = filter.ends_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
ends_at: {
...where.ends_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
ends_at: {
...where.ends_at,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.event_type) {
where = {
...where,
event_type: filter.event_type,
};
}
if (filter.is_active) {
where = {
...where,
is_active: filter.is_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.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(
'events',
'name',
query,
),
],
};
}
const records = await db.events.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,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,498 @@
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 Game_modesDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const game_modes = await db.game_modes.create(
{
id: data.id || undefined,
name: data.name
||
null
,
mode_key: data.mode_key
||
null
,
description: data.description
||
null
,
is_official: data.is_official
||
false
,
is_enabled: data.is_enabled
||
false
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.game_modes.getTableName(),
belongsToColumn: 'mode_images',
belongsToId: game_modes.id,
},
data.mode_images,
options,
);
return game_modes;
}
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 game_modesData = data.map((item, index) => ({
id: item.id || undefined,
name: item.name
||
null
,
mode_key: item.mode_key
||
null
,
description: item.description
||
null
,
is_official: item.is_official
||
false
,
is_enabled: item.is_enabled
||
false
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const game_modes = await db.game_modes.bulkCreate(game_modesData, { transaction });
// For each item created, replace relation files
for (let i = 0; i < game_modes.length; i++) {
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.game_modes.getTableName(),
belongsToColumn: 'mode_images',
belongsToId: game_modes[i].id,
},
data[i].mode_images,
options,
);
}
return game_modes;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const game_modes = await db.game_modes.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.name !== undefined) updatePayload.name = data.name;
if (data.mode_key !== undefined) updatePayload.mode_key = data.mode_key;
if (data.description !== undefined) updatePayload.description = data.description;
if (data.is_official !== undefined) updatePayload.is_official = data.is_official;
if (data.is_enabled !== undefined) updatePayload.is_enabled = data.is_enabled;
updatePayload.updatedById = currentUser.id;
await game_modes.update(updatePayload, {transaction});
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.game_modes.getTableName(),
belongsToColumn: 'mode_images',
belongsToId: game_modes.id,
},
data.mode_images,
options,
);
return game_modes;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const game_modes = await db.game_modes.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of game_modes) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of game_modes) {
await record.destroy({transaction});
}
});
return game_modes;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const game_modes = await db.game_modes.findByPk(id, options);
await game_modes.update({
deletedBy: currentUser.id
}, {
transaction,
});
await game_modes.destroy({
transaction
});
return game_modes;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const game_modes = await db.game_modes.findOne(
{ where },
{ transaction },
);
if (!game_modes) {
return game_modes;
}
const output = game_modes.get({plain: true});
output.matches_mode = await game_modes.getMatches_mode({
transaction
});
output.leaderboard_entries_mode = await game_modes.getLeaderboard_entries_mode({
transaction
});
output.mode_images = await game_modes.getMode_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: 'mode_images',
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.name) {
where = {
...where,
[Op.and]: Utils.ilike(
'game_modes',
'name',
filter.name,
),
};
}
if (filter.description) {
where = {
...where,
[Op.and]: Utils.ilike(
'game_modes',
'description',
filter.description,
),
};
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.mode_key) {
where = {
...where,
mode_key: filter.mode_key,
};
}
if (filter.is_official) {
where = {
...where,
is_official: filter.is_official,
};
}
if (filter.is_enabled) {
where = {
...where,
is_enabled: filter.is_enabled,
};
}
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.game_modes.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(
'game_modes',
'name',
query,
),
],
};
}
const records = await db.game_modes.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,615 @@
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 Inventory_itemsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const inventory_items = await db.inventory_items.create(
{
id: data.id || undefined,
item_kind: data.item_kind
||
null
,
quantity: data.quantity
||
null
,
unlocked_at: data.unlocked_at
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await inventory_items.setUser( data.user || null, {
transaction,
});
await inventory_items.setAvatar( data.avatar || null, {
transaction,
});
await inventory_items.setCosmetic( data.cosmetic || null, {
transaction,
});
await inventory_items.setTitle_item( data.title_item || null, {
transaction,
});
await inventory_items.setBadge( data.badge || null, {
transaction,
});
return inventory_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 inventory_itemsData = data.map((item, index) => ({
id: item.id || undefined,
item_kind: item.item_kind
||
null
,
quantity: item.quantity
||
null
,
unlocked_at: item.unlocked_at
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const inventory_items = await db.inventory_items.bulkCreate(inventory_itemsData, { transaction });
// For each item created, replace relation files
return inventory_items;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const inventory_items = await db.inventory_items.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.item_kind !== undefined) updatePayload.item_kind = data.item_kind;
if (data.quantity !== undefined) updatePayload.quantity = data.quantity;
if (data.unlocked_at !== undefined) updatePayload.unlocked_at = data.unlocked_at;
updatePayload.updatedById = currentUser.id;
await inventory_items.update(updatePayload, {transaction});
if (data.user !== undefined) {
await inventory_items.setUser(
data.user,
{ transaction }
);
}
if (data.avatar !== undefined) {
await inventory_items.setAvatar(
data.avatar,
{ transaction }
);
}
if (data.cosmetic !== undefined) {
await inventory_items.setCosmetic(
data.cosmetic,
{ transaction }
);
}
if (data.title_item !== undefined) {
await inventory_items.setTitle_item(
data.title_item,
{ transaction }
);
}
if (data.badge !== undefined) {
await inventory_items.setBadge(
data.badge,
{ transaction }
);
}
return inventory_items;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const inventory_items = await db.inventory_items.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of inventory_items) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of inventory_items) {
await record.destroy({transaction});
}
});
return inventory_items;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const inventory_items = await db.inventory_items.findByPk(id, options);
await inventory_items.update({
deletedBy: currentUser.id
}, {
transaction,
});
await inventory_items.destroy({
transaction
});
return inventory_items;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const inventory_items = await db.inventory_items.findOne(
{ where },
{ transaction },
);
if (!inventory_items) {
return inventory_items;
}
const output = inventory_items.get({plain: true});
output.user = await inventory_items.getUser({
transaction
});
output.avatar = await inventory_items.getAvatar({
transaction
});
output.cosmetic = await inventory_items.getCosmetic({
transaction
});
output.title_item = await inventory_items.getTitle_item({
transaction
});
output.badge = await inventory_items.getBadge({
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.avatars,
as: 'avatar',
where: filter.avatar ? {
[Op.or]: [
{ id: { [Op.in]: filter.avatar.split('|').map(term => Utils.uuid(term)) } },
{
name: {
[Op.or]: filter.avatar.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.cosmetics,
as: 'cosmetic',
where: filter.cosmetic ? {
[Op.or]: [
{ id: { [Op.in]: filter.cosmetic.split('|').map(term => Utils.uuid(term)) } },
{
name: {
[Op.or]: filter.cosmetic.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.titles,
as: 'title_item',
where: filter.title_item ? {
[Op.or]: [
{ id: { [Op.in]: filter.title_item.split('|').map(term => Utils.uuid(term)) } },
{
name: {
[Op.or]: filter.title_item.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.badges,
as: 'badge',
where: filter.badge ? {
[Op.or]: [
{ id: { [Op.in]: filter.badge.split('|').map(term => Utils.uuid(term)) } },
{
name: {
[Op.or]: filter.badge.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.quantityRange) {
const [start, end] = filter.quantityRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
quantity: {
...where.quantity,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
quantity: {
...where.quantity,
[Op.lte]: end,
},
};
}
}
if (filter.unlocked_atRange) {
const [start, end] = filter.unlocked_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
unlocked_at: {
...where.unlocked_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
unlocked_at: {
...where.unlocked_at,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.item_kind) {
where = {
...where,
item_kind: filter.item_kind,
};
}
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.inventory_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(
'inventory_items',
'item_kind',
query,
),
],
};
}
const records = await db.inventory_items.findAll({
attributes: [ 'id', 'item_kind' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['item_kind', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.item_kind,
}));
}
};

View File

@ -0,0 +1,633 @@
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 Leaderboard_entriesDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const leaderboard_entries = await db.leaderboard_entries.create(
{
id: data.id || undefined,
scope: data.scope
||
null
,
rank_position: data.rank_position
||
null
,
score_value: data.score_value
||
null
,
period_start_at: data.period_start_at
||
null
,
period_end_at: data.period_end_at
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await leaderboard_entries.setUser( data.user || null, {
transaction,
});
await leaderboard_entries.setEvent( data.event || null, {
transaction,
});
await leaderboard_entries.setMode( data.mode || null, {
transaction,
});
return leaderboard_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 leaderboard_entriesData = data.map((item, index) => ({
id: item.id || undefined,
scope: item.scope
||
null
,
rank_position: item.rank_position
||
null
,
score_value: item.score_value
||
null
,
period_start_at: item.period_start_at
||
null
,
period_end_at: item.period_end_at
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const leaderboard_entries = await db.leaderboard_entries.bulkCreate(leaderboard_entriesData, { transaction });
// For each item created, replace relation files
return leaderboard_entries;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const leaderboard_entries = await db.leaderboard_entries.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.scope !== undefined) updatePayload.scope = data.scope;
if (data.rank_position !== undefined) updatePayload.rank_position = data.rank_position;
if (data.score_value !== undefined) updatePayload.score_value = data.score_value;
if (data.period_start_at !== undefined) updatePayload.period_start_at = data.period_start_at;
if (data.period_end_at !== undefined) updatePayload.period_end_at = data.period_end_at;
updatePayload.updatedById = currentUser.id;
await leaderboard_entries.update(updatePayload, {transaction});
if (data.user !== undefined) {
await leaderboard_entries.setUser(
data.user,
{ transaction }
);
}
if (data.event !== undefined) {
await leaderboard_entries.setEvent(
data.event,
{ transaction }
);
}
if (data.mode !== undefined) {
await leaderboard_entries.setMode(
data.mode,
{ transaction }
);
}
return leaderboard_entries;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const leaderboard_entries = await db.leaderboard_entries.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of leaderboard_entries) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of leaderboard_entries) {
await record.destroy({transaction});
}
});
return leaderboard_entries;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const leaderboard_entries = await db.leaderboard_entries.findByPk(id, options);
await leaderboard_entries.update({
deletedBy: currentUser.id
}, {
transaction,
});
await leaderboard_entries.destroy({
transaction
});
return leaderboard_entries;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const leaderboard_entries = await db.leaderboard_entries.findOne(
{ where },
{ transaction },
);
if (!leaderboard_entries) {
return leaderboard_entries;
}
const output = leaderboard_entries.get({plain: true});
output.user = await leaderboard_entries.getUser({
transaction
});
output.event = await leaderboard_entries.getEvent({
transaction
});
output.mode = await leaderboard_entries.getMode({
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.events,
as: 'event',
where: filter.event ? {
[Op.or]: [
{ id: { [Op.in]: filter.event.split('|').map(term => Utils.uuid(term)) } },
{
name: {
[Op.or]: filter.event.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.game_modes,
as: 'mode',
where: filter.mode ? {
[Op.or]: [
{ id: { [Op.in]: filter.mode.split('|').map(term => Utils.uuid(term)) } },
{
name: {
[Op.or]: filter.mode.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.calendarStart && filter.calendarEnd) {
where = {
...where,
[Op.or]: [
{
period_start_at: {
[Op.between]: [filter.calendarStart, filter.calendarEnd],
},
},
{
period_end_at: {
[Op.between]: [filter.calendarStart, filter.calendarEnd],
},
},
],
};
}
if (filter.rank_positionRange) {
const [start, end] = filter.rank_positionRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
rank_position: {
...where.rank_position,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
rank_position: {
...where.rank_position,
[Op.lte]: end,
},
};
}
}
if (filter.score_valueRange) {
const [start, end] = filter.score_valueRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
score_value: {
...where.score_value,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
score_value: {
...where.score_value,
[Op.lte]: end,
},
};
}
}
if (filter.period_start_atRange) {
const [start, end] = filter.period_start_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
period_start_at: {
...where.period_start_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
period_start_at: {
...where.period_start_at,
[Op.lte]: end,
},
};
}
}
if (filter.period_end_atRange) {
const [start, end] = filter.period_end_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
period_end_at: {
...where.period_end_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
period_end_at: {
...where.period_end_at,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.scope) {
where = {
...where,
scope: filter.scope,
};
}
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.leaderboard_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(
'leaderboard_entries',
'scope',
query,
),
],
};
}
const records = await db.leaderboard_entries.findAll({
attributes: [ 'id', 'scope' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['scope', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.scope,
}));
}
};

View File

@ -0,0 +1,754 @@
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 Match_playersDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const match_players = await db.match_players.create(
{
id: data.id || undefined,
display_name: data.display_name
||
null
,
player_status: data.player_status
||
null
,
score_points: data.score_points
||
null
,
correct_count: data.correct_count
||
null
,
incorrect_count: data.incorrect_count
||
null
,
yux_earned: data.yux_earned
||
null
,
race_distance_km: data.race_distance_km
||
null
,
joined_at: data.joined_at
||
null
,
left_at: data.left_at
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await match_players.setMatch( data.match || null, {
transaction,
});
await match_players.setUser( data.user || null, {
transaction,
});
await match_players.setAvatar_customization( data.avatar_customization || null, {
transaction,
});
return match_players;
}
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 match_playersData = data.map((item, index) => ({
id: item.id || undefined,
display_name: item.display_name
||
null
,
player_status: item.player_status
||
null
,
score_points: item.score_points
||
null
,
correct_count: item.correct_count
||
null
,
incorrect_count: item.incorrect_count
||
null
,
yux_earned: item.yux_earned
||
null
,
race_distance_km: item.race_distance_km
||
null
,
joined_at: item.joined_at
||
null
,
left_at: item.left_at
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const match_players = await db.match_players.bulkCreate(match_playersData, { transaction });
// For each item created, replace relation files
return match_players;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const match_players = await db.match_players.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.display_name !== undefined) updatePayload.display_name = data.display_name;
if (data.player_status !== undefined) updatePayload.player_status = data.player_status;
if (data.score_points !== undefined) updatePayload.score_points = data.score_points;
if (data.correct_count !== undefined) updatePayload.correct_count = data.correct_count;
if (data.incorrect_count !== undefined) updatePayload.incorrect_count = data.incorrect_count;
if (data.yux_earned !== undefined) updatePayload.yux_earned = data.yux_earned;
if (data.race_distance_km !== undefined) updatePayload.race_distance_km = data.race_distance_km;
if (data.joined_at !== undefined) updatePayload.joined_at = data.joined_at;
if (data.left_at !== undefined) updatePayload.left_at = data.left_at;
updatePayload.updatedById = currentUser.id;
await match_players.update(updatePayload, {transaction});
if (data.match !== undefined) {
await match_players.setMatch(
data.match,
{ transaction }
);
}
if (data.user !== undefined) {
await match_players.setUser(
data.user,
{ transaction }
);
}
if (data.avatar_customization !== undefined) {
await match_players.setAvatar_customization(
data.avatar_customization,
{ transaction }
);
}
return match_players;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const match_players = await db.match_players.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of match_players) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of match_players) {
await record.destroy({transaction});
}
});
return match_players;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const match_players = await db.match_players.findByPk(id, options);
await match_players.update({
deletedBy: currentUser.id
}, {
transaction,
});
await match_players.destroy({
transaction
});
return match_players;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const match_players = await db.match_players.findOne(
{ where },
{ transaction },
);
if (!match_players) {
return match_players;
}
const output = match_players.get({plain: true});
output.player_answers_match_player = await match_players.getPlayer_answers_match_player({
transaction
});
output.match = await match_players.getMatch({
transaction
});
output.user = await match_players.getUser({
transaction
});
output.avatar_customization = await match_players.getAvatar_customization({
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.matches,
as: 'match',
where: filter.match ? {
[Op.or]: [
{ id: { [Op.in]: filter.match.split('|').map(term => Utils.uuid(term)) } },
{
game_code: {
[Op.or]: filter.match.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}%` }))
}
},
]
} : {},
},
{
model: db.avatar_customizations,
as: 'avatar_customization',
where: filter.avatar_customization ? {
[Op.or]: [
{ id: { [Op.in]: filter.avatar_customization.split('|').map(term => Utils.uuid(term)) } },
{
profile_name: {
[Op.or]: filter.avatar_customization.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.display_name) {
where = {
...where,
[Op.and]: Utils.ilike(
'match_players',
'display_name',
filter.display_name,
),
};
}
if (filter.score_pointsRange) {
const [start, end] = filter.score_pointsRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
score_points: {
...where.score_points,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
score_points: {
...where.score_points,
[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.incorrect_countRange) {
const [start, end] = filter.incorrect_countRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
incorrect_count: {
...where.incorrect_count,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
incorrect_count: {
...where.incorrect_count,
[Op.lte]: end,
},
};
}
}
if (filter.yux_earnedRange) {
const [start, end] = filter.yux_earnedRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
yux_earned: {
...where.yux_earned,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
yux_earned: {
...where.yux_earned,
[Op.lte]: end,
},
};
}
}
if (filter.race_distance_kmRange) {
const [start, end] = filter.race_distance_kmRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
race_distance_km: {
...where.race_distance_km,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
race_distance_km: {
...where.race_distance_km,
[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.left_atRange) {
const [start, end] = filter.left_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
left_at: {
...where.left_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
left_at: {
...where.left_at,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.player_status) {
where = {
...where,
player_status: filter.player_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.match_players.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(
'match_players',
'display_name',
query,
),
],
};
}
const records = await db.match_players.findAll({
attributes: [ 'id', 'display_name' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['display_name', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.display_name,
}));
}
};

View File

@ -0,0 +1,525 @@
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 Match_questionsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const match_questions = await db.match_questions.create(
{
id: data.id || undefined,
question_index: data.question_index
||
null
,
revealed_at: data.revealed_at
||
null
,
closed_at: data.closed_at
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await match_questions.setMatch( data.match || null, {
transaction,
});
await match_questions.setQuiz_question( data.quiz_question || null, {
transaction,
});
return match_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 match_questionsData = data.map((item, index) => ({
id: item.id || undefined,
question_index: item.question_index
||
null
,
revealed_at: item.revealed_at
||
null
,
closed_at: item.closed_at
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const match_questions = await db.match_questions.bulkCreate(match_questionsData, { transaction });
// For each item created, replace relation files
return match_questions;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const match_questions = await db.match_questions.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.question_index !== undefined) updatePayload.question_index = data.question_index;
if (data.revealed_at !== undefined) updatePayload.revealed_at = data.revealed_at;
if (data.closed_at !== undefined) updatePayload.closed_at = data.closed_at;
updatePayload.updatedById = currentUser.id;
await match_questions.update(updatePayload, {transaction});
if (data.match !== undefined) {
await match_questions.setMatch(
data.match,
{ transaction }
);
}
if (data.quiz_question !== undefined) {
await match_questions.setQuiz_question(
data.quiz_question,
{ transaction }
);
}
return match_questions;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const match_questions = await db.match_questions.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of match_questions) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of match_questions) {
await record.destroy({transaction});
}
});
return match_questions;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const match_questions = await db.match_questions.findByPk(id, options);
await match_questions.update({
deletedBy: currentUser.id
}, {
transaction,
});
await match_questions.destroy({
transaction
});
return match_questions;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const match_questions = await db.match_questions.findOne(
{ where },
{ transaction },
);
if (!match_questions) {
return match_questions;
}
const output = match_questions.get({plain: true});
output.player_answers_match_question = await match_questions.getPlayer_answers_match_question({
transaction
});
output.match = await match_questions.getMatch({
transaction
});
output.quiz_question = await match_questions.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.matches,
as: 'match',
where: filter.match ? {
[Op.or]: [
{ id: { [Op.in]: filter.match.split('|').map(term => Utils.uuid(term)) } },
{
game_code: {
[Op.or]: filter.match.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
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.question_indexRange) {
const [start, end] = filter.question_indexRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
question_index: {
...where.question_index,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
question_index: {
...where.question_index,
[Op.lte]: end,
},
};
}
}
if (filter.revealed_atRange) {
const [start, end] = filter.revealed_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
revealed_at: {
...where.revealed_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
revealed_at: {
...where.revealed_at,
[Op.lte]: end,
},
};
}
}
if (filter.closed_atRange) {
const [start, end] = filter.closed_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
closed_at: {
...where.closed_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
closed_at: {
...where.closed_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.match_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(
'match_questions',
'question_index',
query,
),
],
};
}
const records = await db.match_questions.findAll({
attributes: [ 'id', 'question_index' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['question_index', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.question_index,
}));
}
};

View File

@ -0,0 +1,885 @@
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 MatchesDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const matches = await db.matches.create(
{
id: data.id || undefined,
game_code: data.game_code
||
null
,
status: data.status
||
null
,
is_locked: data.is_locked
||
false
,
max_players: data.max_players
||
null
,
question_count: data.question_count
||
null
,
randomize_questions: data.randomize_questions
||
false
,
randomize_answers: data.randomize_answers
||
false
,
wheel_event_every_n_questions: data.wheel_event_every_n_questions
||
null
,
cat_interaction_every_n_questions: data.cat_interaction_every_n_questions
||
null
,
starting_speed_kmh: data.starting_speed_kmh
||
null
,
race_map: data.race_map
||
null
,
scheduled_start_at: data.scheduled_start_at
||
null
,
started_at: data.started_at
||
null
,
ended_at: data.ended_at
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await matches.setHost( data.host || null, {
transaction,
});
await matches.setMode( data.mode || null, {
transaction,
});
await matches.setQuiz( data.quiz || null, {
transaction,
});
return matches;
}
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 matchesData = data.map((item, index) => ({
id: item.id || undefined,
game_code: item.game_code
||
null
,
status: item.status
||
null
,
is_locked: item.is_locked
||
false
,
max_players: item.max_players
||
null
,
question_count: item.question_count
||
null
,
randomize_questions: item.randomize_questions
||
false
,
randomize_answers: item.randomize_answers
||
false
,
wheel_event_every_n_questions: item.wheel_event_every_n_questions
||
null
,
cat_interaction_every_n_questions: item.cat_interaction_every_n_questions
||
null
,
starting_speed_kmh: item.starting_speed_kmh
||
null
,
race_map: item.race_map
||
null
,
scheduled_start_at: item.scheduled_start_at
||
null
,
started_at: item.started_at
||
null
,
ended_at: item.ended_at
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const matches = await db.matches.bulkCreate(matchesData, { transaction });
// For each item created, replace relation files
return matches;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const matches = await db.matches.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.game_code !== undefined) updatePayload.game_code = data.game_code;
if (data.status !== undefined) updatePayload.status = data.status;
if (data.is_locked !== undefined) updatePayload.is_locked = data.is_locked;
if (data.max_players !== undefined) updatePayload.max_players = data.max_players;
if (data.question_count !== undefined) updatePayload.question_count = data.question_count;
if (data.randomize_questions !== undefined) updatePayload.randomize_questions = data.randomize_questions;
if (data.randomize_answers !== undefined) updatePayload.randomize_answers = data.randomize_answers;
if (data.wheel_event_every_n_questions !== undefined) updatePayload.wheel_event_every_n_questions = data.wheel_event_every_n_questions;
if (data.cat_interaction_every_n_questions !== undefined) updatePayload.cat_interaction_every_n_questions = data.cat_interaction_every_n_questions;
if (data.starting_speed_kmh !== undefined) updatePayload.starting_speed_kmh = data.starting_speed_kmh;
if (data.race_map !== undefined) updatePayload.race_map = data.race_map;
if (data.scheduled_start_at !== undefined) updatePayload.scheduled_start_at = data.scheduled_start_at;
if (data.started_at !== undefined) updatePayload.started_at = data.started_at;
if (data.ended_at !== undefined) updatePayload.ended_at = data.ended_at;
updatePayload.updatedById = currentUser.id;
await matches.update(updatePayload, {transaction});
if (data.host !== undefined) {
await matches.setHost(
data.host,
{ transaction }
);
}
if (data.mode !== undefined) {
await matches.setMode(
data.mode,
{ transaction }
);
}
if (data.quiz !== undefined) {
await matches.setQuiz(
data.quiz,
{ transaction }
);
}
return matches;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const matches = await db.matches.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of matches) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of matches) {
await record.destroy({transaction});
}
});
return matches;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const matches = await db.matches.findByPk(id, options);
await matches.update({
deletedBy: currentUser.id
}, {
transaction,
});
await matches.destroy({
transaction
});
return matches;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const matches = await db.matches.findOne(
{ where },
{ transaction },
);
if (!matches) {
return matches;
}
const output = matches.get({plain: true});
output.match_players_match = await matches.getMatch_players_match({
transaction
});
output.match_questions_match = await matches.getMatch_questions_match({
transaction
});
output.wheel_events_match = await matches.getWheel_events_match({
transaction
});
output.host = await matches.getHost({
transaction
});
output.mode = await matches.getMode({
transaction
});
output.quiz = await matches.getQuiz({
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: 'host',
where: filter.host ? {
[Op.or]: [
{ id: { [Op.in]: filter.host.split('|').map(term => Utils.uuid(term)) } },
{
firstName: {
[Op.or]: filter.host.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.game_modes,
as: 'mode',
where: filter.mode ? {
[Op.or]: [
{ id: { [Op.in]: filter.mode.split('|').map(term => Utils.uuid(term)) } },
{
name: {
[Op.or]: filter.mode.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.quizzes,
as: 'quiz',
where: filter.quiz ? {
[Op.or]: [
{ id: { [Op.in]: filter.quiz.split('|').map(term => Utils.uuid(term)) } },
{
title: {
[Op.or]: filter.quiz.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.game_code) {
where = {
...where,
[Op.and]: Utils.ilike(
'matches',
'game_code',
filter.game_code,
),
};
}
if (filter.max_playersRange) {
const [start, end] = filter.max_playersRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
max_players: {
...where.max_players,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
max_players: {
...where.max_players,
[Op.lte]: end,
},
};
}
}
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.wheel_event_every_n_questionsRange) {
const [start, end] = filter.wheel_event_every_n_questionsRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
wheel_event_every_n_questions: {
...where.wheel_event_every_n_questions,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
wheel_event_every_n_questions: {
...where.wheel_event_every_n_questions,
[Op.lte]: end,
},
};
}
}
if (filter.cat_interaction_every_n_questionsRange) {
const [start, end] = filter.cat_interaction_every_n_questionsRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
cat_interaction_every_n_questions: {
...where.cat_interaction_every_n_questions,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
cat_interaction_every_n_questions: {
...where.cat_interaction_every_n_questions,
[Op.lte]: end,
},
};
}
}
if (filter.starting_speed_kmhRange) {
const [start, end] = filter.starting_speed_kmhRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
starting_speed_kmh: {
...where.starting_speed_kmh,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
starting_speed_kmh: {
...where.starting_speed_kmh,
[Op.lte]: end,
},
};
}
}
if (filter.scheduled_start_atRange) {
const [start, end] = filter.scheduled_start_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
scheduled_start_at: {
...where.scheduled_start_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
scheduled_start_at: {
...where.scheduled_start_at,
[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.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.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.status) {
where = {
...where,
status: filter.status,
};
}
if (filter.is_locked) {
where = {
...where,
is_locked: filter.is_locked,
};
}
if (filter.randomize_questions) {
where = {
...where,
randomize_questions: filter.randomize_questions,
};
}
if (filter.randomize_answers) {
where = {
...where,
randomize_answers: filter.randomize_answers,
};
}
if (filter.race_map) {
where = {
...where,
race_map: filter.race_map,
};
}
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.matches.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(
'matches',
'game_code',
query,
),
],
};
}
const records = await db.matches.findAll({
attributes: [ 'id', 'game_code' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['game_code', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.game_code,
}));
}
};

View File

@ -0,0 +1,511 @@
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 Moderation_reportsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const moderation_reports = await db.moderation_reports.create(
{
id: data.id || undefined,
target_type: data.target_type
||
null
,
reason: data.reason
||
null
,
status: data.status
||
null
,
reported_at: data.reported_at
||
null
,
resolved_at: data.resolved_at
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await moderation_reports.setReporter( data.reporter || null, {
transaction,
});
return moderation_reports;
}
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 moderation_reportsData = data.map((item, index) => ({
id: item.id || undefined,
target_type: item.target_type
||
null
,
reason: item.reason
||
null
,
status: item.status
||
null
,
reported_at: item.reported_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 moderation_reports = await db.moderation_reports.bulkCreate(moderation_reportsData, { transaction });
// For each item created, replace relation files
return moderation_reports;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const moderation_reports = await db.moderation_reports.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.target_type !== undefined) updatePayload.target_type = data.target_type;
if (data.reason !== undefined) updatePayload.reason = data.reason;
if (data.status !== undefined) updatePayload.status = data.status;
if (data.reported_at !== undefined) updatePayload.reported_at = data.reported_at;
if (data.resolved_at !== undefined) updatePayload.resolved_at = data.resolved_at;
updatePayload.updatedById = currentUser.id;
await moderation_reports.update(updatePayload, {transaction});
if (data.reporter !== undefined) {
await moderation_reports.setReporter(
data.reporter,
{ transaction }
);
}
return moderation_reports;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const moderation_reports = await db.moderation_reports.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of moderation_reports) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of moderation_reports) {
await record.destroy({transaction});
}
});
return moderation_reports;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const moderation_reports = await db.moderation_reports.findByPk(id, options);
await moderation_reports.update({
deletedBy: currentUser.id
}, {
transaction,
});
await moderation_reports.destroy({
transaction
});
return moderation_reports;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const moderation_reports = await db.moderation_reports.findOne(
{ where },
{ transaction },
);
if (!moderation_reports) {
return moderation_reports;
}
const output = moderation_reports.get({plain: true});
output.reporter = await moderation_reports.getReporter({
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: 'reporter',
where: filter.reporter ? {
[Op.or]: [
{ id: { [Op.in]: filter.reporter.split('|').map(term => Utils.uuid(term)) } },
{
firstName: {
[Op.or]: filter.reporter.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(
'moderation_reports',
'reason',
filter.reason,
),
};
}
if (filter.reported_atRange) {
const [start, end] = filter.reported_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
reported_at: {
...where.reported_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
reported_at: {
...where.reported_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.target_type) {
where = {
...where,
target_type: filter.target_type,
};
}
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.moderation_reports.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(
'moderation_reports',
'status',
query,
),
],
};
}
const records = await db.moderation_reports.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,540 @@
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 Music_playlistsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const music_playlists = await db.music_playlists.create(
{
id: data.id || undefined,
name: data.name
||
null
,
playlist_type: data.playlist_type
||
null
,
auto_activate: data.auto_activate
||
false
,
active_from: data.active_from
||
null
,
active_to: data.active_to
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.music_playlists.getTableName(),
belongsToColumn: 'cover_images',
belongsToId: music_playlists.id,
},
data.cover_images,
options,
);
return music_playlists;
}
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 music_playlistsData = data.map((item, index) => ({
id: item.id || undefined,
name: item.name
||
null
,
playlist_type: item.playlist_type
||
null
,
auto_activate: item.auto_activate
||
false
,
active_from: item.active_from
||
null
,
active_to: item.active_to
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const music_playlists = await db.music_playlists.bulkCreate(music_playlistsData, { transaction });
// For each item created, replace relation files
for (let i = 0; i < music_playlists.length; i++) {
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.music_playlists.getTableName(),
belongsToColumn: 'cover_images',
belongsToId: music_playlists[i].id,
},
data[i].cover_images,
options,
);
}
return music_playlists;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const music_playlists = await db.music_playlists.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.name !== undefined) updatePayload.name = data.name;
if (data.playlist_type !== undefined) updatePayload.playlist_type = data.playlist_type;
if (data.auto_activate !== undefined) updatePayload.auto_activate = data.auto_activate;
if (data.active_from !== undefined) updatePayload.active_from = data.active_from;
if (data.active_to !== undefined) updatePayload.active_to = data.active_to;
updatePayload.updatedById = currentUser.id;
await music_playlists.update(updatePayload, {transaction});
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.music_playlists.getTableName(),
belongsToColumn: 'cover_images',
belongsToId: music_playlists.id,
},
data.cover_images,
options,
);
return music_playlists;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const music_playlists = await db.music_playlists.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of music_playlists) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of music_playlists) {
await record.destroy({transaction});
}
});
return music_playlists;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const music_playlists = await db.music_playlists.findByPk(id, options);
await music_playlists.update({
deletedBy: currentUser.id
}, {
transaction,
});
await music_playlists.destroy({
transaction
});
return music_playlists;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const music_playlists = await db.music_playlists.findOne(
{ where },
{ transaction },
);
if (!music_playlists) {
return music_playlists;
}
const output = music_playlists.get({plain: true});
output.music_tracks_playlist = await music_playlists.getMusic_tracks_playlist({
transaction
});
output.cover_images = await music_playlists.getCover_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: 'cover_images',
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.name) {
where = {
...where,
[Op.and]: Utils.ilike(
'music_playlists',
'name',
filter.name,
),
};
}
if (filter.calendarStart && filter.calendarEnd) {
where = {
...where,
[Op.or]: [
{
active_from: {
[Op.between]: [filter.calendarStart, filter.calendarEnd],
},
},
{
active_to: {
[Op.between]: [filter.calendarStart, filter.calendarEnd],
},
},
],
};
}
if (filter.active_fromRange) {
const [start, end] = filter.active_fromRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
active_from: {
...where.active_from,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
active_from: {
...where.active_from,
[Op.lte]: end,
},
};
}
}
if (filter.active_toRange) {
const [start, end] = filter.active_toRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
active_to: {
...where.active_to,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
active_to: {
...where.active_to,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.playlist_type) {
where = {
...where,
playlist_type: filter.playlist_type,
};
}
if (filter.auto_activate) {
where = {
...where,
auto_activate: filter.auto_activate,
};
}
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.music_playlists.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(
'music_playlists',
'name',
query,
),
],
};
}
const records = await db.music_playlists.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,513 @@
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 Music_tracksDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const music_tracks = await db.music_tracks.create(
{
id: data.id || undefined,
name: data.name
||
null
,
duration_seconds: data.duration_seconds
||
null
,
order_index: data.order_index
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await music_tracks.setPlaylist( data.playlist || null, {
transaction,
});
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.music_tracks.getTableName(),
belongsToColumn: 'audio_files',
belongsToId: music_tracks.id,
},
data.audio_files,
options,
);
return music_tracks;
}
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 music_tracksData = data.map((item, index) => ({
id: item.id || undefined,
name: item.name
||
null
,
duration_seconds: item.duration_seconds
||
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 music_tracks = await db.music_tracks.bulkCreate(music_tracksData, { transaction });
// For each item created, replace relation files
for (let i = 0; i < music_tracks.length; i++) {
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.music_tracks.getTableName(),
belongsToColumn: 'audio_files',
belongsToId: music_tracks[i].id,
},
data[i].audio_files,
options,
);
}
return music_tracks;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const music_tracks = await db.music_tracks.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.name !== undefined) updatePayload.name = data.name;
if (data.duration_seconds !== undefined) updatePayload.duration_seconds = data.duration_seconds;
if (data.order_index !== undefined) updatePayload.order_index = data.order_index;
updatePayload.updatedById = currentUser.id;
await music_tracks.update(updatePayload, {transaction});
if (data.playlist !== undefined) {
await music_tracks.setPlaylist(
data.playlist,
{ transaction }
);
}
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.music_tracks.getTableName(),
belongsToColumn: 'audio_files',
belongsToId: music_tracks.id,
},
data.audio_files,
options,
);
return music_tracks;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const music_tracks = await db.music_tracks.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of music_tracks) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of music_tracks) {
await record.destroy({transaction});
}
});
return music_tracks;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const music_tracks = await db.music_tracks.findByPk(id, options);
await music_tracks.update({
deletedBy: currentUser.id
}, {
transaction,
});
await music_tracks.destroy({
transaction
});
return music_tracks;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const music_tracks = await db.music_tracks.findOne(
{ where },
{ transaction },
);
if (!music_tracks) {
return music_tracks;
}
const output = music_tracks.get({plain: true});
output.playlist = await music_tracks.getPlaylist({
transaction
});
output.audio_files = await music_tracks.getAudio_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.music_playlists,
as: 'playlist',
where: filter.playlist ? {
[Op.or]: [
{ id: { [Op.in]: filter.playlist.split('|').map(term => Utils.uuid(term)) } },
{
name: {
[Op.or]: filter.playlist.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.file,
as: 'audio_files',
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.name) {
where = {
...where,
[Op.and]: Utils.ilike(
'music_tracks',
'name',
filter.name,
),
};
}
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.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.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.music_tracks.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(
'music_tracks',
'name',
query,
),
],
};
}
const records = await db.music_tracks.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,669 @@
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 Orbix_quiz_assistant_sessionsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const orbix_quiz_assistant_sessions = await db.orbix_quiz_assistant_sessions.create(
{
id: data.id || undefined,
topic: data.topic
||
null
,
target_question_count: data.target_question_count
||
null
,
age_group: data.age_group
||
null
,
difficulty: data.difficulty
||
null
,
include_images: data.include_images
||
false
,
status: data.status
||
null
,
notes: data.notes
||
null
,
started_at: data.started_at
||
null
,
finished_at: data.finished_at
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await orbix_quiz_assistant_sessions.setUser( data.user || null, {
transaction,
});
await orbix_quiz_assistant_sessions.setGenerated_quiz( data.generated_quiz || null, {
transaction,
});
return orbix_quiz_assistant_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 orbix_quiz_assistant_sessionsData = data.map((item, index) => ({
id: item.id || undefined,
topic: item.topic
||
null
,
target_question_count: item.target_question_count
||
null
,
age_group: item.age_group
||
null
,
difficulty: item.difficulty
||
null
,
include_images: item.include_images
||
false
,
status: item.status
||
null
,
notes: item.notes
||
null
,
started_at: item.started_at
||
null
,
finished_at: item.finished_at
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const orbix_quiz_assistant_sessions = await db.orbix_quiz_assistant_sessions.bulkCreate(orbix_quiz_assistant_sessionsData, { transaction });
// For each item created, replace relation files
return orbix_quiz_assistant_sessions;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const orbix_quiz_assistant_sessions = await db.orbix_quiz_assistant_sessions.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.topic !== undefined) updatePayload.topic = data.topic;
if (data.target_question_count !== undefined) updatePayload.target_question_count = data.target_question_count;
if (data.age_group !== undefined) updatePayload.age_group = data.age_group;
if (data.difficulty !== undefined) updatePayload.difficulty = data.difficulty;
if (data.include_images !== undefined) updatePayload.include_images = data.include_images;
if (data.status !== undefined) updatePayload.status = data.status;
if (data.notes !== undefined) updatePayload.notes = data.notes;
if (data.started_at !== undefined) updatePayload.started_at = data.started_at;
if (data.finished_at !== undefined) updatePayload.finished_at = data.finished_at;
updatePayload.updatedById = currentUser.id;
await orbix_quiz_assistant_sessions.update(updatePayload, {transaction});
if (data.user !== undefined) {
await orbix_quiz_assistant_sessions.setUser(
data.user,
{ transaction }
);
}
if (data.generated_quiz !== undefined) {
await orbix_quiz_assistant_sessions.setGenerated_quiz(
data.generated_quiz,
{ transaction }
);
}
return orbix_quiz_assistant_sessions;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const orbix_quiz_assistant_sessions = await db.orbix_quiz_assistant_sessions.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of orbix_quiz_assistant_sessions) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of orbix_quiz_assistant_sessions) {
await record.destroy({transaction});
}
});
return orbix_quiz_assistant_sessions;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const orbix_quiz_assistant_sessions = await db.orbix_quiz_assistant_sessions.findByPk(id, options);
await orbix_quiz_assistant_sessions.update({
deletedBy: currentUser.id
}, {
transaction,
});
await orbix_quiz_assistant_sessions.destroy({
transaction
});
return orbix_quiz_assistant_sessions;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const orbix_quiz_assistant_sessions = await db.orbix_quiz_assistant_sessions.findOne(
{ where },
{ transaction },
);
if (!orbix_quiz_assistant_sessions) {
return orbix_quiz_assistant_sessions;
}
const output = orbix_quiz_assistant_sessions.get({plain: true});
output.user = await orbix_quiz_assistant_sessions.getUser({
transaction
});
output.generated_quiz = await orbix_quiz_assistant_sessions.getGenerated_quiz({
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.quizzes,
as: 'generated_quiz',
where: filter.generated_quiz ? {
[Op.or]: [
{ id: { [Op.in]: filter.generated_quiz.split('|').map(term => Utils.uuid(term)) } },
{
title: {
[Op.or]: filter.generated_quiz.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.topic) {
where = {
...where,
[Op.and]: Utils.ilike(
'orbix_quiz_assistant_sessions',
'topic',
filter.topic,
),
};
}
if (filter.notes) {
where = {
...where,
[Op.and]: Utils.ilike(
'orbix_quiz_assistant_sessions',
'notes',
filter.notes,
),
};
}
if (filter.calendarStart && filter.calendarEnd) {
where = {
...where,
[Op.or]: [
{
started_at: {
[Op.between]: [filter.calendarStart, filter.calendarEnd],
},
},
{
finished_at: {
[Op.between]: [filter.calendarStart, filter.calendarEnd],
},
},
],
};
}
if (filter.target_question_countRange) {
const [start, end] = filter.target_question_countRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
target_question_count: {
...where.target_question_count,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
target_question_count: {
...where.target_question_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.finished_atRange) {
const [start, end] = filter.finished_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
finished_at: {
...where.finished_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
finished_at: {
...where.finished_at,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.age_group) {
where = {
...where,
age_group: filter.age_group,
};
}
if (filter.difficulty) {
where = {
...where,
difficulty: filter.difficulty,
};
}
if (filter.include_images) {
where = {
...where,
include_images: filter.include_images,
};
}
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.orbix_quiz_assistant_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(
'orbix_quiz_assistant_sessions',
'topic',
query,
),
],
};
}
const records = await db.orbix_quiz_assistant_sessions.findAll({
attributes: [ 'id', 'topic' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['topic', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.topic,
}));
}
};

View File

@ -0,0 +1,360 @@
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,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 Player_answersDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const player_answers = await db.player_answers.create(
{
id: data.id || undefined,
is_correct: data.is_correct
||
false
,
points_awarded: data.points_awarded
||
null
,
answer_time_ms: data.answer_time_ms
||
null
,
answered_at: data.answered_at
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await player_answers.setMatch_player( data.match_player || null, {
transaction,
});
await player_answers.setMatch_question( data.match_question || null, {
transaction,
});
await player_answers.setSelected_answer( data.selected_answer || null, {
transaction,
});
return player_answers;
}
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 player_answersData = data.map((item, index) => ({
id: item.id || undefined,
is_correct: item.is_correct
||
false
,
points_awarded: item.points_awarded
||
null
,
answer_time_ms: item.answer_time_ms
||
null
,
answered_at: item.answered_at
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const player_answers = await db.player_answers.bulkCreate(player_answersData, { transaction });
// For each item created, replace relation files
return player_answers;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const player_answers = await db.player_answers.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.is_correct !== undefined) updatePayload.is_correct = data.is_correct;
if (data.points_awarded !== undefined) updatePayload.points_awarded = data.points_awarded;
if (data.answer_time_ms !== undefined) updatePayload.answer_time_ms = data.answer_time_ms;
if (data.answered_at !== undefined) updatePayload.answered_at = data.answered_at;
updatePayload.updatedById = currentUser.id;
await player_answers.update(updatePayload, {transaction});
if (data.match_player !== undefined) {
await player_answers.setMatch_player(
data.match_player,
{ transaction }
);
}
if (data.match_question !== undefined) {
await player_answers.setMatch_question(
data.match_question,
{ transaction }
);
}
if (data.selected_answer !== undefined) {
await player_answers.setSelected_answer(
data.selected_answer,
{ transaction }
);
}
return player_answers;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const player_answers = await db.player_answers.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of player_answers) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of player_answers) {
await record.destroy({transaction});
}
});
return player_answers;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const player_answers = await db.player_answers.findByPk(id, options);
await player_answers.update({
deletedBy: currentUser.id
}, {
transaction,
});
await player_answers.destroy({
transaction
});
return player_answers;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const player_answers = await db.player_answers.findOne(
{ where },
{ transaction },
);
if (!player_answers) {
return player_answers;
}
const output = player_answers.get({plain: true});
output.match_player = await player_answers.getMatch_player({
transaction
});
output.match_question = await player_answers.getMatch_question({
transaction
});
output.selected_answer = await player_answers.getSelected_answer({
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.match_players,
as: 'match_player',
where: filter.match_player ? {
[Op.or]: [
{ id: { [Op.in]: filter.match_player.split('|').map(term => Utils.uuid(term)) } },
{
display_name: {
[Op.or]: filter.match_player.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.match_questions,
as: 'match_question',
where: filter.match_question ? {
[Op.or]: [
{ id: { [Op.in]: filter.match_question.split('|').map(term => Utils.uuid(term)) } },
{
question_index: {
[Op.or]: filter.match_question.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.question_answers,
as: 'selected_answer',
where: filter.selected_answer ? {
[Op.or]: [
{ id: { [Op.in]: filter.selected_answer.split('|').map(term => Utils.uuid(term)) } },
{
answer_text: {
[Op.or]: filter.selected_answer.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.points_awardedRange) {
const [start, end] = filter.points_awardedRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
points_awarded: {
...where.points_awarded,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
points_awarded: {
...where.points_awarded,
[Op.lte]: end,
},
};
}
}
if (filter.answer_time_msRange) {
const [start, end] = filter.answer_time_msRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
answer_time_ms: {
...where.answer_time_ms,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
answer_time_ms: {
...where.answer_time_ms,
[Op.lte]: end,
},
};
}
}
if (filter.answered_atRange) {
const [start, end] = filter.answered_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
answered_at: {
...where.answered_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
answered_at: {
...where.answered_at,
[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.player_answers.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(
'player_answers',
'answered_at',
query,
),
],
};
}
const records = await db.player_answers.findAll({
attributes: [ 'id', 'answered_at' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['answered_at', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.answered_at,
}));
}
};

View File

@ -0,0 +1,541 @@
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 PurchasesDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const purchases = await db.purchases.create(
{
id: data.id || undefined,
purchase_type: data.purchase_type
||
null
,
amount_yux: data.amount_yux
||
null
,
purchased_at: data.purchased_at
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await purchases.setUser( data.user || null, {
transaction,
});
await purchases.setBox( data.box || null, {
transaction,
});
await purchases.setCosmetic( data.cosmetic || null, {
transaction,
});
return purchases;
}
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 purchasesData = data.map((item, index) => ({
id: item.id || undefined,
purchase_type: item.purchase_type
||
null
,
amount_yux: item.amount_yux
||
null
,
purchased_at: item.purchased_at
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const purchases = await db.purchases.bulkCreate(purchasesData, { transaction });
// For each item created, replace relation files
return purchases;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const purchases = await db.purchases.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.purchase_type !== undefined) updatePayload.purchase_type = data.purchase_type;
if (data.amount_yux !== undefined) updatePayload.amount_yux = data.amount_yux;
if (data.purchased_at !== undefined) updatePayload.purchased_at = data.purchased_at;
updatePayload.updatedById = currentUser.id;
await purchases.update(updatePayload, {transaction});
if (data.user !== undefined) {
await purchases.setUser(
data.user,
{ transaction }
);
}
if (data.box !== undefined) {
await purchases.setBox(
data.box,
{ transaction }
);
}
if (data.cosmetic !== undefined) {
await purchases.setCosmetic(
data.cosmetic,
{ transaction }
);
}
return purchases;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const purchases = await db.purchases.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of purchases) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of purchases) {
await record.destroy({transaction});
}
});
return purchases;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const purchases = await db.purchases.findByPk(id, options);
await purchases.update({
deletedBy: currentUser.id
}, {
transaction,
});
await purchases.destroy({
transaction
});
return purchases;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const purchases = await db.purchases.findOne(
{ where },
{ transaction },
);
if (!purchases) {
return purchases;
}
const output = purchases.get({plain: true});
output.user = await purchases.getUser({
transaction
});
output.box = await purchases.getBox({
transaction
});
output.cosmetic = await purchases.getCosmetic({
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.boxes,
as: 'box',
where: filter.box ? {
[Op.or]: [
{ id: { [Op.in]: filter.box.split('|').map(term => Utils.uuid(term)) } },
{
name: {
[Op.or]: filter.box.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.cosmetics,
as: 'cosmetic',
where: filter.cosmetic ? {
[Op.or]: [
{ id: { [Op.in]: filter.cosmetic.split('|').map(term => Utils.uuid(term)) } },
{
name: {
[Op.or]: filter.cosmetic.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.amount_yuxRange) {
const [start, end] = filter.amount_yuxRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
amount_yux: {
...where.amount_yux,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
amount_yux: {
...where.amount_yux,
[Op.lte]: end,
},
};
}
}
if (filter.purchased_atRange) {
const [start, end] = filter.purchased_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
purchased_at: {
...where.purchased_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
purchased_at: {
...where.purchased_at,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.purchase_type) {
where = {
...where,
purchase_type: filter.purchase_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.purchases.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(
'purchases',
'purchase_type',
query,
),
],
};
}
const records = await db.purchases.findAll({
attributes: [ 'id', 'purchase_type' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['purchase_type', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.purchase_type,
}));
}
};

View File

@ -0,0 +1,502 @@
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 Question_answersDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const question_answers = await db.question_answers.create(
{
id: data.id || undefined,
answer_text: data.answer_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 question_answers.setQuestion( data.question || null, {
transaction,
});
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.question_answers.getTableName(),
belongsToColumn: 'answer_images',
belongsToId: question_answers.id,
},
data.answer_images,
options,
);
return question_answers;
}
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 question_answersData = data.map((item, index) => ({
id: item.id || undefined,
answer_text: item.answer_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 question_answers = await db.question_answers.bulkCreate(question_answersData, { transaction });
// For each item created, replace relation files
for (let i = 0; i < question_answers.length; i++) {
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.question_answers.getTableName(),
belongsToColumn: 'answer_images',
belongsToId: question_answers[i].id,
},
data[i].answer_images,
options,
);
}
return question_answers;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const question_answers = await db.question_answers.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.answer_text !== undefined) updatePayload.answer_text = data.answer_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 question_answers.update(updatePayload, {transaction});
if (data.question !== undefined) {
await question_answers.setQuestion(
data.question,
{ transaction }
);
}
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.question_answers.getTableName(),
belongsToColumn: 'answer_images',
belongsToId: question_answers.id,
},
data.answer_images,
options,
);
return question_answers;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const question_answers = await db.question_answers.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of question_answers) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of question_answers) {
await record.destroy({transaction});
}
});
return question_answers;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const question_answers = await db.question_answers.findByPk(id, options);
await question_answers.update({
deletedBy: currentUser.id
}, {
transaction,
});
await question_answers.destroy({
transaction
});
return question_answers;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const question_answers = await db.question_answers.findOne(
{ where },
{ transaction },
);
if (!question_answers) {
return question_answers;
}
const output = question_answers.get({plain: true});
output.player_answers_selected_answer = await question_answers.getPlayer_answers_selected_answer({
transaction
});
output.question = await question_answers.getQuestion({
transaction
});
output.answer_images = await question_answers.getAnswer_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.quiz_questions,
as: 'question',
where: filter.question ? {
[Op.or]: [
{ id: { [Op.in]: filter.question.split('|').map(term => Utils.uuid(term)) } },
{
prompt: {
[Op.or]: filter.question.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.file,
as: 'answer_images',
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.answer_text) {
where = {
...where,
[Op.and]: Utils.ilike(
'question_answers',
'answer_text',
filter.answer_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.question_answers.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(
'question_answers',
'answer_text',
query,
),
],
};
}
const records = await db.question_answers.findAll({
attributes: [ 'id', 'answer_text' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['answer_text', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.answer_text,
}));
}
};

View File

@ -0,0 +1,578 @@
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
,
time_limit_seconds: data.time_limit_seconds
||
null
,
points: data.points
||
null
,
question_type: data.question_type
||
null
,
order_index: data.order_index
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await quiz_questions.setQuiz( data.quiz || null, {
transaction,
});
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.quiz_questions.getTableName(),
belongsToColumn: 'prompt_images',
belongsToId: quiz_questions.id,
},
data.prompt_images,
options,
);
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
,
time_limit_seconds: item.time_limit_seconds
||
null
,
points: item.points
||
null
,
question_type: item.question_type
||
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
for (let i = 0; i < quiz_questions.length; i++) {
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.quiz_questions.getTableName(),
belongsToColumn: 'prompt_images',
belongsToId: quiz_questions[i].id,
},
data[i].prompt_images,
options,
);
}
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.time_limit_seconds !== undefined) updatePayload.time_limit_seconds = data.time_limit_seconds;
if (data.points !== undefined) updatePayload.points = data.points;
if (data.question_type !== undefined) updatePayload.question_type = data.question_type;
if (data.order_index !== undefined) updatePayload.order_index = data.order_index;
updatePayload.updatedById = currentUser.id;
await quiz_questions.update(updatePayload, {transaction});
if (data.quiz !== undefined) {
await quiz_questions.setQuiz(
data.quiz,
{ transaction }
);
}
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.quiz_questions.getTableName(),
belongsToColumn: 'prompt_images',
belongsToId: quiz_questions.id,
},
data.prompt_images,
options,
);
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.question_answers_question = await quiz_questions.getQuestion_answers_question({
transaction
});
output.match_questions_quiz_question = await quiz_questions.getMatch_questions_quiz_question({
transaction
});
output.quiz = await quiz_questions.getQuiz({
transaction
});
output.prompt_images = await quiz_questions.getPrompt_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.quizzes,
as: 'quiz',
where: filter.quiz ? {
[Op.or]: [
{ id: { [Op.in]: filter.quiz.split('|').map(term => Utils.uuid(term)) } },
{
title: {
[Op.or]: filter.quiz.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.file,
as: 'prompt_images',
},
];
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.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.pointsRange) {
const [start, end] = filter.pointsRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
points: {
...where.points,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
points: {
...where.points,
[Op.lte]: end,
},
};
}
}
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,410 @@
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_tag_linksDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const quiz_tag_links = await db.quiz_tag_links.create(
{
id: data.id || undefined,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await quiz_tag_links.setQuiz( data.quiz || null, {
transaction,
});
await quiz_tag_links.setTag( data.tag || null, {
transaction,
});
return quiz_tag_links;
}
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_tag_linksData = data.map((item, index) => ({
id: item.id || undefined,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const quiz_tag_links = await db.quiz_tag_links.bulkCreate(quiz_tag_linksData, { transaction });
// For each item created, replace relation files
return quiz_tag_links;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const quiz_tag_links = await db.quiz_tag_links.findByPk(id, {}, {transaction});
const updatePayload = {};
updatePayload.updatedById = currentUser.id;
await quiz_tag_links.update(updatePayload, {transaction});
if (data.quiz !== undefined) {
await quiz_tag_links.setQuiz(
data.quiz,
{ transaction }
);
}
if (data.tag !== undefined) {
await quiz_tag_links.setTag(
data.tag,
{ transaction }
);
}
return quiz_tag_links;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const quiz_tag_links = await db.quiz_tag_links.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of quiz_tag_links) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of quiz_tag_links) {
await record.destroy({transaction});
}
});
return quiz_tag_links;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const quiz_tag_links = await db.quiz_tag_links.findByPk(id, options);
await quiz_tag_links.update({
deletedBy: currentUser.id
}, {
transaction,
});
await quiz_tag_links.destroy({
transaction
});
return quiz_tag_links;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const quiz_tag_links = await db.quiz_tag_links.findOne(
{ where },
{ transaction },
);
if (!quiz_tag_links) {
return quiz_tag_links;
}
const output = quiz_tag_links.get({plain: true});
output.quiz = await quiz_tag_links.getQuiz({
transaction
});
output.tag = await quiz_tag_links.getTag({
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.quizzes,
as: 'quiz',
where: filter.quiz ? {
[Op.or]: [
{ id: { [Op.in]: filter.quiz.split('|').map(term => Utils.uuid(term)) } },
{
title: {
[Op.or]: filter.quiz.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.quiz_tags,
as: 'tag',
where: filter.tag ? {
[Op.or]: [
{ id: { [Op.in]: filter.tag.split('|').map(term => Utils.uuid(term)) } },
{
name: {
[Op.or]: filter.tag.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
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.quiz_tag_links.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_tag_links',
'quiz',
query,
),
],
};
}
const records = await db.quiz_tag_links.findAll({
attributes: [ 'id', 'quiz' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['quiz', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.quiz,
}));
}
};

View File

@ -0,0 +1,406 @@
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_tagsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const quiz_tags = await db.quiz_tags.create(
{
id: data.id || undefined,
name: data.name
||
null
,
tag_type: data.tag_type
||
null
,
is_featured: data.is_featured
||
false
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
return quiz_tags;
}
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_tagsData = data.map((item, index) => ({
id: item.id || undefined,
name: item.name
||
null
,
tag_type: item.tag_type
||
null
,
is_featured: item.is_featured
||
false
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const quiz_tags = await db.quiz_tags.bulkCreate(quiz_tagsData, { transaction });
// For each item created, replace relation files
return quiz_tags;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const quiz_tags = await db.quiz_tags.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.name !== undefined) updatePayload.name = data.name;
if (data.tag_type !== undefined) updatePayload.tag_type = data.tag_type;
if (data.is_featured !== undefined) updatePayload.is_featured = data.is_featured;
updatePayload.updatedById = currentUser.id;
await quiz_tags.update(updatePayload, {transaction});
return quiz_tags;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const quiz_tags = await db.quiz_tags.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of quiz_tags) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of quiz_tags) {
await record.destroy({transaction});
}
});
return quiz_tags;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const quiz_tags = await db.quiz_tags.findByPk(id, options);
await quiz_tags.update({
deletedBy: currentUser.id
}, {
transaction,
});
await quiz_tags.destroy({
transaction
});
return quiz_tags;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const quiz_tags = await db.quiz_tags.findOne(
{ where },
{ transaction },
);
if (!quiz_tags) {
return quiz_tags;
}
const output = quiz_tags.get({plain: true});
output.quiz_tag_links_tag = await quiz_tags.getQuiz_tag_links_tag({
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(
'quiz_tags',
'name',
filter.name,
),
};
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.tag_type) {
where = {
...where,
tag_type: filter.tag_type,
};
}
if (filter.is_featured) {
where = {
...where,
is_featured: filter.is_featured,
};
}
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_tags.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_tags',
'name',
query,
),
],
};
}
const records = await db.quiz_tags.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,684 @@
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 QuizzesDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const quizzes = await db.quizzes.create(
{
id: data.id || undefined,
title: data.title
||
null
,
description: data.description
||
null
,
quiz_type: data.quiz_type
||
null
,
visibility: data.visibility
||
null
,
is_verified: data.is_verified
||
false
,
verified_badge_text: data.verified_badge_text
||
null
,
subject: data.subject
||
null
,
age_group: data.age_group
||
null
,
difficulty: data.difficulty
||
null
,
allow_images_in_questions: data.allow_images_in_questions
||
false
,
published_at: data.published_at
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await quizzes.setOwner( data.owner || null, {
transaction,
});
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.quizzes.getTableName(),
belongsToColumn: 'cover_images',
belongsToId: quizzes.id,
},
data.cover_images,
options,
);
return quizzes;
}
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 quizzesData = data.map((item, index) => ({
id: item.id || undefined,
title: item.title
||
null
,
description: item.description
||
null
,
quiz_type: item.quiz_type
||
null
,
visibility: item.visibility
||
null
,
is_verified: item.is_verified
||
false
,
verified_badge_text: item.verified_badge_text
||
null
,
subject: item.subject
||
null
,
age_group: item.age_group
||
null
,
difficulty: item.difficulty
||
null
,
allow_images_in_questions: item.allow_images_in_questions
||
false
,
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 quizzes = await db.quizzes.bulkCreate(quizzesData, { transaction });
// For each item created, replace relation files
for (let i = 0; i < quizzes.length; i++) {
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.quizzes.getTableName(),
belongsToColumn: 'cover_images',
belongsToId: quizzes[i].id,
},
data[i].cover_images,
options,
);
}
return quizzes;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const quizzes = await db.quizzes.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.title !== undefined) updatePayload.title = data.title;
if (data.description !== undefined) updatePayload.description = data.description;
if (data.quiz_type !== undefined) updatePayload.quiz_type = data.quiz_type;
if (data.visibility !== undefined) updatePayload.visibility = data.visibility;
if (data.is_verified !== undefined) updatePayload.is_verified = data.is_verified;
if (data.verified_badge_text !== undefined) updatePayload.verified_badge_text = data.verified_badge_text;
if (data.subject !== undefined) updatePayload.subject = data.subject;
if (data.age_group !== undefined) updatePayload.age_group = data.age_group;
if (data.difficulty !== undefined) updatePayload.difficulty = data.difficulty;
if (data.allow_images_in_questions !== undefined) updatePayload.allow_images_in_questions = data.allow_images_in_questions;
if (data.published_at !== undefined) updatePayload.published_at = data.published_at;
updatePayload.updatedById = currentUser.id;
await quizzes.update(updatePayload, {transaction});
if (data.owner !== undefined) {
await quizzes.setOwner(
data.owner,
{ transaction }
);
}
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.quizzes.getTableName(),
belongsToColumn: 'cover_images',
belongsToId: quizzes.id,
},
data.cover_images,
options,
);
return quizzes;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const quizzes = await db.quizzes.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of quizzes) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of quizzes) {
await record.destroy({transaction});
}
});
return quizzes;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const quizzes = await db.quizzes.findByPk(id, options);
await quizzes.update({
deletedBy: currentUser.id
}, {
transaction,
});
await quizzes.destroy({
transaction
});
return quizzes;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const quizzes = await db.quizzes.findOne(
{ where },
{ transaction },
);
if (!quizzes) {
return quizzes;
}
const output = quizzes.get({plain: true});
output.quiz_questions_quiz = await quizzes.getQuiz_questions_quiz({
transaction
});
output.quiz_tag_links_quiz = await quizzes.getQuiz_tag_links_quiz({
transaction
});
output.orbix_quiz_assistant_sessions_generated_quiz = await quizzes.getOrbix_quiz_assistant_sessions_generated_quiz({
transaction
});
output.matches_quiz = await quizzes.getMatches_quiz({
transaction
});
output.owner = await quizzes.getOwner({
transaction
});
output.cover_images = await quizzes.getCover_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: '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.title) {
where = {
...where,
[Op.and]: Utils.ilike(
'quizzes',
'title',
filter.title,
),
};
}
if (filter.description) {
where = {
...where,
[Op.and]: Utils.ilike(
'quizzes',
'description',
filter.description,
),
};
}
if (filter.verified_badge_text) {
where = {
...where,
[Op.and]: Utils.ilike(
'quizzes',
'verified_badge_text',
filter.verified_badge_text,
),
};
}
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.quiz_type) {
where = {
...where,
quiz_type: filter.quiz_type,
};
}
if (filter.visibility) {
where = {
...where,
visibility: filter.visibility,
};
}
if (filter.is_verified) {
where = {
...where,
is_verified: filter.is_verified,
};
}
if (filter.subject) {
where = {
...where,
subject: filter.subject,
};
}
if (filter.age_group) {
where = {
...where,
age_group: filter.age_group,
};
}
if (filter.difficulty) {
where = {
...where,
difficulty: filter.difficulty,
};
}
if (filter.allow_images_in_questions) {
where = {
...where,
allow_images_in_questions: filter.allow_images_in_questions,
};
}
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.quizzes.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(
'quizzes',
'title',
query,
),
],
};
}
const records = await db.quizzes.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,
}));
}
};

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

@ -0,0 +1,430 @@
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,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 TitlesDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const titles = await db.titles.create(
{
id: data.id || undefined,
name: data.name
||
null
,
tagline: data.tagline
||
null
,
unlock_type: data.unlock_type
||
null
,
is_hidden: data.is_hidden
||
false
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
return titles;
}
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 titlesData = data.map((item, index) => ({
id: item.id || undefined,
name: item.name
||
null
,
tagline: item.tagline
||
null
,
unlock_type: item.unlock_type
||
null
,
is_hidden: item.is_hidden
||
false
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const titles = await db.titles.bulkCreate(titlesData, { transaction });
// For each item created, replace relation files
return titles;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const titles = await db.titles.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.name !== undefined) updatePayload.name = data.name;
if (data.tagline !== undefined) updatePayload.tagline = data.tagline;
if (data.unlock_type !== undefined) updatePayload.unlock_type = data.unlock_type;
if (data.is_hidden !== undefined) updatePayload.is_hidden = data.is_hidden;
updatePayload.updatedById = currentUser.id;
await titles.update(updatePayload, {transaction});
return titles;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const titles = await db.titles.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of titles) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of titles) {
await record.destroy({transaction});
}
});
return titles;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const titles = await db.titles.findByPk(id, options);
await titles.update({
deletedBy: currentUser.id
}, {
transaction,
});
await titles.destroy({
transaction
});
return titles;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const titles = await db.titles.findOne(
{ where },
{ transaction },
);
if (!titles) {
return titles;
}
const output = titles.get({plain: true});
output.inventory_items_title_item = await titles.getInventory_items_title_item({
transaction
});
output.achievements_reward_title = await titles.getAchievements_reward_title({
transaction
});
output.daily_rewards_title_item = await titles.getDaily_rewards_title_item({
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(
'titles',
'name',
filter.name,
),
};
}
if (filter.tagline) {
where = {
...where,
[Op.and]: Utils.ilike(
'titles',
'tagline',
filter.tagline,
),
};
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.unlock_type) {
where = {
...where,
unlock_type: filter.unlock_type,
};
}
if (filter.is_hidden) {
where = {
...where,
is_hidden: filter.is_hidden,
};
}
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.titles.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(
'titles',
'name',
query,
),
],
};
}
const records = await db.titles.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,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 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,
progress_value: data.progress_value
||
null
,
is_completed: data.is_completed
||
false
,
completed_at: data.completed_at
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await user_achievements.setUser( data.user || null, {
transaction,
});
await user_achievements.setAchievement( data.achievement || 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,
progress_value: item.progress_value
||
null
,
is_completed: item.is_completed
||
false
,
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_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.progress_value !== undefined) updatePayload.progress_value = data.progress_value;
if (data.is_completed !== undefined) updatePayload.is_completed = data.is_completed;
if (data.completed_at !== undefined) updatePayload.completed_at = data.completed_at;
updatePayload.updatedById = currentUser.id;
await user_achievements.update(updatePayload, {transaction});
if (data.user !== undefined) {
await user_achievements.setUser(
data.user,
{ transaction }
);
}
if (data.achievement !== undefined) {
await user_achievements.setAchievement(
data.achievement,
{ 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 = await user_achievements.getAchievement({
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.achievements,
as: 'achievement',
where: filter.achievement ? {
[Op.or]: [
{ id: { [Op.in]: filter.achievement.split('|').map(term => Utils.uuid(term)) } },
{
name: {
[Op.or]: filter.achievement.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.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.is_completed) {
where = {
...where,
is_completed: filter.is_completed,
};
}
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',
'is_completed',
query,
),
],
};
}
const records = await db.user_achievements.findAll({
attributes: [ 'id', 'is_completed' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['is_completed', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.is_completed,
}));
}
};

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

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,653 @@
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 Wheel_eventsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const wheel_events = await db.wheel_events.create(
{
id: data.id || undefined,
trigger_question_index: data.trigger_question_index
||
null
,
reward_type: data.reward_type
||
null
,
multiplier_value: data.multiplier_value
||
null
,
bonus_points: data.bonus_points
||
null
,
bonus_yux: data.bonus_yux
||
null
,
music_track: data.music_track
||
null
,
event_started_at: data.event_started_at
||
null
,
event_ended_at: data.event_ended_at
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await wheel_events.setMatch( data.match || null, {
transaction,
});
return wheel_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 wheel_eventsData = data.map((item, index) => ({
id: item.id || undefined,
trigger_question_index: item.trigger_question_index
||
null
,
reward_type: item.reward_type
||
null
,
multiplier_value: item.multiplier_value
||
null
,
bonus_points: item.bonus_points
||
null
,
bonus_yux: item.bonus_yux
||
null
,
music_track: item.music_track
||
null
,
event_started_at: item.event_started_at
||
null
,
event_ended_at: item.event_ended_at
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const wheel_events = await db.wheel_events.bulkCreate(wheel_eventsData, { transaction });
// For each item created, replace relation files
return wheel_events;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const wheel_events = await db.wheel_events.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.trigger_question_index !== undefined) updatePayload.trigger_question_index = data.trigger_question_index;
if (data.reward_type !== undefined) updatePayload.reward_type = data.reward_type;
if (data.multiplier_value !== undefined) updatePayload.multiplier_value = data.multiplier_value;
if (data.bonus_points !== undefined) updatePayload.bonus_points = data.bonus_points;
if (data.bonus_yux !== undefined) updatePayload.bonus_yux = data.bonus_yux;
if (data.music_track !== undefined) updatePayload.music_track = data.music_track;
if (data.event_started_at !== undefined) updatePayload.event_started_at = data.event_started_at;
if (data.event_ended_at !== undefined) updatePayload.event_ended_at = data.event_ended_at;
updatePayload.updatedById = currentUser.id;
await wheel_events.update(updatePayload, {transaction});
if (data.match !== undefined) {
await wheel_events.setMatch(
data.match,
{ transaction }
);
}
return wheel_events;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const wheel_events = await db.wheel_events.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of wheel_events) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of wheel_events) {
await record.destroy({transaction});
}
});
return wheel_events;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const wheel_events = await db.wheel_events.findByPk(id, options);
await wheel_events.update({
deletedBy: currentUser.id
}, {
transaction,
});
await wheel_events.destroy({
transaction
});
return wheel_events;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const wheel_events = await db.wheel_events.findOne(
{ where },
{ transaction },
);
if (!wheel_events) {
return wheel_events;
}
const output = wheel_events.get({plain: true});
output.match = await wheel_events.getMatch({
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.matches,
as: 'match',
where: filter.match ? {
[Op.or]: [
{ id: { [Op.in]: filter.match.split('|').map(term => Utils.uuid(term)) } },
{
game_code: {
[Op.or]: filter.match.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.calendarStart && filter.calendarEnd) {
where = {
...where,
[Op.or]: [
{
event_started_at: {
[Op.between]: [filter.calendarStart, filter.calendarEnd],
},
},
{
event_ended_at: {
[Op.between]: [filter.calendarStart, filter.calendarEnd],
},
},
],
};
}
if (filter.trigger_question_indexRange) {
const [start, end] = filter.trigger_question_indexRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
trigger_question_index: {
...where.trigger_question_index,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
trigger_question_index: {
...where.trigger_question_index,
[Op.lte]: end,
},
};
}
}
if (filter.multiplier_valueRange) {
const [start, end] = filter.multiplier_valueRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
multiplier_value: {
...where.multiplier_value,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
multiplier_value: {
...where.multiplier_value,
[Op.lte]: end,
},
};
}
}
if (filter.bonus_pointsRange) {
const [start, end] = filter.bonus_pointsRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
bonus_points: {
...where.bonus_points,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
bonus_points: {
...where.bonus_points,
[Op.lte]: end,
},
};
}
}
if (filter.bonus_yuxRange) {
const [start, end] = filter.bonus_yuxRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
bonus_yux: {
...where.bonus_yux,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
bonus_yux: {
...where.bonus_yux,
[Op.lte]: end,
},
};
}
}
if (filter.event_started_atRange) {
const [start, end] = filter.event_started_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
event_started_at: {
...where.event_started_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
event_started_at: {
...where.event_started_at,
[Op.lte]: end,
},
};
}
}
if (filter.event_ended_atRange) {
const [start, end] = filter.event_ended_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
event_ended_at: {
...where.event_ended_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
event_ended_at: {
...where.event_ended_at,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.reward_type) {
where = {
...where,
reward_type: filter.reward_type,
};
}
if (filter.music_track) {
where = {
...where,
music_track: filter.music_track,
};
}
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.wheel_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(
'wheel_events',
'reward_type',
query,
),
],
};
}
const records = await db.wheel_events.findAll({
attributes: [ 'id', 'reward_type' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['reward_type', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.reward_type,
}));
}
};

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_app_preview',
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,188 @@
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 achievements = sequelize.define(
'achievements',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
name: {
type: DataTypes.TEXT,
},
description: {
type: DataTypes.TEXT,
},
category: {
type: DataTypes.ENUM,
values: [
"answering",
"wins",
"boxes",
"yux",
"modes",
"community",
"creation",
"streaks"
],
},
target_value: {
type: DataTypes.INTEGER,
},
reward_yux: {
type: DataTypes.INTEGER,
},
is_repeatable: {
type: DataTypes.BOOLEAN,
allowNull: false,
defaultValue: false,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
achievements.associate = (db) => {
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
db.achievements.hasMany(db.user_achievements, {
as: 'user_achievements_achievement',
foreignKey: {
name: 'achievementId',
},
constraints: false,
});
//end loop
db.achievements.belongsTo(db.titles, {
as: 'reward_title',
foreignKey: {
name: 'reward_titleId',
},
constraints: false,
});
db.achievements.belongsTo(db.badges, {
as: 'reward_badge',
foreignKey: {
name: 'reward_badgeId',
},
constraints: false,
});
db.achievements.belongsTo(db.users, {
as: 'createdBy',
});
db.achievements.belongsTo(db.users, {
as: 'updatedBy',
});
};
return achievements;
};

View File

@ -0,0 +1,307 @@
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 avatar_customizations = sequelize.define(
'avatar_customizations',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
profile_name: {
type: DataTypes.TEXT,
},
base_color: {
type: DataTypes.ENUM,
values: [
"red",
"orange",
"yellow",
"green",
"blue",
"purple",
"pink",
"white",
"gray",
"black",
"custom"
],
},
custom_color_hex: {
type: DataTypes.TEXT,
},
face_style: {
type: DataTypes.ENUM,
values: [
"default",
"smile",
"grin",
"surprised",
"sleepy",
"silly"
],
},
pattern_style: {
type: DataTypes.ENUM,
values: [
"none",
"stripes",
"polka_dots",
"stars",
"waves",
"checker"
],
},
pattern_color: {
type: DataTypes.ENUM,
values: [
"white",
"black",
"red",
"blue",
"green",
"yellow",
"custom"
],
},
pattern_custom_hex: {
type: DataTypes.TEXT,
},
hat_style: {
type: DataTypes.ENUM,
values: [
"none",
"cap",
"beanie",
"crown",
"graduation_cap",
"headphones"
],
},
is_active: {
type: DataTypes.BOOLEAN,
allowNull: false,
defaultValue: false,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
avatar_customizations.associate = (db) => {
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
db.avatar_customizations.hasMany(db.match_players, {
as: 'match_players_avatar_customization',
foreignKey: {
name: 'avatar_customizationId',
},
constraints: false,
});
//end loop
db.avatar_customizations.belongsTo(db.users, {
as: 'user',
foreignKey: {
name: 'userId',
},
constraints: false,
});
db.avatar_customizations.hasMany(db.file, {
as: 'render_images',
foreignKey: 'belongsToId',
constraints: false,
scope: {
belongsTo: db.avatar_customizations.getTableName(),
belongsToColumn: 'render_images',
},
});
db.avatar_customizations.belongsTo(db.users, {
as: 'createdBy',
});
db.avatar_customizations.belongsTo(db.users, {
as: 'updatedBy',
});
};
return avatar_customizations;
};

View File

@ -0,0 +1,202 @@
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 avatars = sequelize.define(
'avatars',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
name: {
type: DataTypes.TEXT,
},
rarity: {
type: DataTypes.ENUM,
values: [
"common",
"uncommon",
"rare",
"epic",
"legendary",
"mythic"
],
},
source_type: {
type: DataTypes.ENUM,
values: [
"starter",
"box",
"event",
"achievement",
"shop"
],
},
is_collectible: {
type: DataTypes.BOOLEAN,
allowNull: false,
defaultValue: false,
},
model_key: {
type: DataTypes.TEXT,
},
drop_weight: {
type: DataTypes.DECIMAL,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
avatars.associate = (db) => {
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
db.avatars.hasMany(db.box_items, {
as: 'box_items_avatar',
foreignKey: {
name: 'avatarId',
},
constraints: false,
});
db.avatars.hasMany(db.inventory_items, {
as: 'inventory_items_avatar',
foreignKey: {
name: 'avatarId',
},
constraints: false,
});
//end loop
db.avatars.hasMany(db.file, {
as: 'preview_images',
foreignKey: 'belongsToId',
constraints: false,
scope: {
belongsTo: db.avatars.getTableName(),
belongsToColumn: 'preview_images',
},
});
db.avatars.belongsTo(db.users, {
as: 'createdBy',
});
db.avatars.belongsTo(db.users, {
as: 'updatedBy',
});
};
return avatars;
};

View File

@ -0,0 +1,165 @@
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 badges = sequelize.define(
'badges',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
name: {
type: DataTypes.TEXT,
},
description: {
type: DataTypes.TEXT,
},
unlock_type: {
type: DataTypes.ENUM,
values: [
"achievement",
"event",
"shop",
"starter",
"admin_grant"
],
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
badges.associate = (db) => {
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
db.badges.hasMany(db.inventory_items, {
as: 'inventory_items_badge',
foreignKey: {
name: 'badgeId',
},
constraints: false,
});
db.badges.hasMany(db.achievements, {
as: 'achievements_reward_badge',
foreignKey: {
name: 'reward_badgeId',
},
constraints: false,
});
db.badges.hasMany(db.daily_rewards, {
as: 'daily_rewards_badge',
foreignKey: {
name: 'badgeId',
},
constraints: false,
});
//end loop
db.badges.hasMany(db.file, {
as: 'badge_images',
foreignKey: 'belongsToId',
constraints: false,
scope: {
belongsTo: db.badges.getTableName(),
belongsToColumn: 'badge_images',
},
});
db.badges.belongsTo(db.users, {
as: 'createdBy',
});
db.badges.belongsTo(db.users, {
as: 'updatedBy',
});
};
return badges;
};

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 box_items = sequelize.define(
'box_items',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
item_kind: {
type: DataTypes.ENUM,
values: [
"avatar",
"cosmetic"
],
},
rarity: {
type: DataTypes.ENUM,
values: [
"common",
"uncommon",
"rare",
"epic",
"legendary",
"mythic"
],
},
drop_rate_percent: {
type: DataTypes.DECIMAL,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
box_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.box_items.belongsTo(db.boxes, {
as: 'box',
foreignKey: {
name: 'boxId',
},
constraints: false,
});
db.box_items.belongsTo(db.avatars, {
as: 'avatar',
foreignKey: {
name: 'avatarId',
},
constraints: false,
});
db.box_items.belongsTo(db.cosmetics, {
as: 'cosmetic',
foreignKey: {
name: 'cosmeticId',
},
constraints: false,
});
db.box_items.belongsTo(db.users, {
as: 'createdBy',
});
db.box_items.belongsTo(db.users, {
as: 'updatedBy',
});
};
return box_items;
};

View File

@ -0,0 +1,182 @@
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 boxes = sequelize.define(
'boxes',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
name: {
type: DataTypes.TEXT,
},
description: {
type: DataTypes.TEXT,
},
box_type: {
type: DataTypes.ENUM,
values: [
"racecrew",
"kingdom",
"wheel_of_fortune",
"future",
"event"
],
},
price_yux: {
type: DataTypes.INTEGER,
},
is_available: {
type: DataTypes.BOOLEAN,
allowNull: false,
defaultValue: false,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
boxes.associate = (db) => {
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
db.boxes.hasMany(db.box_items, {
as: 'box_items_box',
foreignKey: {
name: 'boxId',
},
constraints: false,
});
db.boxes.hasMany(db.purchases, {
as: 'purchases_box',
foreignKey: {
name: 'boxId',
},
constraints: false,
});
db.boxes.hasMany(db.daily_rewards, {
as: 'daily_rewards_box',
foreignKey: {
name: 'boxId',
},
constraints: false,
});
//end loop
db.boxes.hasMany(db.file, {
as: 'box_images',
foreignKey: 'belongsToId',
constraints: false,
scope: {
belongsTo: db.boxes.getTableName(),
belongsToColumn: 'box_images',
},
});
db.boxes.belongsTo(db.users, {
as: 'createdBy',
});
db.boxes.belongsTo(db.users, {
as: 'updatedBy',
});
};
return boxes;
};

View File

@ -0,0 +1,151 @@
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 community_mode_build_sessions = sequelize.define(
'community_mode_build_sessions',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
concept: {
type: DataTypes.TEXT,
},
status: {
type: DataTypes.ENUM,
values: [
"collecting_requirements",
"draft_ready",
"published",
"cancelled"
],
},
started_at: {
type: DataTypes.DATE,
},
finished_at: {
type: DataTypes.DATE,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
community_mode_build_sessions.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.community_mode_build_sessions.belongsTo(db.users, {
as: 'user',
foreignKey: {
name: 'userId',
},
constraints: false,
});
db.community_mode_build_sessions.belongsTo(db.community_modes, {
as: 'result_mode',
foreignKey: {
name: 'result_modeId',
},
constraints: false,
});
db.community_mode_build_sessions.belongsTo(db.users, {
as: 'createdBy',
});
db.community_mode_build_sessions.belongsTo(db.users, {
as: 'updatedBy',
});
};
return community_mode_build_sessions;
};

View File

@ -0,0 +1,178 @@
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 community_modes = sequelize.define(
'community_modes',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
name: {
type: DataTypes.TEXT,
},
description: {
type: DataTypes.TEXT,
},
status: {
type: DataTypes.ENUM,
values: [
"draft",
"published",
"disabled",
"under_review"
],
},
is_unofficial: {
type: DataTypes.BOOLEAN,
allowNull: false,
defaultValue: false,
},
rules_summary: {
type: DataTypes.TEXT,
},
published_at: {
type: DataTypes.DATE,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
community_modes.associate = (db) => {
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
db.community_modes.hasMany(db.community_mode_build_sessions, {
as: 'community_mode_build_sessions_result_mode',
foreignKey: {
name: 'result_modeId',
},
constraints: false,
});
//end loop
db.community_modes.belongsTo(db.users, {
as: 'creator',
foreignKey: {
name: 'creatorId',
},
constraints: false,
});
db.community_modes.hasMany(db.file, {
as: 'mode_images',
foreignKey: 'belongsToId',
constraints: false,
scope: {
belongsTo: db.community_modes.getTableName(),
belongsToColumn: 'mode_images',
},
});
db.community_modes.belongsTo(db.users, {
as: 'createdBy',
});
db.community_modes.belongsTo(db.users, {
as: 'updatedBy',
});
};
return community_modes;
};

View File

@ -0,0 +1,214 @@
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 cosmetics = sequelize.define(
'cosmetics',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
name: {
type: DataTypes.TEXT,
},
cosmetic_type: {
type: DataTypes.ENUM,
values: [
"color",
"face",
"pattern",
"hat",
"title",
"badge"
],
},
rarity: {
type: DataTypes.ENUM,
values: [
"common",
"uncommon",
"rare",
"epic",
"legendary",
"mythic"
],
},
asset_key: {
type: DataTypes.TEXT,
},
is_limited_time: {
type: DataTypes.BOOLEAN,
allowNull: false,
defaultValue: false,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
cosmetics.associate = (db) => {
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
db.cosmetics.hasMany(db.box_items, {
as: 'box_items_cosmetic',
foreignKey: {
name: 'cosmeticId',
},
constraints: false,
});
db.cosmetics.hasMany(db.purchases, {
as: 'purchases_cosmetic',
foreignKey: {
name: 'cosmeticId',
},
constraints: false,
});
db.cosmetics.hasMany(db.inventory_items, {
as: 'inventory_items_cosmetic',
foreignKey: {
name: 'cosmeticId',
},
constraints: false,
});
db.cosmetics.hasMany(db.daily_rewards, {
as: 'daily_rewards_cosmetic',
foreignKey: {
name: 'cosmeticId',
},
constraints: false,
});
//end loop
db.cosmetics.hasMany(db.file, {
as: 'icon_images',
foreignKey: 'belongsToId',
constraints: false,
scope: {
belongsTo: db.cosmetics.getTableName(),
belongsToColumn: 'icon_images',
},
});
db.cosmetics.belongsTo(db.users, {
as: 'createdBy',
});
db.cosmetics.belongsTo(db.users, {
as: 'updatedBy',
});
};
return cosmetics;
};

View File

@ -0,0 +1,180 @@
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_rewards = sequelize.define(
'daily_rewards',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
name: {
type: DataTypes.TEXT,
},
reward_type: {
type: DataTypes.ENUM,
values: [
"yux",
"box",
"cosmetic",
"title",
"badge"
],
},
day_index: {
type: DataTypes.INTEGER,
},
yux_amount: {
type: DataTypes.INTEGER,
},
is_enabled: {
type: DataTypes.BOOLEAN,
allowNull: false,
defaultValue: false,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
daily_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_rewards.belongsTo(db.boxes, {
as: 'box',
foreignKey: {
name: 'boxId',
},
constraints: false,
});
db.daily_rewards.belongsTo(db.cosmetics, {
as: 'cosmetic',
foreignKey: {
name: 'cosmeticId',
},
constraints: false,
});
db.daily_rewards.belongsTo(db.titles, {
as: 'title_item',
foreignKey: {
name: 'title_itemId',
},
constraints: false,
});
db.daily_rewards.belongsTo(db.badges, {
as: 'badge',
foreignKey: {
name: 'badgeId',
},
constraints: false,
});
db.daily_rewards.belongsTo(db.users, {
as: 'createdBy',
});
db.daily_rewards.belongsTo(db.users, {
as: 'updatedBy',
});
};
return daily_rewards;
};

View File

@ -0,0 +1,170 @@
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 events = sequelize.define(
'events',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
name: {
type: DataTypes.TEXT,
},
description: {
type: DataTypes.TEXT,
},
event_type: {
type: DataTypes.ENUM,
values: [
"seasonal",
"challenge",
"community",
"reward_boost"
],
},
starts_at: {
type: DataTypes.DATE,
},
ends_at: {
type: DataTypes.DATE,
},
is_active: {
type: DataTypes.BOOLEAN,
allowNull: false,
defaultValue: false,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
events.associate = (db) => {
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
db.events.hasMany(db.leaderboard_entries, {
as: 'leaderboard_entries_event',
foreignKey: {
name: 'eventId',
},
constraints: false,
});
//end loop
db.events.hasMany(db.file, {
as: 'event_images',
foreignKey: 'belongsToId',
constraints: false,
scope: {
belongsTo: db.events.getTableName(),
belongsToColumn: 'event_images',
},
});
db.events.belongsTo(db.users, {
as: 'createdBy',
});
db.events.belongsTo(db.users, {
as: 'updatedBy',
});
};
return events;
};

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,195 @@
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 game_modes = sequelize.define(
'game_modes',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
name: {
type: DataTypes.TEXT,
},
mode_key: {
type: DataTypes.ENUM,
values: [
"classic",
"music",
"race",
"wheel_of_fortune",
"cat",
"manipulat",
"system_override",
"mirror",
"expedition",
"movie_studio",
"community"
],
},
description: {
type: DataTypes.TEXT,
},
is_official: {
type: DataTypes.BOOLEAN,
allowNull: false,
defaultValue: false,
},
is_enabled: {
type: DataTypes.BOOLEAN,
allowNull: false,
defaultValue: false,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
game_modes.associate = (db) => {
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
db.game_modes.hasMany(db.matches, {
as: 'matches_mode',
foreignKey: {
name: 'modeId',
},
constraints: false,
});
db.game_modes.hasMany(db.leaderboard_entries, {
as: 'leaderboard_entries_mode',
foreignKey: {
name: 'modeId',
},
constraints: false,
});
//end loop
db.game_modes.hasMany(db.file, {
as: 'mode_images',
foreignKey: 'belongsToId',
constraints: false,
scope: {
belongsTo: db.game_modes.getTableName(),
belongsToColumn: 'mode_images',
},
});
db.game_modes.belongsTo(db.users, {
as: 'createdBy',
});
db.game_modes.belongsTo(db.users, {
as: 'updatedBy',
});
};
return game_modes;
};

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,168 @@
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 inventory_items = sequelize.define(
'inventory_items',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
item_kind: {
type: DataTypes.ENUM,
values: [
"avatar",
"cosmetic",
"title",
"badge"
],
},
quantity: {
type: DataTypes.INTEGER,
},
unlocked_at: {
type: DataTypes.DATE,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
inventory_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.inventory_items.belongsTo(db.users, {
as: 'user',
foreignKey: {
name: 'userId',
},
constraints: false,
});
db.inventory_items.belongsTo(db.avatars, {
as: 'avatar',
foreignKey: {
name: 'avatarId',
},
constraints: false,
});
db.inventory_items.belongsTo(db.cosmetics, {
as: 'cosmetic',
foreignKey: {
name: 'cosmeticId',
},
constraints: false,
});
db.inventory_items.belongsTo(db.titles, {
as: 'title_item',
foreignKey: {
name: 'title_itemId',
},
constraints: false,
});
db.inventory_items.belongsTo(db.badges, {
as: 'badge',
foreignKey: {
name: 'badgeId',
},
constraints: false,
});
db.inventory_items.belongsTo(db.users, {
as: 'createdBy',
});
db.inventory_items.belongsTo(db.users, {
as: 'updatedBy',
});
};
return inventory_items;
};

View File

@ -0,0 +1,166 @@
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 leaderboard_entries = sequelize.define(
'leaderboard_entries',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
scope: {
type: DataTypes.ENUM,
values: [
"global",
"class",
"event",
"mode"
],
},
rank_position: {
type: DataTypes.INTEGER,
},
score_value: {
type: DataTypes.INTEGER,
},
period_start_at: {
type: DataTypes.DATE,
},
period_end_at: {
type: DataTypes.DATE,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
leaderboard_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.leaderboard_entries.belongsTo(db.users, {
as: 'user',
foreignKey: {
name: 'userId',
},
constraints: false,
});
db.leaderboard_entries.belongsTo(db.events, {
as: 'event',
foreignKey: {
name: 'eventId',
},
constraints: false,
});
db.leaderboard_entries.belongsTo(db.game_modes, {
as: 'mode',
foreignKey: {
name: 'modeId',
},
constraints: false,
});
db.leaderboard_entries.belongsTo(db.users, {
as: 'createdBy',
});
db.leaderboard_entries.belongsTo(db.users, {
as: 'updatedBy',
});
};
return leaderboard_entries;
};

View File

@ -0,0 +1,205 @@
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 match_players = sequelize.define(
'match_players',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
display_name: {
type: DataTypes.TEXT,
},
player_status: {
type: DataTypes.ENUM,
values: [
"joined",
"ready",
"playing",
"disconnected",
"finished"
],
},
score_points: {
type: DataTypes.INTEGER,
},
correct_count: {
type: DataTypes.INTEGER,
},
incorrect_count: {
type: DataTypes.INTEGER,
},
yux_earned: {
type: DataTypes.INTEGER,
},
race_distance_km: {
type: DataTypes.DECIMAL,
},
joined_at: {
type: DataTypes.DATE,
},
left_at: {
type: DataTypes.DATE,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
match_players.associate = (db) => {
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
db.match_players.hasMany(db.player_answers, {
as: 'player_answers_match_player',
foreignKey: {
name: 'match_playerId',
},
constraints: false,
});
//end loop
db.match_players.belongsTo(db.matches, {
as: 'match',
foreignKey: {
name: 'matchId',
},
constraints: false,
});
db.match_players.belongsTo(db.users, {
as: 'user',
foreignKey: {
name: 'userId',
},
constraints: false,
});
db.match_players.belongsTo(db.avatar_customizations, {
as: 'avatar_customization',
foreignKey: {
name: 'avatar_customizationId',
},
constraints: false,
});
db.match_players.belongsTo(db.users, {
as: 'createdBy',
});
db.match_players.belongsTo(db.users, {
as: 'updatedBy',
});
};
return match_players;
};

View File

@ -0,0 +1,137 @@
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 match_questions = sequelize.define(
'match_questions',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
question_index: {
type: DataTypes.INTEGER,
},
revealed_at: {
type: DataTypes.DATE,
},
closed_at: {
type: DataTypes.DATE,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
match_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.match_questions.hasMany(db.player_answers, {
as: 'player_answers_match_question',
foreignKey: {
name: 'match_questionId',
},
constraints: false,
});
//end loop
db.match_questions.belongsTo(db.matches, {
as: 'match',
foreignKey: {
name: 'matchId',
},
constraints: false,
});
db.match_questions.belongsTo(db.quiz_questions, {
as: 'quiz_question',
foreignKey: {
name: 'quiz_questionId',
},
constraints: false,
});
db.match_questions.belongsTo(db.users, {
as: 'createdBy',
});
db.match_questions.belongsTo(db.users, {
as: 'updatedBy',
});
};
return match_questions;
};

View File

@ -0,0 +1,280 @@
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 matches = sequelize.define(
'matches',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
game_code: {
type: DataTypes.TEXT,
},
status: {
type: DataTypes.ENUM,
values: [
"lobby",
"in_progress",
"ended",
"cancelled"
],
},
is_locked: {
type: DataTypes.BOOLEAN,
allowNull: false,
defaultValue: false,
},
max_players: {
type: DataTypes.INTEGER,
},
question_count: {
type: DataTypes.INTEGER,
},
randomize_questions: {
type: DataTypes.BOOLEAN,
allowNull: false,
defaultValue: false,
},
randomize_answers: {
type: DataTypes.BOOLEAN,
allowNull: false,
defaultValue: false,
},
wheel_event_every_n_questions: {
type: DataTypes.INTEGER,
},
cat_interaction_every_n_questions: {
type: DataTypes.INTEGER,
},
starting_speed_kmh: {
type: DataTypes.INTEGER,
},
race_map: {
type: DataTypes.ENUM,
values: [
"san_francisco_run",
"milky_way_highway",
"ocean_drive",
"theme_park_rush",
"actually_legal_highway_race"
],
},
scheduled_start_at: {
type: DataTypes.DATE,
},
started_at: {
type: DataTypes.DATE,
},
ended_at: {
type: DataTypes.DATE,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
matches.associate = (db) => {
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
db.matches.hasMany(db.match_players, {
as: 'match_players_match',
foreignKey: {
name: 'matchId',
},
constraints: false,
});
db.matches.hasMany(db.match_questions, {
as: 'match_questions_match',
foreignKey: {
name: 'matchId',
},
constraints: false,
});
db.matches.hasMany(db.wheel_events, {
as: 'wheel_events_match',
foreignKey: {
name: 'matchId',
},
constraints: false,
});
//end loop
db.matches.belongsTo(db.users, {
as: 'host',
foreignKey: {
name: 'hostId',
},
constraints: false,
});
db.matches.belongsTo(db.game_modes, {
as: 'mode',
foreignKey: {
name: 'modeId',
},
constraints: false,
});
db.matches.belongsTo(db.quizzes, {
as: 'quiz',
foreignKey: {
name: 'quizId',
},
constraints: false,
});
db.matches.belongsTo(db.users, {
as: 'createdBy',
});
db.matches.belongsTo(db.users, {
as: 'updatedBy',
});
};
return matches;
};

View File

@ -0,0 +1,165 @@
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 moderation_reports = sequelize.define(
'moderation_reports',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
target_type: {
type: DataTypes.ENUM,
values: [
"quiz",
"question",
"user",
"community_mode"
],
},
reason: {
type: DataTypes.TEXT,
},
status: {
type: DataTypes.ENUM,
values: [
"open",
"in_review",
"resolved",
"rejected"
],
},
reported_at: {
type: DataTypes.DATE,
},
resolved_at: {
type: DataTypes.DATE,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
moderation_reports.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.moderation_reports.belongsTo(db.users, {
as: 'reporter',
foreignKey: {
name: 'reporterId',
},
constraints: false,
});
db.moderation_reports.belongsTo(db.users, {
as: 'createdBy',
});
db.moderation_reports.belongsTo(db.users, {
as: 'updatedBy',
});
};
return moderation_reports;
};

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 music_playlists = sequelize.define(
'music_playlists',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
name: {
type: DataTypes.TEXT,
},
playlist_type: {
type: DataTypes.ENUM,
values: [
"default",
"seasonal_christmas",
"seasonal_other",
"mode_specific"
],
},
auto_activate: {
type: DataTypes.BOOLEAN,
allowNull: false,
defaultValue: false,
},
active_from: {
type: DataTypes.DATE,
},
active_to: {
type: DataTypes.DATE,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
music_playlists.associate = (db) => {
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
db.music_playlists.hasMany(db.music_tracks, {
as: 'music_tracks_playlist',
foreignKey: {
name: 'playlistId',
},
constraints: false,
});
//end loop
db.music_playlists.hasMany(db.file, {
as: 'cover_images',
foreignKey: 'belongsToId',
constraints: false,
scope: {
belongsTo: db.music_playlists.getTableName(),
belongsToColumn: 'cover_images',
},
});
db.music_playlists.belongsTo(db.users, {
as: 'createdBy',
});
db.music_playlists.belongsTo(db.users, {
as: 'updatedBy',
});
};
return music_playlists;
};

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 music_tracks = sequelize.define(
'music_tracks',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
name: {
type: DataTypes.TEXT,
},
duration_seconds: {
type: DataTypes.INTEGER,
},
order_index: {
type: DataTypes.INTEGER,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
music_tracks.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.music_tracks.belongsTo(db.music_playlists, {
as: 'playlist',
foreignKey: {
name: 'playlistId',
},
constraints: false,
});
db.music_tracks.hasMany(db.file, {
as: 'audio_files',
foreignKey: 'belongsToId',
constraints: false,
scope: {
belongsTo: db.music_tracks.getTableName(),
belongsToColumn: 'audio_files',
},
});
db.music_tracks.belongsTo(db.users, {
as: 'createdBy',
});
db.music_tracks.belongsTo(db.users, {
as: 'updatedBy',
});
};
return music_tracks;
};

View File

@ -0,0 +1,222 @@
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 orbix_quiz_assistant_sessions = sequelize.define(
'orbix_quiz_assistant_sessions',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
topic: {
type: DataTypes.TEXT,
},
target_question_count: {
type: DataTypes.INTEGER,
},
age_group: {
type: DataTypes.ENUM,
values: [
"early",
"kids",
"teens",
"adult",
"mixed"
],
},
difficulty: {
type: DataTypes.ENUM,
values: [
"easy",
"medium",
"hard",
"mixed"
],
},
include_images: {
type: DataTypes.BOOLEAN,
allowNull: false,
defaultValue: false,
},
status: {
type: DataTypes.ENUM,
values: [
"collecting_requirements",
"draft_ready",
"exported_to_quiz",
"cancelled"
],
},
notes: {
type: DataTypes.TEXT,
},
started_at: {
type: DataTypes.DATE,
},
finished_at: {
type: DataTypes.DATE,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
orbix_quiz_assistant_sessions.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.orbix_quiz_assistant_sessions.belongsTo(db.users, {
as: 'user',
foreignKey: {
name: 'userId',
},
constraints: false,
});
db.orbix_quiz_assistant_sessions.belongsTo(db.quizzes, {
as: 'generated_quiz',
foreignKey: {
name: 'generated_quizId',
},
constraints: false,
});
db.orbix_quiz_assistant_sessions.belongsTo(db.users, {
as: 'createdBy',
});
db.orbix_quiz_assistant_sessions.belongsTo(db.users, {
as: 'updatedBy',
});
};
return orbix_quiz_assistant_sessions;
};

View File

@ -0,0 +1,99 @@
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,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 player_answers = sequelize.define(
'player_answers',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
is_correct: {
type: DataTypes.BOOLEAN,
allowNull: false,
defaultValue: false,
},
points_awarded: {
type: DataTypes.INTEGER,
},
answer_time_ms: {
type: DataTypes.INTEGER,
},
answered_at: {
type: DataTypes.DATE,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
player_answers.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.player_answers.belongsTo(db.match_players, {
as: 'match_player',
foreignKey: {
name: 'match_playerId',
},
constraints: false,
});
db.player_answers.belongsTo(db.match_questions, {
as: 'match_question',
foreignKey: {
name: 'match_questionId',
},
constraints: false,
});
db.player_answers.belongsTo(db.question_answers, {
as: 'selected_answer',
foreignKey: {
name: 'selected_answerId',
},
constraints: false,
});
db.player_answers.belongsTo(db.users, {
as: 'createdBy',
});
db.player_answers.belongsTo(db.users, {
as: 'updatedBy',
});
};
return player_answers;
};

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 purchases = sequelize.define(
'purchases',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
purchase_type: {
type: DataTypes.ENUM,
values: [
"box_open",
"shop_item"
],
},
amount_yux: {
type: DataTypes.INTEGER,
},
purchased_at: {
type: DataTypes.DATE,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
purchases.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.purchases.belongsTo(db.users, {
as: 'user',
foreignKey: {
name: 'userId',
},
constraints: false,
});
db.purchases.belongsTo(db.boxes, {
as: 'box',
foreignKey: {
name: 'boxId',
},
constraints: false,
});
db.purchases.belongsTo(db.cosmetics, {
as: 'cosmetic',
foreignKey: {
name: 'cosmeticId',
},
constraints: false,
});
db.purchases.belongsTo(db.users, {
as: 'createdBy',
});
db.purchases.belongsTo(db.users, {
as: 'updatedBy',
});
};
return purchases;
};

View File

@ -0,0 +1,142 @@
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 question_answers = sequelize.define(
'question_answers',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
answer_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,
},
);
question_answers.associate = (db) => {
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
db.question_answers.hasMany(db.player_answers, {
as: 'player_answers_selected_answer',
foreignKey: {
name: 'selected_answerId',
},
constraints: false,
});
//end loop
db.question_answers.belongsTo(db.quiz_questions, {
as: 'question',
foreignKey: {
name: 'questionId',
},
constraints: false,
});
db.question_answers.hasMany(db.file, {
as: 'answer_images',
foreignKey: 'belongsToId',
constraints: false,
scope: {
belongsTo: db.question_answers.getTableName(),
belongsToColumn: 'answer_images',
},
});
db.question_answers.belongsTo(db.users, {
as: 'createdBy',
});
db.question_answers.belongsTo(db.users, {
as: 'updatedBy',
});
};
return question_answers;
};

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 quiz_questions = sequelize.define(
'quiz_questions',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
prompt: {
type: DataTypes.TEXT,
},
time_limit_seconds: {
type: DataTypes.INTEGER,
},
points: {
type: DataTypes.INTEGER,
},
question_type: {
type: DataTypes.ENUM,
values: [
"multiple_choice"
],
},
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.question_answers, {
as: 'question_answers_question',
foreignKey: {
name: 'questionId',
},
constraints: false,
});
db.quiz_questions.hasMany(db.match_questions, {
as: 'match_questions_quiz_question',
foreignKey: {
name: 'quiz_questionId',
},
constraints: false,
});
//end loop
db.quiz_questions.belongsTo(db.quizzes, {
as: 'quiz',
foreignKey: {
name: 'quizId',
},
constraints: false,
});
db.quiz_questions.hasMany(db.file, {
as: 'prompt_images',
foreignKey: 'belongsToId',
constraints: false,
scope: {
belongsTo: db.quiz_questions.getTableName(),
belongsToColumn: 'prompt_images',
},
});
db.quiz_questions.belongsTo(db.users, {
as: 'createdBy',
});
db.quiz_questions.belongsTo(db.users, {
as: 'updatedBy',
});
};
return quiz_questions;
};

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 quiz_tag_links = sequelize.define(
'quiz_tag_links',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
quiz_tag_links.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_tag_links.belongsTo(db.quizzes, {
as: 'quiz',
foreignKey: {
name: 'quizId',
},
constraints: false,
});
db.quiz_tag_links.belongsTo(db.quiz_tags, {
as: 'tag',
foreignKey: {
name: 'tagId',
},
constraints: false,
});
db.quiz_tag_links.belongsTo(db.users, {
as: 'createdBy',
});
db.quiz_tag_links.belongsTo(db.users, {
as: 'updatedBy',
});
};
return quiz_tag_links;
};

View File

@ -0,0 +1,142 @@
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_tags = sequelize.define(
'quiz_tags',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
name: {
type: DataTypes.TEXT,
},
tag_type: {
type: DataTypes.ENUM,
values: [
"topic",
"mode_fit",
"skill",
"curriculum",
"event"
],
},
is_featured: {
type: DataTypes.BOOLEAN,
allowNull: false,
defaultValue: false,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
quiz_tags.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_tags.hasMany(db.quiz_tag_links, {
as: 'quiz_tag_links_tag',
foreignKey: {
name: 'tagId',
},
constraints: false,
});
//end loop
db.quiz_tags.belongsTo(db.users, {
as: 'createdBy',
});
db.quiz_tags.belongsTo(db.users, {
as: 'updatedBy',
});
};
return quiz_tags;
};

View File

@ -0,0 +1,321 @@
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 quizzes = sequelize.define(
'quizzes',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
title: {
type: DataTypes.TEXT,
},
description: {
type: DataTypes.TEXT,
},
quiz_type: {
type: DataTypes.ENUM,
values: [
"official",
"community",
"personal"
],
},
visibility: {
type: DataTypes.ENUM,
values: [
"private",
"unlisted",
"public"
],
},
is_verified: {
type: DataTypes.BOOLEAN,
allowNull: false,
defaultValue: false,
},
verified_badge_text: {
type: DataTypes.TEXT,
},
subject: {
type: DataTypes.ENUM,
values: [
"mathematics",
"science",
"history",
"geography",
"technology",
"animals",
"space",
"gaming",
"movies",
"music",
"languages",
"other"
],
},
age_group: {
type: DataTypes.ENUM,
values: [
"early",
"kids",
"teens",
"adult",
"mixed"
],
},
difficulty: {
type: DataTypes.ENUM,
values: [
"easy",
"medium",
"hard",
"mixed"
],
},
allow_images_in_questions: {
type: DataTypes.BOOLEAN,
allowNull: false,
defaultValue: false,
},
published_at: {
type: DataTypes.DATE,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
quizzes.associate = (db) => {
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
db.quizzes.hasMany(db.quiz_questions, {
as: 'quiz_questions_quiz',
foreignKey: {
name: 'quizId',
},
constraints: false,
});
db.quizzes.hasMany(db.quiz_tag_links, {
as: 'quiz_tag_links_quiz',
foreignKey: {
name: 'quizId',
},
constraints: false,
});
db.quizzes.hasMany(db.orbix_quiz_assistant_sessions, {
as: 'orbix_quiz_assistant_sessions_generated_quiz',
foreignKey: {
name: 'generated_quizId',
},
constraints: false,
});
db.quizzes.hasMany(db.matches, {
as: 'matches_quiz',
foreignKey: {
name: 'quizId',
},
constraints: false,
});
//end loop
db.quizzes.belongsTo(db.users, {
as: 'owner',
foreignKey: {
name: 'ownerId',
},
constraints: false,
});
db.quizzes.hasMany(db.file, {
as: 'cover_images',
foreignKey: 'belongsToId',
constraints: false,
scope: {
belongsTo: db.quizzes.getTableName(),
belongsToColumn: 'cover_images',
},
});
db.quizzes.belongsTo(db.users, {
as: 'createdBy',
});
db.quizzes.belongsTo(db.users, {
as: 'updatedBy',
});
};
return quizzes;
};

View File

@ -0,0 +1,132 @@
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,165 @@
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 titles = sequelize.define(
'titles',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
name: {
type: DataTypes.TEXT,
},
tagline: {
type: DataTypes.TEXT,
},
unlock_type: {
type: DataTypes.ENUM,
values: [
"achievement",
"event",
"shop",
"starter",
"admin_grant"
],
},
is_hidden: {
type: DataTypes.BOOLEAN,
allowNull: false,
defaultValue: false,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
titles.associate = (db) => {
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
db.titles.hasMany(db.inventory_items, {
as: 'inventory_items_title_item',
foreignKey: {
name: 'title_itemId',
},
constraints: false,
});
db.titles.hasMany(db.achievements, {
as: 'achievements_reward_title',
foreignKey: {
name: 'reward_titleId',
},
constraints: false,
});
db.titles.hasMany(db.daily_rewards, {
as: 'daily_rewards_title_item',
foreignKey: {
name: 'title_itemId',
},
constraints: false,
});
//end loop
db.titles.belongsTo(db.users, {
as: 'createdBy',
});
db.titles.belongsTo(db.users, {
as: 'updatedBy',
});
};
return titles;
};

View File

@ -0,0 +1,132 @@
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,
},
progress_value: {
type: DataTypes.INTEGER,
},
is_completed: {
type: DataTypes.BOOLEAN,
allowNull: false,
defaultValue: false,
},
completed_at: {
type: DataTypes.DATE,
},
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.achievements, {
as: 'achievement',
foreignKey: {
name: 'achievementId',
},
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,353 @@
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.avatar_customizations, {
as: 'avatar_customizations_user',
foreignKey: {
name: 'userId',
},
constraints: false,
});
db.users.hasMany(db.purchases, {
as: 'purchases_user',
foreignKey: {
name: 'userId',
},
constraints: false,
});
db.users.hasMany(db.inventory_items, {
as: 'inventory_items_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.quizzes, {
as: 'quizzes_owner',
foreignKey: {
name: 'ownerId',
},
constraints: false,
});
db.users.hasMany(db.orbix_quiz_assistant_sessions, {
as: 'orbix_quiz_assistant_sessions_user',
foreignKey: {
name: 'userId',
},
constraints: false,
});
db.users.hasMany(db.matches, {
as: 'matches_host',
foreignKey: {
name: 'hostId',
},
constraints: false,
});
db.users.hasMany(db.match_players, {
as: 'match_players_user',
foreignKey: {
name: 'userId',
},
constraints: false,
});
db.users.hasMany(db.moderation_reports, {
as: 'moderation_reports_reporter',
foreignKey: {
name: 'reporterId',
},
constraints: false,
});
db.users.hasMany(db.community_modes, {
as: 'community_modes_creator',
foreignKey: {
name: 'creatorId',
},
constraints: false,
});
db.users.hasMany(db.community_mode_build_sessions, {
as: 'community_mode_build_sessions_user',
foreignKey: {
name: 'userId',
},
constraints: false,
});
db.users.hasMany(db.leaderboard_entries, {
as: 'leaderboard_entries_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,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 wheel_events = sequelize.define(
'wheel_events',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
trigger_question_index: {
type: DataTypes.INTEGER,
},
reward_type: {
type: DataTypes.ENUM,
values: [
"bonus_points",
"double_points",
"triple_points",
"bonus_yux",
"mystery_prize",
"lucky_multiplier",
"jackpot"
],
},
multiplier_value: {
type: DataTypes.DECIMAL,
},
bonus_points: {
type: DataTypes.INTEGER,
},
bonus_yux: {
type: DataTypes.INTEGER,
},
music_track: {
type: DataTypes.ENUM,
values: [
"track_a",
"track_b"
],
},
event_started_at: {
type: DataTypes.DATE,
},
event_ended_at: {
type: DataTypes.DATE,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
wheel_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.wheel_events.belongsTo(db.matches, {
as: 'match',
foreignKey: {
name: 'matchId',
},
constraints: false,
});
db.wheel_events.belongsTo(db.users, {
as: 'createdBy',
});
db.wheel_events.belongsTo(db.users, {
as: 'updatedBy',
});
};
return wheel_events;
};

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

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

27
backend/src/db/utils.js Normal file
View File

@ -0,0 +1,27 @@
const validator = require('validator');
const { v4: uuid } = require('uuid');
const Sequelize = require('./models').Sequelize;
module.exports = class Utils {
static uuid(value) {
let id = value;
if (!validator.isUUID(id)) {
id = uuid();
}
return id;
}
static ilike(model, column, value) {
return Sequelize.where(
Sequelize.fn(
'lower',
Sequelize.col(`${model}.${column}`),
),
{
[Sequelize.Op.like]: `%${value}%`.toLowerCase(),
},
);
}
};

23
backend/src/helpers.js Normal file
View File

@ -0,0 +1,23 @@
const jwt = require('jsonwebtoken');
const config = require('./config');
module.exports = class Helpers {
static wrapAsync(fn) {
return function (req, res, next) {
fn(req, res, next).catch(next);
};
}
static commonErrorHandler(error, req, res, next) {
if ([400, 403, 404].includes(error.code)) {
return res.status(error.code).send(error.message);
}
console.error(error);
return res.status(500).send(error.message);
}
static jwtSign(data) {
return jwt.sign(data, config.secret_key, {expiresIn: '6h'});
};
};

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