@hedhog/admin
TypeScript icon, indicating that this package has built-in type declarations

0.0.122 • Public • Published

hedhog/admin

Hedhog Avatar

Table of Contents

Overview

The Hedhog Admin module is a collection of core modules essential for managing and administering applications within the HedHog framework. It brings together various modules that provide key functionalities such as authentication, menu configuration, permissions, screen management and user management.

Whether you need to secure access to resources, manage user role, or handle file uploads, the @hedhog/admin module provides everything required to manage a modern web application’s backend with minimal setup.

Included Modules<

  • @hedhog/auth: Provides authentication and authorization mechanisms, ensuring secure access to application resources.
  • @hedhog/locale: Provides solution for managing locale and translation across applications.
  • @hedhog/menu: Allows for the creation and management of dynamic menu within the application interface.
  • @hedhog/role: Facilitates the management of role, controlling access to specific features or areas.
  • @hedhog/route: Provides a comprehensive system for managing route within your application.
  • @hedhog/setting: Provides a solution for managing application setting.
  • @hedhog/screen: Provides a structure for managing different screens and UI components.
  • @hedhog/user: Manages user accounts, including creation, updates, and deletion, along with password encryption and secure access.

Installation

To install the @hedhog/admin module, use npm:

npm install @hedhog/admin

Usage

The @hedhog/admin module acts as a base for administrative tasks in HedHog applications. Once installed, you can integrate the included modules into your project to quickly set up and manage essential features for your admin interface.

import { AdminModule } from '@hedhog/admin';

@Module({
  imports: [AdminModule],
})
export class AppModule {}

By importing the AdminModule, you gain access to all the functionality provided by the individual modules, making it easier to manage authentication, permissions, user, and more.


Hedhog Auth

HedHog Auth is a library designed to handle authentication tasks within the HedHog framework. It provides functionalities for user login, token management, multi-factor authentication (MFA), and password reset, ensuring secure and reliable user authentication processes.

Features

  • Token Verification: Verify authentication tokens for user.
  • Login: Authenticate user with email and password, and handle multi-factor authentication if required.
  • OTP Management: Manage one-time passwords (OTP) for multi-factor authentication.
  • Password Reset: Facilitate password reset requests through email.

Controller

The AuthController defines the following endpoints:

  • GET /auth/verify: Verify the authentication status of the user.
  • POST /auth/login: Authenticate a user using email and password.
  • POST /auth/otp: Verify an OTP code for multi-factor authentication.
  • POST /auth/forget: Request a password reset link via email.

AuthService

The AuthService provides methods for:

  • verifyToken(token: string): Verify the provided JWT token.
  • generateRandomString(length: number): Generate a random string of specified length.
  • generateRandomNumber(): Generate a random 6-digit number.
  • loginWithEmailAndPassword(email: string, password: string): Authenticate user with email and password and handle multi-factor authentication if required.
  • getToken(user): Generate a JWT token for the authenticated user.
  • forget({ email }: ForgetDTO): Initiate a password reset process for the specified email.
  • otp({ token, code }: OtpDTO): Verify the OTP code provided by the user.

Folder Structure

├── auth.controller.ts         # Defines route for authentication
├── auth.service.ts            # Contains authentication logic
├── auth.service.spec.ts      # Testing file for auth service
├── auth.module.ts             # Authentication module
├── dto/
│   ├── forget.dto.ts          # Data Transfer Object for password reset
│   ├── login.dto.ts           # Data Transfer Object for login
│   └── otp.dto.ts             # Data Transfer Object for OTP verification
├── decorators/
│   ├── public.decorator.ts    # Custom decorator to mark public route
│   └── user.decorator.ts      # Custom decorator to get user from request
├── types/
│   └── user.type.ts           # Type definitions for user-related data
├── enums/
│   └── multifactor-type.enum.ts # Enumeration for multi-factor authentication types
├── guards/
│   └── auth.guard.ts          # Guard for protecting route

Hedhog Locale

Hedhog Locale module provides a powerful solution for managing locale and translation across applications. It includes functionalities to retrieve, create, update, and delete locale data, with support for pagination and localization. The module integrates seamlessly within the HedHog ecosystem, using @hedhog/pagination for handling paginated responses and @hedhog/prisma for database interactions.

Controller Endpoints

GET /locale/system/enables

  • Description: Retrieve a paginated list of enabled locale.
  • Authentication: Not required (public endpoint).
  • Parameters:
    • locale (string): Locale code for filtering.
    • Pagination parameters (optional).

GET /locale/:localeCode/:namespace

  • Description: Retrieve translation for a specific locale and namespace.
  • Authentication: Not required (public endpoint).
  • Parameters:
    • localeCode (string): The locale code to fetch translation for.
    • namespace (string): The namespace to fetch translation from.

GET /locale

  • Description: Retrieve a paginated list of locale.
  • Authentication: Required.
  • Pagination: Supports pagination through query parameters.

GET /locale/:id

  • Description: Retrieve a specific locale by its ID.
  • Authentication: Required.
  • Parameters:
    • id (number): The ID of the locale to retrieve.

POST /locale

  • Description: Create a new locale entry.
  • Authentication: Required.
  • Body:
    • code (string): The code of the locale.
    • region (string): The region of the locale.

PATCH /locale/:id

  • Description: Update an existing locale entry.
  • Authentication: Required.
  • Parameters:
    • id (number): The ID of the locale to update.
  • Body:
    • code (string, optional): Updated code of the locale.
    • region (string, optional): Updated region of the locale.

DELETE /locale

  • Description: Delete one or more locale.
  • Authentication: Required.
  • Body:
    • ids (number[]): Array of locale IDs to delete.

Service Methods

getEnables(locale: string, paginationParams: PaginationDTO)

  • Description: Retrieves a paginated list of enabled locale based on locale code and pagination parameters.
  • Parameters:
    • locale (string): Locale code for filtering.
    • paginationParams (PaginationDTO): Includes pagination criteria.

getTranslations(localeCode: string, namespace: string)

  • Description: Retrieves translation for a given locale code and namespace.
  • Parameters:
    • localeCode (string): The locale code to fetch translation for.
    • namespace (string): The namespace to fetch translation from.

get(paginationParams: PaginationDTO)

  • Description: Retrieves a paginated list of all locale.
  • Parameters:
    • paginationParams (PaginationDTO): Includes pagination criteria.

getById(localeId: number)

  • Description: Retrieves a specific locale by its ID.
  • Parameters:
    • localeId (number): ID of the locale to retrieve.

create(data: CreateDTO)

  • Description: Creates a new locale entry.
  • Parameters:
    • data (CreateDTO): Includes code and region of the new locale.

update(id: number, data: UpdateDTO)

  • Description: Updates an existing locale entry.
  • Parameters:
    • id (number): ID of the locale to update.
    • data (UpdateDTO): Includes updated code and region.

delete(data: DeleteDTO)

  • Description: Deletes one or more locale entries.
  • Parameters:
    • data (DeleteDTO): Includes array of IDs to delete.

Folder Structure

|── dto/                         # Data Transfer Objects
│   ├── create.dto.ts            # DTO for creating locale
│   ├── delete.dto.ts            # DTO for deleting locale
│   └── update.dto.ts            # DTO for updating locale
|── locale.controller.ts         # Controller for locale
|── locale.decorator.ts          # Decorator for injecting locale into requests
|── locale.middleware.ts         # Middleware to handle locale-specific processing
|── locale.module.ts             # Module definition for locale
|── locale.service.ts            # Service class for locale logic
├── locale.service.spec.ts       # Testing file for locale service
|── index.ts                     # Main export file for the module

Hedhog Menu

HedHog Menu is a library for managing menu within the HedHog framework. It provides a set of RESTful endpoints for CRUD operations on menu items, as well as functionalities to handle pagination and ordering of menu.

Features

  • CRUD Operations: Create, Read, Update, and Delete menu items.
  • Pagination: Paginate menu items for efficient data retrieval.
  • Ordering: Update the order of menu items.

MenuController

The MenuController exposes the following endpoints:

  • GET /menu: Retrieve a list of menu with pagination.
  • GET /menu/:menuId: Retrieve a specific menu by ID.
  • POST /menu: Create a new menu item.
  • PATCH /menu/:menuId: Update an existing menu item by ID.
  • DELETE /menu: Delete menu items based on provided IDs.
  • PATCH /menu/order: Update the order of menu items.

MenuService

The MenuService class contains the business logic for handling menu operations, including querying the database and processing data.

  • getMenu(paginationParams: PaginationDTO): Retrieves a paginated list of menu items.
  • get(menuId: number): Retrieves a menu item by ID.
  • create(data: CreateDTO): Creates a new menu item.
  • update({ id, data }: { id: number; data: UpdateDTO }): Updates an existing menu item by ID.
  • delete(data: DeleteDTO): Deletes menu items based on provided IDs.
  • updateOrder(data: OrderDTO): Updates the order of menu items.

Folder Structure

├── menu.controller.ts       # Handles HTTP requests related to menu
├── menu.service.ts          # Contains business logic for menu operations
├── menu.service.spec.ts     # Testing file for menu service
├── menu.module.ts           # Module definition for menu functionalities
├── dto/
│   ├── create.dto.ts          # Data Transfer Object for creating a menu
│   ├── update.dto.ts          # Data Transfer Object for updating a menu
└── order.dto.ts           # Data Transfer Object for updating menu order

Hedhog Role

HedHog Role module is designed to handle role management within the HedHog framework. It allows for creating, updating, and deleting role and managing their relationships with user, menu, route, and screens.

Features

  • Role Management: Create, update, and delete role.
  • User Associations: Assign and manage user associated with role.
  • Menu, Route, and Screen Associations: Manage the association between role and menu, route, or screens.
  • Pagination: Handle paginated responses for all resources.

Controller Endpoints

GET /role

  • Description: Retrieve a paginated list of all role.
  • Authentication: Required (uses AuthGuard).
  • Parameters:
    • paginationParams (optional): Standard pagination parameters.

GET /role/:roleId

  • Description: Retrieve details of a specific role.
  • Authentication: Required (uses AuthGuard).
  • Parameters:
    • roleId (number): The ID of the role to retrieve.

POST /role

  • Description: Create a new role.
  • Authentication: Required (uses AuthGuard).
  • Parameters:
    • data (CreateDTO): The data for the new role (name, description, etc).

PATCH /role/:roleId

  • Description: Update an existing role.
  • Authentication: Required (uses AuthGuard).
  • Parameters:
    • roleId (number): The ID of the role to update.
    • data (UpdateDTO): The data to update for the role.

DELETE /role

  • Description: Delete one or more role.
  • Authentication: Required (uses AuthGuard).
  • Parameters:
    • data (DeleteDTO): List of role IDs to delete.

GET /role/:roleId/user

  • Description: Get a list of user associated with a specific role.
  • Authentication: Required (uses AuthGuard).
  • Parameters:
    • roleId (number): The ID of the role to retrieve user for.
    • paginationParams (optional): Standard pagination parameters.

GET /role/:roleId/menu

  • Description: Get a list of menu associated with a specific role.
  • Authentication: Required (uses AuthGuard).
  • Parameters:
    • roleId (number): The ID of the role to retrieve menu for.
    • paginationParams (optional): Standard pagination parameters.

GET /role/:roleId/route

  • Description: Get a list of route associated with a specific role.
  • Authentication: Required (uses AuthGuard).
  • Parameters:
    • roleId (number): The ID of the role to retrieve route for.
    • paginationParams (optional): Standard pagination parameters.

GET /role/:roleId/screens

  • Description: Get a list of screens associated with a specific role.
  • Authentication: Required (uses AuthGuard).
  • Parameters:
    • roleId (number): The ID of the role to retrieve screens for.
    • paginationParams (optional): Standard pagination parameters.

PATCH /role/:roleId/user

  • Description: Update the user associated with a specific role.
  • Authentication: Required (uses AuthGuard).
  • Parameters:
    • roleId (number): The ID of the role. -data (UpdateIdsDTO): List of user IDs to associate with the role.

PATCH /role/:roleId/menu

  • Description: Update the menu associated with a specific role.
  • Authentication: Required (uses AuthGuard).
  • Parameters:
    • roleId (number): The ID of the role.
    • data (UpdateIdsDTO): List of menu IDs to associate with the role.

PATCH /role/:roleId/route

  • Description: Update the route associated with a specific role.
  • Authentication: Required (uses AuthGuard).
  • Parameters:
    • roleId (number): The ID of the role.
    • data (UpdateIdsDTO): List of route IDs to associate with the role.

PATCH /role/:roleId/screens

  • Description: Update the screens associated with a specific role.
  • Authentication: Required (uses AuthGuard).
  • Parameters:
    • roleId (number): The ID of the role.
    • data (UpdateIdsDTO): List of screen IDs to associate with the role.

Service Methods

updateUsers(roleId: number, { ids }: UpdateIdsDTO)

  • Description: Updates the user associated with a specific role by deleting existing associations and creating new ones.
  • Parameters:
    • roleId (number): The ID of the role to update.
    • data: An object containing an array of user IDs to associate with the role.

updateScreens(roleId: number, data: UpdateIdsDTO)

  • Description: Updates the screens associated with a specific role by deleting existing associations and creating new ones.
  • Parameters:
    • roleId (number): The ID of the role to update.
    • data: An object containing an array of screen IDs to associate with the role.

updateRoutes(roleId: number, data: UpdateIdsDTO)

  • Description: Updates the route associated with a specific role by deleting existing associations and creating new ones.
  • Parameters:
    • roleId (number): The ID of the role to update.
    • data: An object containing an array of route IDs to associate with the role.

updateMenus(roleId: number, data: UpdateIdsDTO)

  • Description: Updates the menu associated with a specific role by deleting existing associations and creating new ones.
  • Parameters:
    • roleId (number): The ID of the role to update.
    • data: An object containing an array of menu IDs to associate with the role.

listUsers(roleId: number, paginationParams: PaginationDTO)

  • Description: Retrieves a paginated list of user associated with a specific role.
  • Parameters:
    • roleId (number): The ID of the role to retrieve associated user.
    • paginationParams: Includes pagination criteria.

listMenus(roleId: number, paginationParams: PaginationDTO)

  • Description: Retrieves a paginated list of menu associated with a specific role.
  • Parameters:
    • roleId (number): The ID of the role to retrieve associated menu.
    • paginationParams: Includes pagination criteria.

listRoutes(roleId: number, paginationParams: PaginationDTO)

  • Description: Retrieves a paginated list of route associated with a specific role.
  • Parameters:
    • roleId (number): The ID of the role to retrieve associated route.
    • paginationParams: Includes pagination criteria.

listScreens(roleId: number, paginationParams: PaginationDTO)

  • Description: Retrieves a paginated list of screens associated with a specific role.
  • Parameters:
    • roleId (number): The ID of the role to retrieve associated screens.
    • paginationParams: Includes pagination criteria.

getRoles(paginationParams: PaginationDTO)

  • Description: Retrieves a paginated list of all role, with optional search functionality based on name and description.
  • Parameters:
    • paginationParams: Includes pagination and search criteria.

get(roleId: number)

  • Description: Retrieves a specific role by its ID.
  • Parameters:
    • roleId (number): The ID of the role to retrieve.

create(data: CreateDTO)

  • Description: Creates a new role with the specified name and description.
  • Parameters:
    • data: An object containing the following properties:
    • name (string): The name of the new role.
    • description (string): A description of the new role.

update({ id, data }: { id: number; data: UpdateDTO })

  • Description: Updates an existing role identified by its ID.
  • Parameters:
    • id (number): The ID of the role to update.
    • data: An object containing the updated information for the role, defined in UpdateDTO.

delete({ ids }: DeleteDTO)

  • Description: Deletes one or more role identified by their IDs.
  • Parameters:
    • ids (array of number): An array containing the IDs of the role to delete.

Folder Structure

├── decorators/
│   ├── role.decorator.ts    # Custom decorator for role
├── dto/                        # Data Transfer Objects
│   ├── create.dto.ts           # DTO for creating a role
│   ├── update.dto.ts           # DTO for updating a role
├── guards/
│   └── role.guard.ts         # Guard for role
├── role.controller.ts        # Handles HTTP requests related to role
├── role.module.ts            # Module definition for the role
└── role.service.ts           # Service class for role-related logic
└── role.service.spec.ts      # Testing file for role service

Hedhog Route

Hedhog Route module provides a comprehensive system for managing route within your application. It allows administrators to define, modify, and control access to different route within the application. The module also integrates with other Hedhog modules to ensure that permissions and role are respected when accessing route.

Features

  • CRUD Operations: Create, Read, Update, and Delete route.
  • Route Management: Manage application route, including their accessibility and assignment to user role.
  • Permissions Integration: Integrates with Hedhog Permission to control access to specific route based on user role.

Controller Endpoints

GET /route

  • Description: Retrieves a paginated list of all route.
  • Authentication: Required (uses AuthGuard).
  • Parameters:
    • paginationParams: Includes pagination criteria.

GET /route/:routeId

  • Description: Retrieves a specific route by its ID.
  • Authentication: Required (uses AuthGuard).
  • Parameters:
    • routeId (number): The ID of the route to retrieve.

POST /route

  • Description: Creates a new route with the specified URL and method.
  • Authentication: Required (uses AuthGuard).
  • Parameters:
    • data: An object containing the url and method for the new route.

PATCH /route/:routeId

  • Description: Updates an existing route identified by its ID.
  • Authentication: Required (uses AuthGuard).
  • Parameters:
    • routeId (number): The ID of the route to update.
    • data: An object containing the updated information for the route.

DELETE /route

  • Description: Deletes one or more route.
  • Authentication: Required (uses AuthGuard).
  • Parameters:
    • data: An object containing an array of route IDs to delete.

GET /route/:routeId/role

  • Description: Retrieves a paginated list of role associated with a specific route.
  • Authentication: Required (uses AuthGuard).
  • Parameters:
    • routeId (number): The ID of the route to retrieve associated role.
    • paginationParams: Includes pagination criteria.

PATCH /route/:routeId/role

  • Description: Updates the role associated with a specific route.
  • Authentication: Required (uses AuthGuard).
  • Parameters:
    • routeId (number): The ID of the route.
    • data: An object containing an array of role IDs to associate with the route.

GET /route/:routeId/screens

  • Description: Retrieves a paginated list of screens associated with a specific route.
  • Authentication: Required (uses AuthGuard).
  • Parameters:
    • routeId (number): The ID of the route to retrieve associated screens.
    • paginationParams: Includes pagination criteria.

PATCH /route/:routeId/screens

  • Description: Updates the screens associated with a specific route.
  • Authentication: Required (uses AuthGuard).
  • Parameters:
    • routeId (number): The ID of the route.
    • data: An object containing an array of screen IDs to associate with the route.

Service Methods

getRoutes(paginationParams: PaginationDTO)

  • Description: Retrieves a paginated list of route with optional search functionality based on URL and method.
  • Parameters:
    • paginationParams: Includes pagination and search criteria.

getRouteById(routeId: number)

  • Description: Retrieves a specific route by its ID.
  • Parameters:
    • routeId: The ID of the route to retrieve.

create(data: CreateDTO)

  • Description: Creates a new route with the specified URL and method.
  • Parameters:
    • data: An object containing the URL and method for the new route.

update({ id, data }: { id: number; data: UpdateDTO })

  • Description: Updates an existing route identified by its ID.
  • Parameters:
    • id: The ID of the route to update.
    • data: An object containing the updated information for the route.

delete({ ids }: DeleteDTO)

  • Description: Deletes one or more route identified by their IDs.
  • Parameters:
  • ids: An object containing an array of route IDs to delete.

listRoles(routeId: number, paginationParams: PaginationDTO)

  • Description: Retrieves a paginated list of role associated with a specific route.
  • Parameters:
    • routeId: The ID of the route to retrieve associated role.
    • paginationParams: Includes pagination parameters.

updateRoles(routeId: number, data: UpdateIdsDTO)

  • Description: Updates the role associated with a specific route.
  • Parameters:
    • routeId: The ID of the route.
    • data: An object containing an array of role IDs to associate with the route.

listScreens(routeId: number, paginationParams: PaginationDTO)

  • Description: Retrieves a paginated list of screens associated with a specific route.
  • Parameters:
    • routeId: The ID of the route to retrieve associated screens.
    • paginationParams: Includes pagination parameters.

updateScreens(routeId: number, data: UpdateIdsDTO)

  • Description: Updates the screens associated with a specific route.
  • Parameters:
    • routeId: The ID of the route.
    • data: An object containing an array of screen IDs to associate with the route.

Folder Structure

├── dto/                        # Data Transfer Objects
│   ├── create.dto.ts           # DTO for creating a route
│   ├── update.dto.ts           # DTO for updating a route
├── guards/
│   └── route.guard.ts         # Guard for route
├── route.controller.ts        # Handles HTTP requests related to route
├── route.module.ts            # Module definition for the route
├── route.service.ts           # Service class for route-related logic
└── route.service.spec.ts      # Testing file for route service

Hedhog Setting

Hedhog Setting module provides a comprehensive solution for managing application setting. It includes functionalities to create, read, update, and delete setting, along with support for pagination and search capabilities. This module integrates with the HedHog ecosystem, utilizing @hedhog/pagination for managing paginated results and @hedhog/prisma for database interactions.

Controller Endpoints

GET /setting

  • Description: Retrieve a paginated list of setting.
  • Authentication: Required (uses AuthGuard).
  • Pagination: Supports pagination through query parameters.

GET /setting/:settingId

  • Description: Retrieve a specific setting by its ID.
  • Authentication: Required (uses AuthGuard).
  • Parameters:
    • settingId (number): The ID of the setting to retrieve.

POST /setting

  • Description: Create a new setting.
  • Authentication: Required (uses AuthGuard).
  • Body:
    • name (string): Name of the setting.

PATCH /setting/:settingId

  • Description: Update an existing setting.
  • Authentication: Required (uses AuthGuard).
  • Parameters:
    • settingId (number): The ID of the setting to update.
  • Body:
    • name (string, optional): Updated name of the setting.

DELETE /setting

  • Description: Delete one or more setting.
  • Authentication: Required (uses AuthGuard).
  • Body:
    • ids (number[]): Array of setting IDs to delete.

Service Methods

getSettings(paginationParams: PaginationDTO)

  • Description: Retrieves a paginated list of setting with optional search functionality.
  • Parameters:
    • paginationParams: Includes pagination and search criteria.

get(settingId: number)

  • Description: Retrieves a specific setting by its ID.
  • Parameters:
    • settingId: ID of the setting to retrieve.

create(data: CreateDTO)

  • Description: Creates a new setting.
  • Parameters:
    • data: Includes name of the setting.

update(id: number, data: UpdateDTO)

  • Description: Updates an existing setting.
  • Parameters:
    • id: ID of the setting to update.
    • data: Includes updated name of the setting.

delete(data: DeleteDTO)

  • Description: Deletes one or more setting.
  • Parameters:
    • data: Includes array of ids to delete.

Folder Structure

|── dto/                     # Data Transfer Objects
│   |── create.dto.ts        # DTO for creating setting
│   |── delete.dto.ts        # DTO for deleting setting
│   |── update.dto.ts        # DTO for updating setting
|── setting.controller.ts    # Controller for setting
|── setting.module.ts        # Module definition for setting
|── setting.service.ts       # Service class for setting logic
|── setting.service.spec.ts  # Testing file for setting service

Hedhog Screen

Hedhog Screen module is part of the HedHog framework and provides functionalities for managing screens in your application. It offers a set of RESTful API endpoints and service methods to handle CRUD operations and pagination for screens.

Features

  • Create, Read, Update, and Delete (CRUD) operations for screens.
  • Pagination for listing screens.
  • Search functionality to filter screens based on various attributes.

Controller Endpoints

GET /screens

  • Description: Retrieve a paginated list of screens.
  • Authentication: Required (uses AuthGuard).
  • Pagination: Supports pagination through query parameters.

GET /screens/:screenId

  • Description: Retrieve a specific screen by its ID.
  • Authentication: Required (uses AuthGuard).
  • Parameters:
    • screenId (number): The ID of the screen to retrieve.

POST /screens

  • Description: Create a new screen.
  • Authentication: Required (uses AuthGuard).
  • Body:
    • name (string): Name of the screen.
    • slug (string): Unique identifier for the screen.
    • description (string): Description of the screen.
    • icon (string): Icon associated with the screen.

PATCH /screens/:screenId

  • Description: Update an existing screen.
  • Authentication: Required (uses AuthGuard).
  • Parameters:
    • screenId (number): The ID of the screen to update.
  • Body:
    • name (string, optional): Updated name of the screen.
    • slug (string, optional): Updated slug of the screen.
    • description (string, optional): Updated description of the screen.
    • icon (string, optional): Updated icon of the screen.

DELETE /screens

  • Description: Delete one or more screens.
  • Authentication: Required (uses AuthGuard).
  • Body:
    • ids (number[]): Array of screen IDs to delete.

Service Methods

getScreens(paginationParams: PaginationDTO)

  • Description: Retrieves a paginated list of screens with optional search functionality.
  • Parameters:
    • paginationParams: Includes pagination and search criteria.

get(screenId: number)

  • Description: Retrieves a specific screen by its ID.
  • Parameters:
    • screenId: ID of the screen to retrieve.

create(data: CreateDTO)

  • Description: Creates a new screen.
  • Parameters:
    • data: Includes name, slug, description, and icon.

update(id: number, data: UpdateDTO)

  • Description: Updates an existing screen.
  • Parameters:
    • id: ID of the screen to update.
    • data: Includes updated name, slug, description, and icon.

delete(data: DeleteDTO)

  • Description: Deletes one or more screens.
  • Parameters:
    • data: Includes array of ids to delete.

Folder Structure

├── dto/                        # Data Transfer Objects
│   ├── create.dto.ts           # DTO for creating a screen
│   ├── update.dto.ts           # DTO for updating a screen
├── screen.controller.ts        # Handles HTTP requests related to screens
├── screen.module.ts            # Module definition for the screen
└── screen.service.ts           # Service class for screen-related logic
└── screen.service.spec.ts      # Testing file for screen service

Hedhog User

The Hedhog User module in HedHog provides functionality to manage user data within an application. This module leverages the HedHog framework components, including pagination and Prisma integration, to offer a robust user management system.

Integrations

  • Pagination: Utilizes @hedhog/pagination for managing paginated results of user queries.
  • Database Interaction: Uses @hedhog/prisma to interface with the database for user data management.
  • Authentication: Secured with Auth Module from @hedhog/admin to ensure that only authorized user can access or modify user data.

Controller Endpoints

GET /user

  • Description: Retrieve a paginated list of user.
  • Authentication: Required (uses AuthGuard).
  • Pagination: Supports pagination through query parameters.

GET /user/:userId

  • Description: Retrieve a specific user by its ID.
  • Authentication: Required (uses AuthGuard).
  • Parameters:
    • userId (number): The ID of the user to retrieve.

POST /user

  • Description: Create a new user.
  • Authentication: Required (uses AuthGuard).
  • Body:
    • email (string): Email address of the user.
    • name (string): Name of the user.
    • password (string): Password of the user.

PATCH /user/:userId

  • Description: Update an existing user.
  • Authentication: Required (uses AuthGuard).
  • Parameters:
    • userId (number): The ID of the user to update.
  • Body:
    • email (string, optional): Updated email address of the user.
    • name (string, optional): Updated name of the user.
    • password (string, optional): Updated password of the user.

DELETE /user

  • Description: Delete one or more user.
  • Authentication: Required (uses AuthGuard).
  • Body:
    • ids (number[]): Array of user IDs to delete.

Service Methods

getUsers(paginationParams: PaginationDTO)

  • Description: Retrieves a paginated list of user with optional search functionality.
  • Parameters:
    • paginationParams: Includes pagination and search criteria.

get(userId: number)

  • Description: Retrieves a specific user by its ID.
  • Parameters:
    • userId: ID of the user to retrieve.

hashPassword(password: string): Promise<string>

  • Description: Hashes a password using bcrypt.
  • Parameters:
    • password: The password to be hashed.

create(data: CreateDTO)

  • Description: Creates a new user.
  • Parameters:
    • data: Includes email, name, and password.

update(id: number, data: UpdateDTO)

  • Description: Updates an existing user.
  • Parameters:
    • id: ID of the user to update.
    • data: Includes updated email, name, and password.

delete(data: DeleteDTO)

  • Description: Deletes one or more user.
  • Parameters:
    • data: Includes array of user IDs to delete.

Folder Structure

├── constants/
│   └── user.constants.ts    # Constants related to user module
├── dto/
│   ├── create.dto.ts        # Data Transfer Object for creating a user
│   └── update.dto.ts        # Data Transfer Object for updating a user
├── user.module.ts           # Module for UserService
├── user.controller.ts       # Controller for user-related endpoints
└── user.service.ts          # Service handling business logic for user

Dependencies (0)

    Dev Dependencies (9)

    Package Sidebar

    Install

    npm i @hedhog/admin

    Weekly Downloads

    581

    Version

    0.0.122

    License

    MIT

    Unpacked Size

    486 kB

    Total Files

    245

    Last publish

    Collaborators

    • gabrielhcode
    • mqueiros
    • saulotarsobc
    • anthonyrafael
    • joaohcrangel