Compare commits
No commits in common. "main" and "zaka" have entirely different histories.
255
.gitignore
vendored
Executable file → Normal file
255
.gitignore
vendored
Executable file → Normal file
@ -1,129 +1,126 @@
|
|||||||
#-------------------------
|
#-------------------------
|
||||||
# Operating Specific Junk Files
|
# Operating Specific Junk Files
|
||||||
#-------------------------
|
#-------------------------
|
||||||
|
|
||||||
# OS X
|
# OS X
|
||||||
.DS_Store
|
.DS_Store
|
||||||
.AppleDouble
|
.AppleDouble
|
||||||
.LSOverride
|
.LSOverride
|
||||||
|
|
||||||
# OS X Thumbnails
|
# OS X Thumbnails
|
||||||
._*
|
._*
|
||||||
|
|
||||||
# Windows image file caches
|
# Windows image file caches
|
||||||
Thumbs.db
|
Thumbs.db
|
||||||
ehthumbs.db
|
ehthumbs.db
|
||||||
Desktop.ini
|
Desktop.ini
|
||||||
|
|
||||||
# Recycle Bin used on file shares
|
# Recycle Bin used on file shares
|
||||||
$RECYCLE.BIN/
|
$RECYCLE.BIN/
|
||||||
|
|
||||||
# Windows Installer files
|
# Windows Installer files
|
||||||
*.cab
|
*.cab
|
||||||
*.msi
|
*.msi
|
||||||
*.msm
|
*.msm
|
||||||
*.msp
|
*.msp
|
||||||
|
|
||||||
# Windows shortcuts
|
# Windows shortcuts
|
||||||
*.lnk
|
*.lnk
|
||||||
|
|
||||||
# Linux
|
# Linux
|
||||||
*~
|
*~
|
||||||
|
|
||||||
# KDE directory preferences
|
# KDE directory preferences
|
||||||
.directory
|
.directory
|
||||||
|
|
||||||
# Linux trash folder which might appear on any partition or disk
|
# Linux trash folder which might appear on any partition or disk
|
||||||
.Trash-*
|
.Trash-*
|
||||||
|
|
||||||
#-------------------------
|
#-------------------------
|
||||||
# Environment Files
|
# Environment Files
|
||||||
#-------------------------
|
#-------------------------
|
||||||
# These should never be under version control,
|
# These should never be under version control,
|
||||||
# as it poses a security risk.
|
# as it poses a security risk.
|
||||||
.env
|
.env
|
||||||
.vagrant
|
.vagrant
|
||||||
Vagrantfile
|
Vagrantfile
|
||||||
|
|
||||||
#-------------------------
|
#-------------------------
|
||||||
# Temporary Files
|
# Temporary Files
|
||||||
#-------------------------
|
#-------------------------
|
||||||
writable/cache/*
|
writable/cache/*
|
||||||
!writable/cache/index.html
|
!writable/cache/index.html
|
||||||
|
|
||||||
writable/logs/*
|
writable/logs/*
|
||||||
!writable/logs/index.html
|
!writable/logs/index.html
|
||||||
|
|
||||||
writable/session/*
|
writable/session/*
|
||||||
!writable/session/index.html
|
!writable/session/index.html
|
||||||
|
|
||||||
writable/uploads/*
|
writable/uploads/*
|
||||||
!writable/uploads/index.html
|
!writable/uploads/index.html
|
||||||
|
|
||||||
writable/debugbar/*
|
writable/debugbar/*
|
||||||
!writable/debugbar/.gitkeep
|
!writable/debugbar/.gitkeep
|
||||||
|
|
||||||
php_errors.log
|
php_errors.log
|
||||||
|
|
||||||
#-------------------------
|
#-------------------------
|
||||||
# User Guide Temp Files
|
# User Guide Temp Files
|
||||||
#-------------------------
|
#-------------------------
|
||||||
user_guide_src/build/*
|
user_guide_src/build/*
|
||||||
user_guide_src/cilexer/build/*
|
user_guide_src/cilexer/build/*
|
||||||
user_guide_src/cilexer/dist/*
|
user_guide_src/cilexer/dist/*
|
||||||
user_guide_src/cilexer/pycilexer.egg-info/*
|
user_guide_src/cilexer/pycilexer.egg-info/*
|
||||||
|
|
||||||
#-------------------------
|
#-------------------------
|
||||||
# Test Files
|
# Test Files
|
||||||
#-------------------------
|
#-------------------------
|
||||||
tests/coverage*
|
tests/coverage*
|
||||||
|
|
||||||
# Don't save phpunit under version control.
|
# Don't save phpunit under version control.
|
||||||
phpunit
|
phpunit
|
||||||
|
|
||||||
#-------------------------
|
#-------------------------
|
||||||
# Composer
|
# Composer
|
||||||
#-------------------------
|
#-------------------------
|
||||||
vendor/
|
vendor/
|
||||||
|
|
||||||
#-------------------------
|
#-------------------------
|
||||||
# IDE / Development Files
|
# IDE / Development Files
|
||||||
#-------------------------
|
#-------------------------
|
||||||
|
|
||||||
# Modules Testing
|
# Modules Testing
|
||||||
_modules/*
|
_modules/*
|
||||||
|
|
||||||
# phpenv local config
|
# phpenv local config
|
||||||
.php-version
|
.php-version
|
||||||
|
|
||||||
# Jetbrains editors (PHPStorm, etc)
|
# Jetbrains editors (PHPStorm, etc)
|
||||||
.idea/
|
.idea/
|
||||||
*.iml
|
*.iml
|
||||||
|
|
||||||
# NetBeans
|
# NetBeans
|
||||||
/nbproject/
|
/nbproject/
|
||||||
/build/
|
/build/
|
||||||
/nbbuild/
|
/nbbuild/
|
||||||
/dist/
|
/dist/
|
||||||
/nbdist/
|
/nbdist/
|
||||||
/nbactions.xml
|
/nbactions.xml
|
||||||
/nb-configuration.xml
|
/nb-configuration.xml
|
||||||
/.nb-gradle/
|
/.nb-gradle/
|
||||||
|
|
||||||
# Sublime Text
|
# Sublime Text
|
||||||
*.tmlanguage.cache
|
*.tmlanguage.cache
|
||||||
*.tmPreferences.cache
|
*.tmPreferences.cache
|
||||||
*.stTheme.cache
|
*.stTheme.cache
|
||||||
*.sublime-workspace
|
*.sublime-workspace
|
||||||
*.sublime-project
|
*.sublime-project
|
||||||
.phpintel
|
.phpintel
|
||||||
/api/
|
/api/
|
||||||
|
|
||||||
# Visual Studio Code
|
# Visual Studio Code
|
||||||
.vscode/
|
.vscode/
|
||||||
|
|
||||||
/results/
|
/results/
|
||||||
/phpunit*.xml
|
/phpunit*.xml
|
||||||
/public/.htaccess
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
2
.serena/.gitignore
vendored
2
.serena/.gitignore
vendored
@ -1,2 +0,0 @@
|
|||||||
/cache
|
|
||||||
/project.local.yml
|
|
||||||
@ -1 +0,0 @@
|
|||||||
CLQMS backend is a PHP 8.1+ CodeIgniter 4 API-only project that follows PSR-12 spacing/brace rules and prefers short arrays. New PHP files should enable `declare(strict_types=1)` and use typed arguments/returns (nullable unions over doc-only hints). Controllers use `ResponseTrait` to emit `{ status, message, data }` JSON responses; shared logic lives in `app/Libraries`/`app/Traits`. Guard clauses and single-purpose helpers keep methods ~40 lines; repeated flows are extracted. Database work uses Query Builder/Model methods, `helper('utc')`, and `checkDbError()` for manual queries. Multi-table writes wrap `$this->db->transStart()/transComplete()` with status checks. Lookups leverage `App\\Libraries\\Lookups` and JSON files in `app/Libraries/Data/valuesets/`. Routes stay in `app/Config/Routes.php` grouped by resource; filters like `auth` guard protected routes. Audits/logging use `log_message` with sanitized data. Tests live under `tests/Feature` and `tests/Unit`, use PHPUnit 10.5+ conventions, and expect status assertions per HTTP semantics.
|
|
||||||
@ -1,14 +0,0 @@
|
|||||||
Essential commands for CLQMS development (run from repo root on Windows PowerShell):
|
|
||||||
|
|
||||||
• `composer install` – install PHP dependencies before running CodeIgniter or tests.
|
|
||||||
• `npm install` – sync `package-lock.json` for tooling such as API docs bundler.
|
|
||||||
• `./vendor/bin/phpunit` – run entire PHPUnit suite (or target files via `--filter`).
|
|
||||||
• `php spark test --filter <Class>::<method>` – focused test run when you know the class/method.
|
|
||||||
• `php spark migrate` / `php spark migrate:rollback` – apply or roll back database migrations.
|
|
||||||
• `php spark serve` – lightweight dev server for the API while developing locally.
|
|
||||||
• `node public/bundle-api-docs.js` – regenerate bundled OpenAPI docs whenever the YAML files change.
|
|
||||||
• `git status`, `git diff`, `git log --oneline`, `git add <paths>`, `git commit`, `git pull`, `git push` – version control workflow commands.
|
|
||||||
• `ls` / `dir` / `Get-ChildItem` – inspect directories in PowerShell; `cd` to move between directories.
|
|
||||||
• `type <file>` or `Get-Content` – view file contents when tools are not convenient.
|
|
||||||
|
|
||||||
Use these commands routinely after code changes, tests, or migrations.
|
|
||||||
@ -1,10 +0,0 @@
|
|||||||
When a task is completed in CLQMS backend, follow these wrap-up steps:
|
|
||||||
|
|
||||||
1. Run relevant tests (`./vendor/bin/phpunit` or targeted `php spark test --filter ...`).
|
|
||||||
2. If migrations changed, run `php spark migrate` / `php spark migrate:rollback` locally and ensure schema updates succeed.
|
|
||||||
3. After editing OpenAPI documentation (YAML files or controller mappings), regenerate `public/api-docs.bundled.yaml` via `node public/bundle-api-docs.js` and check it into Git.
|
|
||||||
4. Confirm code adheres to PSR-12/CodeIgniter conventions (strict types, response format, transactions, guard clauses) before committing.
|
|
||||||
5. Review `git status/diff` to ensure only intended files are staged; do not commit `.env` or other secret files.
|
|
||||||
6. For shared logic changes, double-check lookup JSON cache use and response logging.
|
|
||||||
|
|
||||||
These steps keep the API consistent, documented, and tested before merging or deploying.
|
|
||||||
@ -1,154 +0,0 @@
|
|||||||
# the name by which the project can be referenced within Serena
|
|
||||||
project_name: "clqms01-be"
|
|
||||||
|
|
||||||
|
|
||||||
# list of languages for which language servers are started; choose from:
|
|
||||||
# al bash clojure cpp csharp
|
|
||||||
# csharp_omnisharp dart elixir elm erlang
|
|
||||||
# fortran fsharp go groovy haskell
|
|
||||||
# haxe java julia kotlin lua
|
|
||||||
# markdown
|
|
||||||
# matlab nix pascal perl php
|
|
||||||
# php_phpactor powershell python python_jedi r
|
|
||||||
# rego ruby ruby_solargraph rust scala
|
|
||||||
# swift terraform toml typescript typescript_vts
|
|
||||||
# vue yaml zig
|
|
||||||
# (This list may be outdated. For the current list, see values of Language enum here:
|
|
||||||
# https://github.com/oraios/serena/blob/main/src/solidlsp/ls_config.py
|
|
||||||
# For some languages, there are alternative language servers, e.g. csharp_omnisharp, ruby_solargraph.)
|
|
||||||
# Note:
|
|
||||||
# - For C, use cpp
|
|
||||||
# - For JavaScript, use typescript
|
|
||||||
# - For Free Pascal/Lazarus, use pascal
|
|
||||||
# Special requirements:
|
|
||||||
# Some languages require additional setup/installations.
|
|
||||||
# See here for details: https://oraios.github.io/serena/01-about/020_programming-languages.html#language-servers
|
|
||||||
# When using multiple languages, the first language server that supports a given file will be used for that file.
|
|
||||||
# The first language is the default language and the respective language server will be used as a fallback.
|
|
||||||
# Note that when using the JetBrains backend, language servers are not used and this list is correspondingly ignored.
|
|
||||||
languages:
|
|
||||||
- php
|
|
||||||
|
|
||||||
# the encoding used by text files in the project
|
|
||||||
# For a list of possible encodings, see https://docs.python.org/3.11/library/codecs.html#standard-encodings
|
|
||||||
encoding: "utf-8"
|
|
||||||
|
|
||||||
# line ending convention to use when writing source files.
|
|
||||||
# Possible values: unset (use global setting), "lf", "crlf", or "native" (platform default)
|
|
||||||
# This does not affect Serena's own files (e.g. memories and configuration files), which always use native line endings.
|
|
||||||
line_ending:
|
|
||||||
|
|
||||||
# The language backend to use for this project.
|
|
||||||
# If not set, the global setting from serena_config.yml is used.
|
|
||||||
# Valid values: LSP, JetBrains
|
|
||||||
# Note: the backend is fixed at startup. If a project with a different backend
|
|
||||||
# is activated post-init, an error will be returned.
|
|
||||||
language_backend:
|
|
||||||
|
|
||||||
# whether to use project's .gitignore files to ignore files
|
|
||||||
ignore_all_files_in_gitignore: true
|
|
||||||
|
|
||||||
# advanced configuration option allowing to configure language server-specific options.
|
|
||||||
# Maps the language key to the options.
|
|
||||||
# Have a look at the docstring of the constructors of the LS implementations within solidlsp (e.g., for C# or PHP) to see which options are available.
|
|
||||||
# No documentation on options means no options are available.
|
|
||||||
ls_specific_settings: {}
|
|
||||||
|
|
||||||
# list of additional paths to ignore in this project.
|
|
||||||
# Same syntax as gitignore, so you can use * and **.
|
|
||||||
# Note: global ignored_paths from serena_config.yml are also applied additively.
|
|
||||||
ignored_paths: []
|
|
||||||
|
|
||||||
# whether the project is in read-only mode
|
|
||||||
# If set to true, all editing tools will be disabled and attempts to use them will result in an error
|
|
||||||
# Added on 2025-04-18
|
|
||||||
read_only: false
|
|
||||||
|
|
||||||
# list of tool names to exclude.
|
|
||||||
# This extends the existing exclusions (e.g. from the global configuration)
|
|
||||||
#
|
|
||||||
# Below is the complete list of tools for convenience.
|
|
||||||
# To make sure you have the latest list of tools, and to view their descriptions,
|
|
||||||
# execute `uv run scripts/print_tool_overview.py`.
|
|
||||||
#
|
|
||||||
# * `activate_project`: Activates a project based on the project name or path.
|
|
||||||
# * `check_onboarding_performed`: Checks whether project onboarding was already performed.
|
|
||||||
# * `create_text_file`: Creates/overwrites a file in the project directory.
|
|
||||||
# * `delete_memory`: Delete a memory file. Should only happen if a user asks for it explicitly,
|
|
||||||
# for example by saying that the information retrieved from a memory file is no longer correct
|
|
||||||
# or no longer relevant for the project.
|
|
||||||
# * `edit_memory`: Replaces content matching a regular expression in a memory.
|
|
||||||
# * `execute_shell_command`: Executes a shell command.
|
|
||||||
# * `find_file`: Finds files in the given relative paths
|
|
||||||
# * `find_referencing_symbols`: Finds symbols that reference the given symbol using the language server backend
|
|
||||||
# * `find_symbol`: Performs a global (or local) search using the language server backend.
|
|
||||||
# * `get_current_config`: Prints the current configuration of the agent, including the active and available projects, tools, contexts, and modes.
|
|
||||||
# * `get_symbols_overview`: Gets an overview of the top-level symbols defined in a given file.
|
|
||||||
# * `initial_instructions`: Provides instructions Serena usage (i.e. the 'Serena Instructions Manual')
|
|
||||||
# for clients that do not read the initial instructions when the MCP server is connected.
|
|
||||||
# * `insert_after_symbol`: Inserts content after the end of the definition of a given symbol.
|
|
||||||
# * `insert_before_symbol`: Inserts content before the beginning of the definition of a given symbol.
|
|
||||||
# * `list_dir`: Lists files and directories in the given directory (optionally with recursion).
|
|
||||||
# * `list_memories`: List available memories. Any memory can be read using the `read_memory` tool.
|
|
||||||
# * `onboarding`: Performs onboarding (identifying the project structure and essential tasks, e.g. for testing or building).
|
|
||||||
# * `read_file`: Reads a file within the project directory.
|
|
||||||
# * `read_memory`: Read the content of a memory file. This tool should only be used if the information
|
|
||||||
# is relevant to the current task. You can infer whether the information
|
|
||||||
# is relevant from the memory file name.
|
|
||||||
# You should not read the same memory file multiple times in the same conversation.
|
|
||||||
# * `rename_memory`: Renames or moves a memory. Moving between project and global scope is supported
|
|
||||||
# (e.g., renaming "global/foo" to "bar" moves it from global to project scope).
|
|
||||||
# * `rename_symbol`: Renames a symbol throughout the codebase using language server refactoring capabilities.
|
|
||||||
# For JB, we use a separate tool.
|
|
||||||
# * `replace_content`: Replaces content in a file (optionally using regular expressions).
|
|
||||||
# * `replace_symbol_body`: Replaces the full definition of a symbol using the language server backend.
|
|
||||||
# * `safe_delete_symbol`:
|
|
||||||
# * `search_for_pattern`: Performs a search for a pattern in the project.
|
|
||||||
# * `write_memory`: Write some information (utf-8-encoded) about this project that can be useful for future tasks to a memory in md format.
|
|
||||||
# The memory name should be meaningful.
|
|
||||||
excluded_tools: []
|
|
||||||
|
|
||||||
# list of tools to include that would otherwise be disabled (particularly optional tools that are disabled by default).
|
|
||||||
# This extends the existing inclusions (e.g. from the global configuration).
|
|
||||||
included_optional_tools: []
|
|
||||||
|
|
||||||
# fixed set of tools to use as the base tool set (if non-empty), replacing Serena's default set of tools.
|
|
||||||
# This cannot be combined with non-empty excluded_tools or included_optional_tools.
|
|
||||||
fixed_tools: []
|
|
||||||
|
|
||||||
# list of mode names to that are always to be included in the set of active modes
|
|
||||||
# The full set of modes to be activated is base_modes + default_modes.
|
|
||||||
# If the setting is undefined, the base_modes from the global configuration (serena_config.yml) apply.
|
|
||||||
# Otherwise, this setting overrides the global configuration.
|
|
||||||
# Set this to [] to disable base modes for this project.
|
|
||||||
# Set this to a list of mode names to always include the respective modes for this project.
|
|
||||||
base_modes:
|
|
||||||
|
|
||||||
# list of mode names that are to be activated by default.
|
|
||||||
# The full set of modes to be activated is base_modes + default_modes.
|
|
||||||
# If the setting is undefined, the default_modes from the global configuration (serena_config.yml) apply.
|
|
||||||
# Otherwise, this overrides the setting from the global configuration (serena_config.yml).
|
|
||||||
# This setting can, in turn, be overridden by CLI parameters (--mode).
|
|
||||||
default_modes:
|
|
||||||
|
|
||||||
# initial prompt for the project. It will always be given to the LLM upon activating the project
|
|
||||||
# (contrary to the memories, which are loaded on demand).
|
|
||||||
initial_prompt: ""
|
|
||||||
|
|
||||||
# time budget (seconds) per tool call for the retrieval of additional symbol information
|
|
||||||
# such as docstrings or parameter information.
|
|
||||||
# This overrides the corresponding setting in the global configuration; see the documentation there.
|
|
||||||
# If null or missing, use the setting from the global configuration.
|
|
||||||
symbol_info_budget:
|
|
||||||
|
|
||||||
# list of regex patterns which, when matched, mark a memory entry as read‑only.
|
|
||||||
# Extends the list from the global configuration, merging the two lists.
|
|
||||||
read_only_memory_patterns: []
|
|
||||||
|
|
||||||
# list of regex patterns for memories to completely ignore.
|
|
||||||
# Matching memories will not appear in list_memories or activate_project output
|
|
||||||
# and cannot be accessed via read_memory or write_memory.
|
|
||||||
# To access ignored memory files, use the read_file tool on the raw file path.
|
|
||||||
# Extends the list from the global configuration, merging the two lists.
|
|
||||||
# Example: ["_archive/.*", "_episodes/.*"]
|
|
||||||
ignored_memory_patterns: []
|
|
||||||
153
AGENTS.md
153
AGENTS.md
@ -1,153 +0,0 @@
|
|||||||
# AGENTS.md - Code Guidelines for CLQMS
|
|
||||||
|
|
||||||
> **CLQMS (Clinical Laboratory Quality Management System)** – headless REST API backend built on CodeIgniter 4 with a focus on laboratory workflows, JWT authentication, and synchronized OpenAPI documentation.
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## Repository Snapshot
|
|
||||||
- `app/` holds controllers, models, filters, and traits wired through PSR-4 `App\` namespace.
|
|
||||||
- `tests/` relies on CodeIgniter's testing helpers plus Faker for deterministic fixtures.
|
|
||||||
- Shared response helpers and ValueSet lookups live under `app/Libraries` and `app/Traits` and should be reused before introducing new helpers.
|
|
||||||
- Environment values, secrets, and database credentials live in `.env` but are never committed; treat the file as a reference for defaults.
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## Build, Lint & Test
|
|
||||||
All commands run from the repository root.
|
|
||||||
|
|
||||||
```bash
|
|
||||||
# Run the entire PHPUnit suite
|
|
||||||
./vendor/bin/phpunit
|
|
||||||
|
|
||||||
# Target a single test file (fast verification)
|
|
||||||
./vendor/bin/phpunit tests/feature/Patients/PatientCreateTest.php
|
|
||||||
|
|
||||||
# Run one test case by method
|
|
||||||
./vendor/bin/phpunit --filter testCreatePatientSuccess tests/feature/Patients/PatientCreateTest.php
|
|
||||||
|
|
||||||
# Generate scaffolding (model, controller, migration)
|
|
||||||
php spark make:model <Name>
|
|
||||||
php spark make:controller <Name>
|
|
||||||
php spark make:migration <name>
|
|
||||||
|
|
||||||
# Database migrations
|
|
||||||
php spark migrate
|
|
||||||
php spark migrate:rollback
|
|
||||||
|
|
||||||
# After OpenAPI edits
|
|
||||||
node public/bundle-api-docs.js
|
|
||||||
```
|
|
||||||
|
|
||||||
Use `php spark test --filter <Class>::<method>` when filtering more than one test file is cumbersome.
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## Agent Rules Scan
|
|
||||||
- No `.cursor/rules/*` or `.cursorrules` directory detected; continue without Cursor-specific constraints.
|
|
||||||
- No `.github/copilot-instructions.md` present; Copilot behaviors revert to general GitHub defaults.
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## Coding Standards
|
|
||||||
|
|
||||||
### Language & Formatting
|
|
||||||
- PHP 8.1+ is the baseline; enable `declare(strict_types=1)` at the top of new files when practical.
|
|
||||||
- Follow PSR-12 for spacing, line length (~120), and brace placement; prefer 4 spaces and avoid tabs.
|
|
||||||
- Use short arrays `[]`, and wrap multiline arguments/arrays with one-per-line items.
|
|
||||||
- Favor expression statements that return early (guard clauses) and keep nested logic shallow.
|
|
||||||
- Keep methods under ~40 lines when possible; extract private helpers for repeated flows.
|
|
||||||
|
|
||||||
### Naming & Types
|
|
||||||
- Classes, controllers, libraries, and traits: PascalCase (e.g., `PatientImportController`).
|
|
||||||
- Methods, services, traits: camelCase (`fetchActivePatients`).
|
|
||||||
- Properties: camelCase for new code; legacy snake_case may persist but avoid new snake_case unless mirroring legacy columns.
|
|
||||||
- Constants: UPPER_SNAKE_CASE.
|
|
||||||
- DTOs/array shapes: Use descriptive names (`$patientInput`, `$validatedPayload`).
|
|
||||||
- Type hints required for method arguments/returns; use union/nullables (e.g., `?string`) instead of doc-only comments.
|
|
||||||
- Prefer PHPDoc only when type inference fails (complex union or array shapes) but still keep method summaries concise.
|
|
||||||
|
|
||||||
### Imports & Structure
|
|
||||||
- Namespace declarations at the very top followed by grouped `use` statements.
|
|
||||||
- Import order: Core framework (`CodeIgniter`), then `App\`, then third-party packages (Firebase, Faker, etc.). Keep each group alphabetical.
|
|
||||||
- No inline `use` statements inside methods.
|
|
||||||
- Keep `use` statements de-duplicated; rely on IDE or `phpcbf` to reorder.
|
|
||||||
|
|
||||||
### Controller Structure
|
|
||||||
- Controllers orchestrate request validation, delegates to services/models, and return `ResponseTrait` responses; avoid direct DB queries here.
|
|
||||||
- Inject models/services via constructor when they are reused. When instantiating on the fly, reference FQCN (`new \App\Models\...`).
|
|
||||||
- Map HTTP verbs to semantic methods (`index`, `show`, `create`, `update`, `delete`). Keep action methods under 30 lines by delegating heavy lifting to models or libraries.
|
|
||||||
- Always respond through `$this->respond()` or `$this->respondCreated()` so JSON structure stays consistent.
|
|
||||||
|
|
||||||
### Response & Error Handling
|
|
||||||
- All responses follow `{ status, message, data }`. `status` values: `success`, `failed`, or `error`.
|
|
||||||
- Use `$this->respondCreated()`, `$this->respondNoContent()`, or `$this->respond()` with explicit HTTP codes.
|
|
||||||
- Wrap JWT/external calls in try/catch. Log unexpected exceptions with `log_message('error', $e->getMessage())` before responding with a sanitized failure.
|
|
||||||
- For validation failures, return HTTP 400 with detailed message; unauthorized access returns 401. Maintain parity with existing tests.
|
|
||||||
|
|
||||||
### Database & Transactions
|
|
||||||
- Use Query Builder or Model methods; enable `use App\Models\BaseModel` which handles UTC conversions.
|
|
||||||
- Always call `helper('utc')` when manipulating timestamps.
|
|
||||||
- Wrap multi-table changes in `$this->db->transStart()` / `$this->db->transComplete()` and check `transStatus()` to abort if false.
|
|
||||||
- Run `checkDbError()` (existing helper) after saves when manual queries are necessary.
|
|
||||||
|
|
||||||
### Service Helpers & Libraries
|
|
||||||
- Encapsulate complex lookups (ValueSet, encryption) inside `app/Libraries` or Traits.
|
|
||||||
- Reuse `App\Libraries\Lookups` for consistent label/value translations.
|
|
||||||
- Keep shared logic (e.g., response formatting, JWT decoding) inside Traits and import them via `use`.
|
|
||||||
|
|
||||||
### Testing & Coverage
|
|
||||||
- Place feature tests under `tests/Feature`, unit tests under `tests/Unit`.
|
|
||||||
- Test class names should follow `ClassNameTest`; methods follow `test<Action><Scenario><Result>` (e.g., `testCreatePatientValidationFail`).
|
|
||||||
- Use `FeatureTestTrait` and `CIUnitTestCase` for API tests; prefer `withBodyFormat('json')->post()` flows.
|
|
||||||
- Assert status codes: 200 for GET/PATCH, 201 for POST, 400 for validation, 401 for auth, 404 for missing resources, 500 for server errors.
|
|
||||||
- Run targeted tests during development, full suite before merging.
|
|
||||||
|
|
||||||
### Documentation & API Sync
|
|
||||||
- Whenever a controller or route changes, update `public/paths/<resource>.yaml` and matching `public/components/schemas`. Add tags or schema refs in `public/api-docs.yaml`.
|
|
||||||
- After editing OpenAPI files, regenerate the bundled docs with `node public/bundle-api-docs.js`. Check `public/api-docs.bundled.yaml` into version control.
|
|
||||||
- Keep the controller-to-YAML mapping table updated to reflect new resources.
|
|
||||||
|
|
||||||
### Routing Conventions
|
|
||||||
- Keep route definitions grouped inside `$routes->group('api/<resource>')` blocks in `app/Config/Routes.php`.
|
|
||||||
- Prefer nested controllers (e.g., `Patient\PatientController`) for domain partitioning.
|
|
||||||
- Use RESTful verbs (GET: index/show, POST: create, PATCH: update, DELETE: delete) to keep behavior predictable.
|
|
||||||
- Document side effects (snapshots, audit logs) directly in the corresponding OpenAPI `paths` file.
|
|
||||||
|
|
||||||
### Environment & Secrets
|
|
||||||
- Use `.env` as the source of truth for database/jwt settings. Do not commit production credentials.
|
|
||||||
- Sample values are provided in `.env`; copy to `.env.local` or CI secrets with overrides.
|
|
||||||
- `JWT_SECRET` must be treated as sensitive and rotated via environment updates only.
|
|
||||||
|
|
||||||
### Workflows & Misc
|
|
||||||
- Use `php spark migrate`/`migrate:rollback` for schema changes.
|
|
||||||
- For seeding or test fixtures, prefer factories (Faker) seeded in `tests/Support` when available.
|
|
||||||
- Document major changes in `issues.md` or dedicated feature docs under `docs/` before merging.
|
|
||||||
|
|
||||||
### Security & Filters
|
|
||||||
- Apply the `auth` filter to every protected route, and keep `ApiKey` or other custom filters consolidated under `app/Filters`.
|
|
||||||
- Sanitize user inputs via `filter_var`, `esc()` helpers, or validated entities before they hit the database.
|
|
||||||
- Always use parameterized queries/Model `save()` methods to prevent SQL injection, especially with legacy PascalCase columns.
|
|
||||||
- Respond 401 for missing tokens, 403 when permissions fail, and log sanitized details for ops debugging.
|
|
||||||
|
|
||||||
### Legacy Field Naming & ValueSets
|
|
||||||
- Databases use PascalCase columns such as `PatientID`, `NameFirst`, `CreatedAt`. Keep migration checks aware of these names.
|
|
||||||
- ValueSet lookups centralize label translation: `Lookups::get('gender')`, `Lookups::getLabel('gender', '1')`, `Lookups::transformLabels($payload, ['Sex' => 'gender'])`.
|
|
||||||
- Prefer `App\Libraries\Lookups` or `app/Traits/ValueSetTrait` to avoid ad-hoc mappings.
|
|
||||||
|
|
||||||
### Nested Data Handling
|
|
||||||
- For entities that carry related collections (`PatIdt`, `PatCom`, `PatAtt`), extract nested arrays before filtering and validating.
|
|
||||||
- Use transactions whenever multi-table inserts/updates occur so orphan rows are avoided.
|
|
||||||
- Guard against empty/null arrays by normalizing to `[]` before iterating.
|
|
||||||
|
|
||||||
### Observability & Logging
|
|
||||||
- Use `log_message('info', ...)` for happy-path checkpoints and `'error'` for catch-all failures.
|
|
||||||
- Avoid leaking sensitive values (tokens, secrets) in logs; log IDs or hash digests instead.
|
|
||||||
- Keep `writable/logs` clean by rotating or pruning stale log files with automation outside the repo.
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## Final Notes for Agents
|
|
||||||
- This repo has no UI layer; focus exclusively on REST interactions.
|
|
||||||
- Always pull `public/api-docs.bundled.yaml` in after running `node public/bundle-api-docs.js` so downstream services see the latest contract.
|
|
||||||
- When in doubt, align with existing controller traits and response helpers to avoid duplicating logic.
|
|
||||||
- Rely on Serena tools for guided edits, searches, and context summaries (use the available symbolic and search tools before running shell commands).
|
|
||||||
44
LICENSE
Executable file → Normal file
44
LICENSE
Executable file → Normal file
@ -1,22 +1,22 @@
|
|||||||
The MIT License (MIT)
|
The MIT License (MIT)
|
||||||
|
|
||||||
Copyright (c) 2014-2019 British Columbia Institute of Technology
|
Copyright (c) 2014-2019 British Columbia Institute of Technology
|
||||||
Copyright (c) 2019-present CodeIgniter Foundation
|
Copyright (c) 2019-present CodeIgniter Foundation
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
in the Software without restriction, including without limitation the rights
|
in the Software without restriction, including without limitation the rights
|
||||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
copies of the Software, and to permit persons to whom the Software is
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
furnished to do so, subject to the following conditions:
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in
|
The above copyright notice and this permission notice shall be included in
|
||||||
all copies or substantial portions of the Software.
|
all copies or substantial portions of the Software.
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
THE SOFTWARE.
|
THE SOFTWARE.
|
||||||
|
|||||||
540
README.md
Executable file → Normal file
540
README.md
Executable file → Normal file
@ -1,539 +1 @@
|
|||||||
# CLQMS (Clinical Laboratory Quality Management System)
|
"# clqms-be"
|
||||||
|
|
||||||
> **A REST API backend for modern clinical laboratory workflows.**
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
CLQMS is a **headless REST API backend** designed to streamline laboratory operations, ensure data integrity, and manage complex diagnostic workflows. Built on a foundation of precision and regulatory compliance, this system provides comprehensive JSON endpoints for laboratory operations.
|
|
||||||
|
|
||||||
**Key Characteristic:** This is an **API-only system** with no view layer. Frontend applications (web, mobile, desktop) consume these REST endpoints to build laboratory information systems.
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 🏛️ Core Architecture & Design
|
|
||||||
|
|
||||||
CLQMS is a **headless REST API system** following a clean architecture pattern. The system is designed to be consumed by any frontend client (web, mobile, desktop) through comprehensive JSON endpoints.
|
|
||||||
|
|
||||||
**API-First Architecture:**
|
|
||||||
- **No View Layer:** This system provides REST APIs only - no HTML views, no server-side rendering
|
|
||||||
- **Frontend Agnostic:** Any client can consume these APIs (React, Vue, Angular, mobile apps, desktop apps)
|
|
||||||
- **JSON-First:** All requests/responses use JSON format
|
|
||||||
- **Stateless:** Each API request is independent with JWT authentication
|
|
||||||
|
|
||||||
The system is currently undergoing a strategic **Architectural Redesign** to consolidate legacy structures into a high-performance, maintainable schema. This design focuses on reducing technical debt and improving data consistency across:
|
|
||||||
|
|
||||||
- **Unified Test Definitions:** Consolidating technical, calculated, and site-specific test data.
|
|
||||||
- **Reference Range Centralization:** A unified engine for numeric, threshold, text, and coded results.
|
|
||||||
- **Ordered Workflow Management:** Precise tracking of orders from collection to verification.
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 🛡️ Strategic Pillars
|
|
||||||
|
|
||||||
- **Precision & Accuracy:** Strict validation for all laboratory parameters and reference ranges.
|
|
||||||
- **Scalability:** Optimized for high-volume diagnostic environments.
|
|
||||||
- **Compliance:** Built-in audit trails and status history for full traceability.
|
|
||||||
- **Interoperability:** Modular architecture designed for LIS, HIS, and analyzer integrations.
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 🛠️ Technical Stack
|
|
||||||
|
|
||||||
| Component | Specification |
|
|
||||||
| :------------- | :------------ |
|
|
||||||
| **Language** | PHP 8.1+ (PSR-compliant) |
|
|
||||||
| **Framework** | CodeIgniter 4 (API-only mode) |
|
|
||||||
| **Security** | JWT (JSON Web Tokens) Authorization |
|
|
||||||
| **Database** | MySQL (Optimized Schema Migration in progress) |
|
|
||||||
| **API Format** | RESTful JSON |
|
|
||||||
| **Testing** | PHPUnit 10.5+ |
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 📂 Documentation & Specifications
|
|
||||||
|
|
||||||
### Key Documents
|
|
||||||
|
|
||||||
| Document | Location | Description |
|
|
||||||
|----------|----------|-------------|
|
|
||||||
| **PRD** | `PRD.md` | Complete Product Requirements Document (API-focused) |
|
|
||||||
| **Technical Guide** | `CLAUDE.md` | Architecture, coding standards, common commands |
|
|
||||||
| **API Overview** | This file | REST API documentation and endpoints |
|
|
||||||
| **Database Migrations** | `app/Database/Migrations/` | Database schema history |
|
|
||||||
|
|
||||||
### API Documentation
|
|
||||||
|
|
||||||
All API endpoints follow REST conventions:
|
|
||||||
|
|
||||||
**Base URL:** `/api`
|
|
||||||
|
|
||||||
**Authentication:** JWT token required for most endpoints (except `/api/login`, `/api/demo/*`)
|
|
||||||
|
|
||||||
**Response Format:**
|
|
||||||
```json
|
|
||||||
{
|
|
||||||
"status": "success|error",
|
|
||||||
"message": "Human-readable message",
|
|
||||||
"data": { ... }
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 🔌 REST API Overview
|
|
||||||
|
|
||||||
### API Endpoint Categories
|
|
||||||
|
|
||||||
#### Authentication & Authorization
|
|
||||||
|
|
||||||
| Method | Endpoint | Description | Auth Required |
|
|
||||||
|--------|----------|-------------|---------------|
|
|
||||||
| `POST` | `/api/login` | User login, returns JWT token | No |
|
|
||||||
| `POST` | `/api/logout` | Invalidate JWT token | Yes |
|
|
||||||
| `POST` | `/api/refresh` | Refresh JWT token | Yes |
|
|
||||||
|
|
||||||
#### Patient Management
|
|
||||||
|
|
||||||
| Method | Endpoint | Description | Auth Required |
|
|
||||||
|--------|----------|-------------|---------------|
|
|
||||||
| `GET` | `/api/patient` | List patients with pagination | Yes |
|
|
||||||
| `GET` | `/api/patient/{id}` | Get patient details | Yes |
|
|
||||||
| `POST` | `/api/patient` | Create new patient | Yes |
|
|
||||||
| `PATCH` | `/api/patient/{id}` | Update patient | Yes |
|
|
||||||
| `DELETE` | `/api/patient/{id}` | Soft delete patient | Yes |
|
|
||||||
|
|
||||||
#### Order Management
|
|
||||||
|
|
||||||
| Method | Endpoint | Description | Auth Required |
|
|
||||||
|--------|----------|-------------|---------------|
|
|
||||||
| `GET` | `/api/ordertest` | List orders | Yes |
|
|
||||||
| `GET` | `/api/ordertest/{id}` | Get order details | Yes |
|
|
||||||
| `POST` | `/api/ordertest` | Create order | Yes |
|
|
||||||
| `PATCH` | `/api/ordertest/{id}` | Update order | Yes |
|
|
||||||
| `DELETE` | `/api/ordertest/{id}` | Delete order | Yes |
|
|
||||||
| `POST` | `/api/ordertest/status` | Update order status | Yes |
|
|
||||||
|
|
||||||
#### Demo/Test Endpoints (No Auth)
|
|
||||||
|
|
||||||
| Method | Endpoint | Description | Auth Required |
|
|
||||||
|--------|----------|-------------|---------------|
|
|
||||||
| `POST` | `/api/demo/order` | Create demo order with patient | No |
|
|
||||||
|
|
||||||
#### Specimen Management
|
|
||||||
|
|
||||||
| Method | Endpoint | Description | Auth Required |
|
|
||||||
|--------|----------|-------------|---------------|
|
|
||||||
| `GET` | `/api/specimen` | List specimens | Yes |
|
|
||||||
| `GET` | `/api/specimen/{id}` | Get specimen details | Yes |
|
|
||||||
| `POST` | `/api/specimen` | Create specimen | Yes |
|
|
||||||
| `PATCH` | `/api/specimen/{id}` | Update specimen | Yes |
|
|
||||||
| `POST` | `/api/specimen/status` | Update specimen status | Yes |
|
|
||||||
|
|
||||||
#### Result Management
|
|
||||||
|
|
||||||
| Method | Endpoint | Description | Auth Required |
|
|
||||||
|--------|----------|-------------|---------------|
|
|
||||||
| `GET` | `/api/patresult` | List patient results | Yes |
|
|
||||||
| `GET` | `/api/patresult/{id}` | Get result details | Yes |
|
|
||||||
| `POST` | `/api/patresult` | Enter new result | Yes |
|
|
||||||
| `PATCH` | `/api/patresult/{id}` | Update result | Yes |
|
|
||||||
| `POST` | `/api/patresult/status` | Verify result (VER/REV/REP) | Yes |
|
|
||||||
|
|
||||||
#### Edge API (Instrument Integration)
|
|
||||||
|
|
||||||
| Method | Endpoint | Description | Auth Required |
|
|
||||||
|--------|----------|-------------|---------------|
|
|
||||||
| `POST` | `/api/edge/result` | Receive instrument results | API Key |
|
|
||||||
| `GET` | `/api/edge/order` | Fetch pending orders | API Key |
|
|
||||||
| `POST` | `/api/edge/order/{id}/ack` | Acknowledge order | API Key |
|
|
||||||
| `POST` | `/api/edge/status` | Log instrument status | API Key |
|
|
||||||
|
|
||||||
### API Response Format
|
|
||||||
|
|
||||||
All API endpoints return JSON in this format:
|
|
||||||
|
|
||||||
**Success Response:**
|
|
||||||
```json
|
|
||||||
{
|
|
||||||
"status": "success",
|
|
||||||
"message": "Operation completed successfully",
|
|
||||||
"data": {
|
|
||||||
// Response data here
|
|
||||||
}
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
**Error Response:**
|
|
||||||
```json
|
|
||||||
{
|
|
||||||
"status": "error",
|
|
||||||
"message": "Error description",
|
|
||||||
"errors": [
|
|
||||||
{
|
|
||||||
"field": "field_name",
|
|
||||||
"message": "Validation error message"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
### Authentication
|
|
||||||
|
|
||||||
Most endpoints require JWT authentication:
|
|
||||||
|
|
||||||
**Request Headers:**
|
|
||||||
```
|
|
||||||
Authorization: Bearer {jwt_token}
|
|
||||||
Content-Type: application/json
|
|
||||||
```
|
|
||||||
|
|
||||||
**Login Request Example:**
|
|
||||||
```bash
|
|
||||||
POST /api/login
|
|
||||||
{
|
|
||||||
"username": "labuser",
|
|
||||||
"password": "password123"
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
**Login Response:**
|
|
||||||
```json
|
|
||||||
{
|
|
||||||
"status": "success",
|
|
||||||
"message": "Login successful",
|
|
||||||
"data": {
|
|
||||||
"token": "eyJ0eXAiOiJKV1QiLCJhbGc...",
|
|
||||||
"expires_in": 3600,
|
|
||||||
"user": {
|
|
||||||
"id": 1,
|
|
||||||
"username": "labuser",
|
|
||||||
"name": "Lab User"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## Lookups Library (`app/Libraries/ValueSet.php`)
|
|
||||||
|
|
||||||
CLQMS uses a **JSON file-based lookup system** loaded via `App\Libraries\Lookups` class. All lookup data is stored as JSON files in `app/Libraries/Data/valuesets/` for easy maintenance and versioning.
|
|
||||||
|
|
||||||
### How It Works
|
|
||||||
|
|
||||||
- `Lookups` class extends `ValueSet` which handles caching and file loading
|
|
||||||
- Each lookup is stored as `app/Libraries/Data/valuesets/{name}.json`
|
|
||||||
- Lookup names are lowercase with underscores (e.g., `gender.json`, `order_priority.json`)
|
|
||||||
|
|
||||||
### Available Lookups
|
|
||||||
|
|
||||||
| Lookup File | Description | Example Values |
|
|
||||||
|-------------|-------------|----------------|
|
|
||||||
| `gender` | Patient gender | Female, Male, Unknown |
|
|
||||||
| `order_priority` | Order priority levels | Stat, ASAP, Routine, Preop |
|
|
||||||
| `order_status` | Order lifecycle status | STC, SCtd, SArrv, SRcvd |
|
|
||||||
| `specimen_type` | Specimen types | BLD, SER, PLAS, UR, CSF |
|
|
||||||
| `specimen_status` | Specimen status | Ordered, Collected, Received |
|
|
||||||
| `specimen_condition` | Specimen quality flags | HEM, ITC, LIP, CLOT |
|
|
||||||
| `specimen_activity` | Specimen workflow events | COLLECT, RECEIVE, REJECT |
|
|
||||||
| `result_type` | Result data types | NMRIC, RANGE, TEXT, VSET |
|
|
||||||
| `result_unit` | Common measurement units | g/dL, mg/dL, x10^6/mL |
|
|
||||||
| `result_status` | Result validation status | Preliminary, Final, Corrected |
|
|
||||||
| `test_type` | Test definition types | TEST, PARAM, CALC, GROUP |
|
|
||||||
| `test_activity` | Test workflow activities | Order, Analyse, VER, REV |
|
|
||||||
| `test_status` | Test active status | Active, Inactive, Discontinued |
|
|
||||||
| `priority` | General priority values | STAT, HIGH, NORMAL, LOW |
|
|
||||||
| `race` | Ethnicity/race categories | Jawa, Sunda, Batak, etc. |
|
|
||||||
| `religion` | Religious affiliations | Islam, Kristen, Katolik, Hindu |
|
|
||||||
| `marital_status` | Marital status | Single, Married, Divorced |
|
|
||||||
| `death_indicator` | Death status flags | Yes, No |
|
|
||||||
| `identifier_type` | ID document types | KTP, Passport, SSN, SIM |
|
|
||||||
| `operation` | CRUD operation types | Create, Read, Update, Delete |
|
|
||||||
| `site_type` | Healthcare facility types | GH, PH, GHL, PHL, GL, PL |
|
|
||||||
| `site_class` | Facility classification | A, B, C, D, Utm, Ptm |
|
|
||||||
| `ws_type` | Workstation types | Primary, Secondary |
|
|
||||||
| `enable_disable` | Boolean toggle states | Enabled, Disabled |
|
|
||||||
| `entity_type` | Entity classification | Patient, Provider, Site |
|
|
||||||
| `requested_entity` | Requestor types | Physician, Nurse, Lab |
|
|
||||||
| `location_type` | Location categories | OPD, IPD, ER, LAB |
|
|
||||||
| `area_class` | Geographic classifications | Urban, Rural, Suburban |
|
|
||||||
| `adt_event` | ADT event types | Admission, Transfer, Discharge |
|
|
||||||
| `body_site` | Collection sites | Left Arm, Right Arm, Finger |
|
|
||||||
| `collection_method` | Specimen collection methods | Venipuncture, Fingerstick |
|
|
||||||
| `container_size` | Tube/container volumes | 3mL, 5mL, 10mL |
|
|
||||||
| `container_class` | Container types | Vacutainer, Tube, Cup |
|
|
||||||
| `container_cap_color` | Tube cap colors | Red, Purple, Blue, Green |
|
|
||||||
| `additive` | Tube additives | EDTA, Heparin, Fluoride |
|
|
||||||
| `fasting_status` | Fasting requirement flags | Fasting, Non-Fasting |
|
|
||||||
| `ethnic` | Ethnicity categories | Various regional groups |
|
|
||||||
| `math_sign` | Mathematical operators | +, -, *, /, =, <, > |
|
|
||||||
| `formula_language` | Formula expression types | Formula, Expression |
|
|
||||||
| `generate_by` | Generation methods | Auto, Manual, Import |
|
|
||||||
| `did_type` | Device identification types | Serial, MAC, UUID |
|
|
||||||
| `activity_result` | Activity outcomes | Success, Fail, Retry |
|
|
||||||
| `reference_type` | Reference value types | NMRIC, TEXT, LIST |
|
|
||||||
| `range_type` | Range calculation types | REF, CRTC, VAL, RERUN |
|
|
||||||
| `numeric_ref_type` | Numeric ref types | Reference, Critical, Valid |
|
|
||||||
| `text_ref_type` | Text reference types | Normal, Abnormal, Critical |
|
|
||||||
| `request_status` | Request status | Pending, Approved, Rejected |
|
|
||||||
| `v_category` | ValueSet categories | Various categories |
|
|
||||||
|
|
||||||
### Usage
|
|
||||||
|
|
||||||
```php
|
|
||||||
use App\Libraries\Lookups;
|
|
||||||
|
|
||||||
// Get all lookups (loads all JSON files, cached)
|
|
||||||
$allLookups = Lookups::getAll();
|
|
||||||
|
|
||||||
// Get single lookup formatted for dropdowns
|
|
||||||
$gender = Lookups::get('gender');
|
|
||||||
// Returns: [{"value":"1","label":"Female"},{"value":"2","label":"Male"},...]
|
|
||||||
|
|
||||||
// Get raw data without formatting
|
|
||||||
$raw = Lookups::getRaw('gender');
|
|
||||||
// Returns: [{"key":"1","value":"Female"},{"key":"2","value":"Male"},...]
|
|
||||||
|
|
||||||
// Get label for a specific key
|
|
||||||
$label = Lookups::getLabel('gender', '1'); // Returns 'Female'
|
|
||||||
|
|
||||||
// Get key/value pairs for select inputs
|
|
||||||
$options = Lookups::getOptions('gender');
|
|
||||||
// Returns: [["key":"1","value":"Female"],...]
|
|
||||||
|
|
||||||
// Transform database records with lookup text labels
|
|
||||||
$patients = [
|
|
||||||
['ID' => 1, 'Sex' => '1', 'Priority' => 'S'],
|
|
||||||
['ID' => 2, 'Sex' => '2', 'Priority' => 'R'],
|
|
||||||
];
|
|
||||||
$labeled = Lookups::transformLabels($patients, [
|
|
||||||
'Sex' => 'gender',
|
|
||||||
'Priority' => 'order_priority'
|
|
||||||
]);
|
|
||||||
// Result: [['ID'=>1, 'Sex'=>'1', 'SexText'=>'Female', 'Priority'=>'S', 'PriorityText'=>'Stat'],...]
|
|
||||||
|
|
||||||
// Clear cache after modifying valueset data
|
|
||||||
Lookups::clearCache();
|
|
||||||
```
|
|
||||||
|
|
||||||
### When to Use
|
|
||||||
|
|
||||||
| Approach | Use Case |
|
|
||||||
|----------|----------|
|
|
||||||
| **Lookups Library** | Server-side static values that rarely change (gender, status, types) - fast, cached |
|
|
||||||
| **API `/api/valueset*`** | Dynamic values managed by admins at runtime, or for frontend clients needing lookup data |
|
|
||||||
|
|
||||||
### Adding New Lookups
|
|
||||||
|
|
||||||
1. Create `app/Libraries/Data/valuesets/{name}.json`:
|
|
||||||
```json
|
|
||||||
{
|
|
||||||
"name": "example_lookup",
|
|
||||||
"description": "Example lookup description",
|
|
||||||
"values": [
|
|
||||||
{"key": "1", "value": "Option One"},
|
|
||||||
{"key": "2", "value": "Option Two"},
|
|
||||||
{"key": "3", "value": "Option Three"}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
2. Access via `Lookups::get('example_lookup')`
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 📋 Master Data Management
|
|
||||||
|
|
||||||
CLQMS provides comprehensive master data management for laboratory operations. All master data is accessible via REST API endpoints.
|
|
||||||
|
|
||||||
### 🧪 Laboratory Tests
|
|
||||||
|
|
||||||
The Test Definitions module manages all laboratory test configurations including parameters, calculated tests, and test panels.
|
|
||||||
|
|
||||||
#### Test Types
|
|
||||||
|
|
||||||
| Type Code | Description | Table |
|
|
||||||
|-----------|-------------|-------|
|
|
||||||
| `TEST` | Individual laboratory test with technical specs | `testdefsite` + `testdeftech` |
|
|
||||||
| `PARAM` | Parameter value (non-lab measurement) | `testdefsite` + `testdeftech` |
|
|
||||||
| `CALC` | Calculated test with formula | `testdefsite` + `testdefcal` |
|
|
||||||
| `GROUP` | Panel/profile containing multiple tests | `testdefsite` + `testdefgrp` |
|
|
||||||
| `TITLE` | Section title for report organization | `testdefsite` |
|
|
||||||
|
|
||||||
#### API Endpoints
|
|
||||||
|
|
||||||
| Method | Endpoint | Description |
|
|
||||||
|--------|----------|-------------|
|
|
||||||
| `GET` | `/api/tests` | List all tests with optional filtering |
|
|
||||||
| `GET` | `/api/tests/{id}` | Get test details with type-specific data |
|
|
||||||
| `POST` | `/api/tests` | Create new test definition |
|
|
||||||
| `PATCH` | `/api/tests` | Update existing test |
|
|
||||||
| `DELETE` | `/api/tests` | Soft delete test (sets EndDate) |
|
|
||||||
|
|
||||||
#### Filtering Parameters
|
|
||||||
|
|
||||||
- `TestSiteName` - Search by test name (partial match)
|
|
||||||
- `TestType` - Filter by test type VID (1-5)
|
|
||||||
- `VisibleScr` - Filter by screen visibility (0/1)
|
|
||||||
- `VisibleRpt` - Filter by report visibility (0/1)
|
|
||||||
|
|
||||||
#### Test Response Structure
|
|
||||||
|
|
||||||
```json
|
|
||||||
{
|
|
||||||
"status": "success",
|
|
||||||
"message": "Data fetched successfully",
|
|
||||||
"data": [
|
|
||||||
{
|
|
||||||
"TestSiteID": 1,
|
|
||||||
"TestSiteCode": "CBC",
|
|
||||||
"TestSiteName": "Complete Blood Count",
|
|
||||||
"TestType": 4,
|
|
||||||
"TypeCode": "GROUP",
|
|
||||||
"TypeName": "Group Test",
|
|
||||||
"SeqScr": 50,
|
|
||||||
"VisibleScr": 1,
|
|
||||||
"VisibleRpt": 1
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
### 📏 Reference Ranges
|
|
||||||
|
|
||||||
Reference Ranges define normal and critical values for test results. The system supports multiple reference range types based on patient demographics.
|
|
||||||
|
|
||||||
#### Reference Range Types
|
|
||||||
|
|
||||||
| Type | Table | Description |
|
|
||||||
|------|-------|-------------|
|
|
||||||
| Numeric | `refnum` | Numeric ranges with age/sex criteria |
|
|
||||||
| Text | `reftxt` | Text-based reference values |
|
|
||||||
|
|
||||||
#### Numeric Reference Range Structure
|
|
||||||
|
|
||||||
| Field | Description |
|
|
||||||
|-------|-------------|
|
|
||||||
| `NumRefType` | Type: REF (Reference), CRTC (Critical), VAL (Validation), RERUN |
|
|
||||||
| `RangeType` | RANGE or THOLD |
|
|
||||||
| `Sex` | Gender filter (0=All, 1=Female, 2=Male) |
|
|
||||||
| `AgeStart` | Minimum age (years) |
|
|
||||||
| `AgeEnd` | Maximum age (years) |
|
|
||||||
| `LowSign` | Low boundary sign (=, <, <=) |
|
|
||||||
| `Low` | Low boundary value |
|
|
||||||
| `HighSign` | High boundary sign (=, >, >=) |
|
|
||||||
| `High` | High boundary value |
|
|
||||||
| `Flag` | Result flag (H, L, A, etc.) |
|
|
||||||
|
|
||||||
#### API Endpoints
|
|
||||||
|
|
||||||
| Method | Endpoint | Description |
|
|
||||||
|--------|----------|-------------|
|
|
||||||
| `GET` | `/api/refnum` | List numeric reference ranges |
|
|
||||||
| `GET` | `/api/refnum/{id}` | Get reference range details |
|
|
||||||
| `POST` | `/api/refnum` | Create reference range |
|
|
||||||
| `PATCH` | `/api/refnum` | Update reference range |
|
|
||||||
| `DELETE` | `/api/refnum` | Soft delete reference range |
|
|
||||||
|
|
||||||
### 📑 Value Sets
|
|
||||||
|
|
||||||
Value Sets are configurable dropdown options used throughout the system. Each Value Set Definition (VSetDef) contains multiple Value Set Values (ValueSet).
|
|
||||||
|
|
||||||
#### Value Set Hierarchy
|
|
||||||
|
|
||||||
```
|
|
||||||
valuesetdef (VSetDefID, VSName, VSDesc)
|
|
||||||
└── valueset (VID, VSetID, VValue, VDesc, VOrder, VCategory)
|
|
||||||
```
|
|
||||||
|
|
||||||
#### Common Value Sets
|
|
||||||
|
|
||||||
| VSetDefID | Name | Example Values |
|
|
||||||
|-----------|------|----------------|
|
|
||||||
| 1 | Priority | STAT (S), ASAP (A), Routine (R), Preop (P) |
|
|
||||||
| 2 | Enable/Disable | Disabled (0), Enabled (1) |
|
|
||||||
| 3 | Gender | Female (1), Male (2), Unknown (3) |
|
|
||||||
| 10 | Order Status | STC, SCtd, SArrv, SRcvd, SAna, etc. |
|
|
||||||
| 15 | Specimen Type | BLD, SER, PLAS, UR, CSF, etc. |
|
|
||||||
| 16 | Unit | L, mL, g/dL, mg/dL, etc. |
|
|
||||||
| 27 | Test Type | TEST, PARAM, CALC, GROUP, TITLE |
|
|
||||||
| 28 | Result Unit | g/dL, g/L, mg/dL, x10^6/mL, etc. |
|
|
||||||
| 35 | Test Activity | Order, Analyse, VER, REV, REP |
|
|
||||||
|
|
||||||
#### API Endpoints
|
|
||||||
|
|
||||||
| Method | Endpoint | Description |
|
|
||||||
|--------|----------|-------------|
|
|
||||||
| `GET` | `/api/valuesetdef` | List all value set definitions |
|
|
||||||
| `GET` | `/api/valuesetdef/{id}` | Get valueset with all values |
|
|
||||||
| `GET` | `/api/valuesetdef/{id}/values` | Get values for specific valueset |
|
|
||||||
| `POST` | `/api/valuesetdef` | Create new valueset definition |
|
|
||||||
| `PATCH` | `/api/valuesetdef` | Update valueset definition |
|
|
||||||
| `DELETE` | `/api/valuesetdef` | Delete valueset definition |
|
|
||||||
|
|
||||||
#### Value Set Response Structure
|
|
||||||
|
|
||||||
```json
|
|
||||||
{
|
|
||||||
"status": "success",
|
|
||||||
"data": {
|
|
||||||
"VSetDefID": 27,
|
|
||||||
"VSName": "Test Type",
|
|
||||||
"VSDesc": "testdefsite.TestType",
|
|
||||||
"values": [
|
|
||||||
{ "VID": 1, "VValue": "TEST", "VDesc": "Test", "VOrder": 1 },
|
|
||||||
{ "VID": 2, "VValue": "PARAM", "VDesc": "Parameter", "VOrder": 2 },
|
|
||||||
{ "VID": 3, "VValue": "CALC", "VDesc": "Calculated Test", "VOrder": 3 },
|
|
||||||
{ "VID": 4, "VValue": "GROUP", "VDesc": "Group Test", "VOrder": 4 },
|
|
||||||
{ "VID": 5, "VValue": "TITLE", "VDesc": "Title", "VOrder": 5 }
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
### 📊 Database Tables Summary
|
|
||||||
|
|
||||||
| Category | Tables | Purpose |
|
|
||||||
|----------|--------|---------|
|
|
||||||
| Tests | `testdefsite`, `testdeftech`, `testdefcal`, `testdefgrp`, `testmap` | Test definitions |
|
|
||||||
| Reference Ranges | `refnum`, `reftxt` | Result validation |
|
|
||||||
| Value Sets | `valuesetdef`, `valueset` | Configurable options |
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 🔌 Edge API - Instrument Integration
|
|
||||||
|
|
||||||
The **Edge API** provides endpoints for integrating laboratory instruments via the `tiny-edge` middleware. Results from instruments are staged in the `edgeres` table before processing into the main patient results (`patres`).
|
|
||||||
|
|
||||||
### Endpoints
|
|
||||||
|
|
||||||
| Method | Endpoint | Description |
|
|
||||||
|--------|----------|-------------|
|
|
||||||
| `POST` | `/api/edge/result` | Receive instrument results (stored in `edgeres`) |
|
|
||||||
| `GET` | `/api/edge/order` | Fetch pending orders for an instrument |
|
|
||||||
| `POST` | `/api/edge/order/:id/ack` | Acknowledge order delivery to instrument |
|
|
||||||
| `POST` | `/api/edge/status` | Log instrument status updates |
|
|
||||||
|
|
||||||
### Workflow
|
|
||||||
|
|
||||||
```
|
|
||||||
Instrument → tiny-edge → POST /api/edge/result → edgeres table → [Manual/Auto Processing] → patres table
|
|
||||||
```
|
|
||||||
|
|
||||||
**Key Features:**
|
|
||||||
- **Staging Table:** All results land in `edgeres` first for validation
|
|
||||||
- **Rerun Handling:** Duplicate `SampleID` + `TestSiteCode` increments `AspCnt` in `patres`
|
|
||||||
- **Configurable Processing:** Auto or manual processing based on settings
|
|
||||||
- **Status Tracking:** Full audit trail via `edgestatus` and `edgeack` tables
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
### 📜 Usage Notice
|
|
||||||
|
|
||||||
**This is an API-only backend system.** There are no views, HTML templates, or server-side rendering components. Frontend applications should consume these REST endpoints to build user interfaces for laboratory operations.
|
|
||||||
|
|
||||||
This repository contains proprietary information intended for the 5Panda Team and authorized collaborators.
|
|
||||||
|
|
||||||
---
|
|
||||||
*© 2025 5Panda Team. Engineering Precision in Clinical Diagnostics.*
|
|
||||||
|
|||||||
12
app/.htaccess
Executable file → Normal file
12
app/.htaccess
Executable file → Normal file
@ -1,6 +1,6 @@
|
|||||||
<IfModule authz_core_module>
|
<IfModule authz_core_module>
|
||||||
Require all denied
|
Require all denied
|
||||||
</IfModule>
|
</IfModule>
|
||||||
<IfModule !authz_core_module>
|
<IfModule !authz_core_module>
|
||||||
Deny from all
|
Deny from all
|
||||||
</IfModule>
|
</IfModule>
|
||||||
|
|||||||
30
app/Common.php
Executable file → Normal file
30
app/Common.php
Executable file → Normal file
@ -1,15 +1,15 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The goal of this file is to allow developers a location
|
* The goal of this file is to allow developers a location
|
||||||
* where they can overwrite core procedural functions and
|
* where they can overwrite core procedural functions and
|
||||||
* replace them with their own. This file is loaded during
|
* replace them with their own. This file is loaded during
|
||||||
* the bootstrap process and is called during the framework's
|
* the bootstrap process and is called during the framework's
|
||||||
* execution.
|
* execution.
|
||||||
*
|
*
|
||||||
* This can be looked at as a `master helper` file that is
|
* This can be looked at as a `master helper` file that is
|
||||||
* loaded early on, and may also contain additional functions
|
* loaded early on, and may also contain additional functions
|
||||||
* that you'd like to use throughout your entire application
|
* that you'd like to use throughout your entire application
|
||||||
*
|
*
|
||||||
* @see: https://codeigniter.com/user_guide/extending/common.html
|
* @see: https://codeigniter.com/user_guide/extending/common.html
|
||||||
*/
|
*/
|
||||||
|
|||||||
405
app/Config/App.php
Executable file → Normal file
405
app/Config/App.php
Executable file → Normal file
@ -1,203 +1,202 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Config;
|
namespace Config;
|
||||||
|
|
||||||
use CodeIgniter\Config\BaseConfig;
|
use CodeIgniter\Config\BaseConfig;
|
||||||
|
|
||||||
class App extends BaseConfig
|
class App extends BaseConfig
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* Base Site URL
|
* Base Site URL
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* URL to your CodeIgniter root. Typically, this will be your base URL,
|
* URL to your CodeIgniter root. Typically, this will be your base URL,
|
||||||
* WITH a trailing slash:
|
* WITH a trailing slash:
|
||||||
*
|
*
|
||||||
* E.g., http://example.com/
|
* E.g., http://example.com/
|
||||||
*/
|
*/
|
||||||
public string $baseURL = '';
|
public string $baseURL = 'http://localhost:8080/';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Allowed Hostnames in the Site URL other than the hostname in the baseURL.
|
* Allowed Hostnames in the Site URL other than the hostname in the baseURL.
|
||||||
* If you want to accept multiple Hostnames, set this.
|
* If you want to accept multiple Hostnames, set this.
|
||||||
*
|
*
|
||||||
* E.g.,
|
* E.g.,
|
||||||
* When your site URL ($baseURL) is 'http://example.com/', and your site
|
* When your site URL ($baseURL) is 'http://example.com/', and your site
|
||||||
* also accepts 'http://media.example.com/' and 'http://accounts.example.com/':
|
* also accepts 'http://media.example.com/' and 'http://accounts.example.com/':
|
||||||
* ['media.example.com', 'accounts.example.com']
|
* ['media.example.com', 'accounts.example.com']
|
||||||
*
|
*
|
||||||
* @var list<string>
|
* @var list<string>
|
||||||
*/
|
*/
|
||||||
public array $allowedHostnames = [];
|
public array $allowedHostnames = [];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* Index File
|
* Index File
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* Typically, this will be your `index.php` file, unless you've renamed it to
|
* Typically, this will be your `index.php` file, unless you've renamed it to
|
||||||
* something else. If you have configured your web server to remove this file
|
* something else. If you have configured your web server to remove this file
|
||||||
* from your site URIs, set this variable to an empty string.
|
* from your site URIs, set this variable to an empty string.
|
||||||
*/
|
*/
|
||||||
#public string $indexPage = 'index.php';
|
public string $indexPage = 'index.php';
|
||||||
public string $indexPage = '';
|
|
||||||
|
/**
|
||||||
/**
|
* --------------------------------------------------------------------------
|
||||||
* --------------------------------------------------------------------------
|
* URI PROTOCOL
|
||||||
* URI PROTOCOL
|
* --------------------------------------------------------------------------
|
||||||
* --------------------------------------------------------------------------
|
*
|
||||||
*
|
* This item determines which server global should be used to retrieve the
|
||||||
* This item determines which server global should be used to retrieve the
|
* URI string. The default setting of 'REQUEST_URI' works for most servers.
|
||||||
* URI string. The default setting of 'REQUEST_URI' works for most servers.
|
* If your links do not seem to work, try one of the other delicious flavors:
|
||||||
* If your links do not seem to work, try one of the other delicious flavors:
|
*
|
||||||
*
|
* 'REQUEST_URI': Uses $_SERVER['REQUEST_URI']
|
||||||
* 'REQUEST_URI': Uses $_SERVER['REQUEST_URI']
|
* 'QUERY_STRING': Uses $_SERVER['QUERY_STRING']
|
||||||
* 'QUERY_STRING': Uses $_SERVER['QUERY_STRING']
|
* 'PATH_INFO': Uses $_SERVER['PATH_INFO']
|
||||||
* 'PATH_INFO': Uses $_SERVER['PATH_INFO']
|
*
|
||||||
*
|
* WARNING: If you set this to 'PATH_INFO', URIs will always be URL-decoded!
|
||||||
* WARNING: If you set this to 'PATH_INFO', URIs will always be URL-decoded!
|
*/
|
||||||
*/
|
public string $uriProtocol = 'REQUEST_URI';
|
||||||
public string $uriProtocol = 'REQUEST_URI';
|
|
||||||
|
/*
|
||||||
/*
|
|--------------------------------------------------------------------------
|
||||||
|--------------------------------------------------------------------------
|
| Allowed URL Characters
|
||||||
| Allowed URL Characters
|
|--------------------------------------------------------------------------
|
||||||
|--------------------------------------------------------------------------
|
|
|
||||||
|
|
| This lets you specify which characters are permitted within your URLs.
|
||||||
| This lets you specify which characters are permitted within your URLs.
|
| When someone tries to submit a URL with disallowed characters they will
|
||||||
| When someone tries to submit a URL with disallowed characters they will
|
| get a warning message.
|
||||||
| get a warning message.
|
|
|
||||||
|
|
| As a security measure you are STRONGLY encouraged to restrict URLs to
|
||||||
| As a security measure you are STRONGLY encouraged to restrict URLs to
|
| as few characters as possible.
|
||||||
| as few characters as possible.
|
|
|
||||||
|
|
| By default, only these are allowed: `a-z 0-9~%.:_-`
|
||||||
| By default, only these are allowed: `a-z 0-9~%.:_-`
|
|
|
||||||
|
|
| Set an empty string to allow all characters -- but only if you are insane.
|
||||||
| Set an empty string to allow all characters -- but only if you are insane.
|
|
|
||||||
|
|
| The configured value is actually a regular expression character group
|
||||||
| The configured value is actually a regular expression character group
|
| and it will be used as: '/\A[<permittedURIChars>]+\z/iu'
|
||||||
| and it will be used as: '/\A[<permittedURIChars>]+\z/iu'
|
|
|
||||||
|
|
| DO NOT CHANGE THIS UNLESS YOU FULLY UNDERSTAND THE REPERCUSSIONS!!
|
||||||
| DO NOT CHANGE THIS UNLESS YOU FULLY UNDERSTAND THE REPERCUSSIONS!!
|
|
|
||||||
|
|
*/
|
||||||
*/
|
public string $permittedURIChars = 'a-z 0-9~%.:_\-';
|
||||||
public string $permittedURIChars = 'a-z 0-9~%.:_\-';
|
|
||||||
|
/**
|
||||||
/**
|
* --------------------------------------------------------------------------
|
||||||
* --------------------------------------------------------------------------
|
* Default Locale
|
||||||
* Default Locale
|
* --------------------------------------------------------------------------
|
||||||
* --------------------------------------------------------------------------
|
*
|
||||||
*
|
* The Locale roughly represents the language and location that your visitor
|
||||||
* The Locale roughly represents the language and location that your visitor
|
* is viewing the site from. It affects the language strings and other
|
||||||
* is viewing the site from. It affects the language strings and other
|
* strings (like currency markers, numbers, etc), that your program
|
||||||
* strings (like currency markers, numbers, etc), that your program
|
* should run under for this request.
|
||||||
* should run under for this request.
|
*/
|
||||||
*/
|
public string $defaultLocale = 'en';
|
||||||
public string $defaultLocale = 'en';
|
|
||||||
|
/**
|
||||||
/**
|
* --------------------------------------------------------------------------
|
||||||
* --------------------------------------------------------------------------
|
* Negotiate Locale
|
||||||
* Negotiate Locale
|
* --------------------------------------------------------------------------
|
||||||
* --------------------------------------------------------------------------
|
*
|
||||||
*
|
* If true, the current Request object will automatically determine the
|
||||||
* If true, the current Request object will automatically determine the
|
* language to use based on the value of the Accept-Language header.
|
||||||
* language to use based on the value of the Accept-Language header.
|
*
|
||||||
*
|
* If false, no automatic detection will be performed.
|
||||||
* If false, no automatic detection will be performed.
|
*/
|
||||||
*/
|
public bool $negotiateLocale = false;
|
||||||
public bool $negotiateLocale = false;
|
|
||||||
|
/**
|
||||||
/**
|
* --------------------------------------------------------------------------
|
||||||
* --------------------------------------------------------------------------
|
* Supported Locales
|
||||||
* Supported Locales
|
* --------------------------------------------------------------------------
|
||||||
* --------------------------------------------------------------------------
|
*
|
||||||
*
|
* If $negotiateLocale is true, this array lists the locales supported
|
||||||
* If $negotiateLocale is true, this array lists the locales supported
|
* by the application in descending order of priority. If no match is
|
||||||
* by the application in descending order of priority. If no match is
|
* found, the first locale will be used.
|
||||||
* found, the first locale will be used.
|
*
|
||||||
*
|
* IncomingRequest::setLocale() also uses this list.
|
||||||
* IncomingRequest::setLocale() also uses this list.
|
*
|
||||||
*
|
* @var list<string>
|
||||||
* @var list<string>
|
*/
|
||||||
*/
|
public array $supportedLocales = ['en'];
|
||||||
public array $supportedLocales = ['en'];
|
|
||||||
|
/**
|
||||||
/**
|
* --------------------------------------------------------------------------
|
||||||
* --------------------------------------------------------------------------
|
* Application Timezone
|
||||||
* Application Timezone
|
* --------------------------------------------------------------------------
|
||||||
* --------------------------------------------------------------------------
|
*
|
||||||
*
|
* The default timezone that will be used in your application to display
|
||||||
* The default timezone that will be used in your application to display
|
* dates with the date helper, and can be retrieved through app_timezone()
|
||||||
* dates with the date helper, and can be retrieved through app_timezone()
|
*
|
||||||
*
|
* @see https://www.php.net/manual/en/timezones.php for list of timezones
|
||||||
* @see https://www.php.net/manual/en/timezones.php for list of timezones
|
* supported by PHP.
|
||||||
* supported by PHP.
|
*/
|
||||||
*/
|
public string $appTimezone = 'UTC';
|
||||||
public string $appTimezone = 'UTC';
|
|
||||||
|
/**
|
||||||
/**
|
* --------------------------------------------------------------------------
|
||||||
* --------------------------------------------------------------------------
|
* Default Character Set
|
||||||
* Default Character Set
|
* --------------------------------------------------------------------------
|
||||||
* --------------------------------------------------------------------------
|
*
|
||||||
*
|
* This determines which character set is used by default in various methods
|
||||||
* This determines which character set is used by default in various methods
|
* that require a character set to be provided.
|
||||||
* that require a character set to be provided.
|
*
|
||||||
*
|
* @see http://php.net/htmlspecialchars for a list of supported charsets.
|
||||||
* @see http://php.net/htmlspecialchars for a list of supported charsets.
|
*/
|
||||||
*/
|
public string $charset = 'UTF-8';
|
||||||
public string $charset = 'UTF-8';
|
|
||||||
|
/**
|
||||||
/**
|
* --------------------------------------------------------------------------
|
||||||
* --------------------------------------------------------------------------
|
* Force Global Secure Requests
|
||||||
* Force Global Secure Requests
|
* --------------------------------------------------------------------------
|
||||||
* --------------------------------------------------------------------------
|
*
|
||||||
*
|
* If true, this will force every request made to this application to be
|
||||||
* If true, this will force every request made to this application to be
|
* made via a secure connection (HTTPS). If the incoming request is not
|
||||||
* made via a secure connection (HTTPS). If the incoming request is not
|
* secure, the user will be redirected to a secure version of the page
|
||||||
* secure, the user will be redirected to a secure version of the page
|
* and the HTTP Strict Transport Security (HSTS) header will be set.
|
||||||
* and the HTTP Strict Transport Security (HSTS) header will be set.
|
*/
|
||||||
*/
|
public bool $forceGlobalSecureRequests = false;
|
||||||
public bool $forceGlobalSecureRequests = false;
|
|
||||||
|
/**
|
||||||
/**
|
* --------------------------------------------------------------------------
|
||||||
* --------------------------------------------------------------------------
|
* Reverse Proxy IPs
|
||||||
* Reverse Proxy IPs
|
* --------------------------------------------------------------------------
|
||||||
* --------------------------------------------------------------------------
|
*
|
||||||
*
|
* If your server is behind a reverse proxy, you must whitelist the proxy
|
||||||
* If your server is behind a reverse proxy, you must whitelist the proxy
|
* IP addresses from which CodeIgniter should trust headers such as
|
||||||
* IP addresses from which CodeIgniter should trust headers such as
|
* X-Forwarded-For or Client-IP in order to properly identify
|
||||||
* X-Forwarded-For or Client-IP in order to properly identify
|
* the visitor's IP address.
|
||||||
* the visitor's IP address.
|
*
|
||||||
*
|
* You need to set a proxy IP address or IP address with subnets and
|
||||||
* You need to set a proxy IP address or IP address with subnets and
|
* the HTTP header for the client IP address.
|
||||||
* the HTTP header for the client IP address.
|
*
|
||||||
*
|
* Here are some examples:
|
||||||
* Here are some examples:
|
* [
|
||||||
* [
|
* '10.0.1.200' => 'X-Forwarded-For',
|
||||||
* '10.0.1.200' => 'X-Forwarded-For',
|
* '192.168.5.0/24' => 'X-Real-IP',
|
||||||
* '192.168.5.0/24' => 'X-Real-IP',
|
* ]
|
||||||
* ]
|
*
|
||||||
*
|
* @var array<string, string>
|
||||||
* @var array<string, string>
|
*/
|
||||||
*/
|
public array $proxyIPs = [];
|
||||||
public array $proxyIPs = [];
|
|
||||||
|
/**
|
||||||
/**
|
* --------------------------------------------------------------------------
|
||||||
* --------------------------------------------------------------------------
|
* Content Security Policy
|
||||||
* Content Security Policy
|
* --------------------------------------------------------------------------
|
||||||
* --------------------------------------------------------------------------
|
*
|
||||||
*
|
* Enables the Response's Content Secure Policy to restrict the sources that
|
||||||
* Enables the Response's Content Secure Policy to restrict the sources that
|
* can be used for images, scripts, CSS files, audio, video, etc. If enabled,
|
||||||
* can be used for images, scripts, CSS files, audio, video, etc. If enabled,
|
* the Response object will populate default values for the policy from the
|
||||||
* the Response object will populate default values for the policy from the
|
* `ContentSecurityPolicy.php` file. Controllers can always add to those
|
||||||
* `ContentSecurityPolicy.php` file. Controllers can always add to those
|
* restrictions at run time.
|
||||||
* restrictions at run time.
|
*
|
||||||
*
|
* For a better understanding of CSP, see these documents:
|
||||||
* For a better understanding of CSP, see these documents:
|
*
|
||||||
*
|
* @see http://www.html5rocks.com/en/tutorials/security/content-security-policy/
|
||||||
* @see http://www.html5rocks.com/en/tutorials/security/content-security-policy/
|
* @see http://www.w3.org/TR/CSP/
|
||||||
* @see http://www.w3.org/TR/CSP/
|
*/
|
||||||
*/
|
public bool $CSPEnabled = false;
|
||||||
public bool $CSPEnabled = false;
|
}
|
||||||
}
|
|
||||||
|
|||||||
184
app/Config/Autoload.php
Executable file → Normal file
184
app/Config/Autoload.php
Executable file → Normal file
@ -1,92 +1,92 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Config;
|
namespace Config;
|
||||||
|
|
||||||
use CodeIgniter\Config\AutoloadConfig;
|
use CodeIgniter\Config\AutoloadConfig;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* -------------------------------------------------------------------
|
* -------------------------------------------------------------------
|
||||||
* AUTOLOADER CONFIGURATION
|
* AUTOLOADER CONFIGURATION
|
||||||
* -------------------------------------------------------------------
|
* -------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* This file defines the namespaces and class maps so the Autoloader
|
* This file defines the namespaces and class maps so the Autoloader
|
||||||
* can find the files as needed.
|
* can find the files as needed.
|
||||||
*
|
*
|
||||||
* NOTE: If you use an identical key in $psr4 or $classmap, then
|
* NOTE: If you use an identical key in $psr4 or $classmap, then
|
||||||
* the values in this file will overwrite the framework's values.
|
* the values in this file will overwrite the framework's values.
|
||||||
*
|
*
|
||||||
* NOTE: This class is required prior to Autoloader instantiation,
|
* NOTE: This class is required prior to Autoloader instantiation,
|
||||||
* and does not extend BaseConfig.
|
* and does not extend BaseConfig.
|
||||||
*/
|
*/
|
||||||
class Autoload extends AutoloadConfig
|
class Autoload extends AutoloadConfig
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* -------------------------------------------------------------------
|
* -------------------------------------------------------------------
|
||||||
* Namespaces
|
* Namespaces
|
||||||
* -------------------------------------------------------------------
|
* -------------------------------------------------------------------
|
||||||
* This maps the locations of any namespaces in your application to
|
* This maps the locations of any namespaces in your application to
|
||||||
* their location on the file system. These are used by the autoloader
|
* their location on the file system. These are used by the autoloader
|
||||||
* to locate files the first time they have been instantiated.
|
* to locate files the first time they have been instantiated.
|
||||||
*
|
*
|
||||||
* The 'Config' (APPPATH . 'Config') and 'CodeIgniter' (SYSTEMPATH) are
|
* The 'Config' (APPPATH . 'Config') and 'CodeIgniter' (SYSTEMPATH) are
|
||||||
* already mapped for you.
|
* already mapped for you.
|
||||||
*
|
*
|
||||||
* You may change the name of the 'App' namespace if you wish,
|
* You may change the name of the 'App' namespace if you wish,
|
||||||
* but this should be done prior to creating any namespaced classes,
|
* but this should be done prior to creating any namespaced classes,
|
||||||
* else you will need to modify all of those classes for this to work.
|
* else you will need to modify all of those classes for this to work.
|
||||||
*
|
*
|
||||||
* @var array<string, list<string>|string>
|
* @var array<string, list<string>|string>
|
||||||
*/
|
*/
|
||||||
public $psr4 = [
|
public $psr4 = [
|
||||||
APP_NAMESPACE => APPPATH,
|
APP_NAMESPACE => APPPATH,
|
||||||
];
|
];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* -------------------------------------------------------------------
|
* -------------------------------------------------------------------
|
||||||
* Class Map
|
* Class Map
|
||||||
* -------------------------------------------------------------------
|
* -------------------------------------------------------------------
|
||||||
* The class map provides a map of class names and their exact
|
* The class map provides a map of class names and their exact
|
||||||
* location on the drive. Classes loaded in this manner will have
|
* location on the drive. Classes loaded in this manner will have
|
||||||
* slightly faster performance because they will not have to be
|
* slightly faster performance because they will not have to be
|
||||||
* searched for within one or more directories as they would if they
|
* searched for within one or more directories as they would if they
|
||||||
* were being autoloaded through a namespace.
|
* were being autoloaded through a namespace.
|
||||||
*
|
*
|
||||||
* Prototype:
|
* Prototype:
|
||||||
* $classmap = [
|
* $classmap = [
|
||||||
* 'MyClass' => '/path/to/class/file.php'
|
* 'MyClass' => '/path/to/class/file.php'
|
||||||
* ];
|
* ];
|
||||||
*
|
*
|
||||||
* @var array<string, string>
|
* @var array<string, string>
|
||||||
*/
|
*/
|
||||||
public $classmap = [];
|
public $classmap = [];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* -------------------------------------------------------------------
|
* -------------------------------------------------------------------
|
||||||
* Files
|
* Files
|
||||||
* -------------------------------------------------------------------
|
* -------------------------------------------------------------------
|
||||||
* The files array provides a list of paths to __non-class__ files
|
* The files array provides a list of paths to __non-class__ files
|
||||||
* that will be autoloaded. This can be useful for bootstrap operations
|
* that will be autoloaded. This can be useful for bootstrap operations
|
||||||
* or for loading functions.
|
* or for loading functions.
|
||||||
*
|
*
|
||||||
* Prototype:
|
* Prototype:
|
||||||
* $files = [
|
* $files = [
|
||||||
* '/path/to/my/file.php',
|
* '/path/to/my/file.php',
|
||||||
* ];
|
* ];
|
||||||
*
|
*
|
||||||
* @var list<string>
|
* @var list<string>
|
||||||
*/
|
*/
|
||||||
public $files = [];
|
public $files = [];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* -------------------------------------------------------------------
|
* -------------------------------------------------------------------
|
||||||
* Helpers
|
* Helpers
|
||||||
* -------------------------------------------------------------------
|
* -------------------------------------------------------------------
|
||||||
* Prototype:
|
* Prototype:
|
||||||
* $helpers = [
|
* $helpers = [
|
||||||
* 'form',
|
* 'form',
|
||||||
* ];
|
* ];
|
||||||
*
|
*
|
||||||
* @var list<string>
|
* @var list<string>
|
||||||
*/
|
*/
|
||||||
public $helpers = [];
|
public $helpers = [];
|
||||||
}
|
}
|
||||||
|
|||||||
68
app/Config/Boot/development.php
Executable file → Normal file
68
app/Config/Boot/development.php
Executable file → Normal file
@ -1,34 +1,34 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
| ERROR DISPLAY
|
| ERROR DISPLAY
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
| In development, we want to show as many errors as possible to help
|
| In development, we want to show as many errors as possible to help
|
||||||
| make sure they don't make it to production. And save us hours of
|
| make sure they don't make it to production. And save us hours of
|
||||||
| painful debugging.
|
| painful debugging.
|
||||||
|
|
|
|
||||||
| If you set 'display_errors' to '1', CI4's detailed error report will show.
|
| If you set 'display_errors' to '1', CI4's detailed error report will show.
|
||||||
*/
|
*/
|
||||||
error_reporting(E_ALL);
|
error_reporting(E_ALL);
|
||||||
ini_set('display_errors', '1');
|
ini_set('display_errors', '1');
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
| DEBUG BACKTRACES
|
| DEBUG BACKTRACES
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
| If true, this constant will tell the error screens to display debug
|
| If true, this constant will tell the error screens to display debug
|
||||||
| backtraces along with the other error information. If you would
|
| backtraces along with the other error information. If you would
|
||||||
| prefer to not see this, set this value to false.
|
| prefer to not see this, set this value to false.
|
||||||
*/
|
*/
|
||||||
defined('SHOW_DEBUG_BACKTRACE') || define('SHOW_DEBUG_BACKTRACE', true);
|
defined('SHOW_DEBUG_BACKTRACE') || define('SHOW_DEBUG_BACKTRACE', true);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
| DEBUG MODE
|
| DEBUG MODE
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
| Debug mode is an experimental flag that can allow changes throughout
|
| Debug mode is an experimental flag that can allow changes throughout
|
||||||
| the system. This will control whether Kint is loaded, and a few other
|
| the system. This will control whether Kint is loaded, and a few other
|
||||||
| items. It can always be used within your own application too.
|
| items. It can always be used within your own application too.
|
||||||
*/
|
*/
|
||||||
defined('CI_DEBUG') || define('CI_DEBUG', true);
|
defined('CI_DEBUG') || define('CI_DEBUG', true);
|
||||||
|
|||||||
50
app/Config/Boot/production.php
Executable file → Normal file
50
app/Config/Boot/production.php
Executable file → Normal file
@ -1,25 +1,25 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
| ERROR DISPLAY
|
| ERROR DISPLAY
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
| Don't show ANY in production environments. Instead, let the system catch
|
| Don't show ANY in production environments. Instead, let the system catch
|
||||||
| it and display a generic error message.
|
| it and display a generic error message.
|
||||||
|
|
|
|
||||||
| If you set 'display_errors' to '1', CI4's detailed error report will show.
|
| If you set 'display_errors' to '1', CI4's detailed error report will show.
|
||||||
*/
|
*/
|
||||||
error_reporting(E_ALL & ~E_DEPRECATED);
|
error_reporting(E_ALL & ~E_DEPRECATED);
|
||||||
// If you want to suppress more types of errors.
|
// If you want to suppress more types of errors.
|
||||||
// error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED & ~E_STRICT & ~E_USER_NOTICE & ~E_USER_DEPRECATED);
|
// error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED & ~E_STRICT & ~E_USER_NOTICE & ~E_USER_DEPRECATED);
|
||||||
ini_set('display_errors', '0');
|
ini_set('display_errors', '0');
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
| DEBUG MODE
|
| DEBUG MODE
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
| Debug mode is an experimental flag that can allow changes throughout
|
| Debug mode is an experimental flag that can allow changes throughout
|
||||||
| the system. It's not widely used currently, and may not survive
|
| the system. It's not widely used currently, and may not survive
|
||||||
| release of the framework.
|
| release of the framework.
|
||||||
*/
|
*/
|
||||||
defined('CI_DEBUG') || define('CI_DEBUG', false);
|
defined('CI_DEBUG') || define('CI_DEBUG', false);
|
||||||
|
|||||||
76
app/Config/Boot/testing.php
Executable file → Normal file
76
app/Config/Boot/testing.php
Executable file → Normal file
@ -1,38 +1,38 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The environment testing is reserved for PHPUnit testing. It has special
|
* The environment testing is reserved for PHPUnit testing. It has special
|
||||||
* conditions built into the framework at various places to assist with that.
|
* conditions built into the framework at various places to assist with that.
|
||||||
* You can’t use it for your development.
|
* You can’t use it for your development.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
| ERROR DISPLAY
|
| ERROR DISPLAY
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
| In development, we want to show as many errors as possible to help
|
| In development, we want to show as many errors as possible to help
|
||||||
| make sure they don't make it to production. And save us hours of
|
| make sure they don't make it to production. And save us hours of
|
||||||
| painful debugging.
|
| painful debugging.
|
||||||
*/
|
*/
|
||||||
error_reporting(E_ALL);
|
error_reporting(E_ALL);
|
||||||
ini_set('display_errors', '1');
|
ini_set('display_errors', '1');
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
| DEBUG BACKTRACES
|
| DEBUG BACKTRACES
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
| If true, this constant will tell the error screens to display debug
|
| If true, this constant will tell the error screens to display debug
|
||||||
| backtraces along with the other error information. If you would
|
| backtraces along with the other error information. If you would
|
||||||
| prefer to not see this, set this value to false.
|
| prefer to not see this, set this value to false.
|
||||||
*/
|
*/
|
||||||
defined('SHOW_DEBUG_BACKTRACE') || define('SHOW_DEBUG_BACKTRACE', true);
|
defined('SHOW_DEBUG_BACKTRACE') || define('SHOW_DEBUG_BACKTRACE', true);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
| DEBUG MODE
|
| DEBUG MODE
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
| Debug mode is an experimental flag that can allow changes throughout
|
| Debug mode is an experimental flag that can allow changes throughout
|
||||||
| the system. It's not widely used currently, and may not survive
|
| the system. It's not widely used currently, and may not survive
|
||||||
| release of the framework.
|
| release of the framework.
|
||||||
*/
|
*/
|
||||||
defined('CI_DEBUG') || define('CI_DEBUG', true);
|
defined('CI_DEBUG') || define('CI_DEBUG', true);
|
||||||
|
|||||||
40
app/Config/CURLRequest.php
Executable file → Normal file
40
app/Config/CURLRequest.php
Executable file → Normal file
@ -1,20 +1,20 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Config;
|
namespace Config;
|
||||||
|
|
||||||
use CodeIgniter\Config\BaseConfig;
|
use CodeIgniter\Config\BaseConfig;
|
||||||
|
|
||||||
class CURLRequest extends BaseConfig
|
class CURLRequest extends BaseConfig
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* CURLRequest Share Options
|
* CURLRequest Share Options
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* Whether share options between requests or not.
|
* Whether share options between requests or not.
|
||||||
*
|
*
|
||||||
* If true, all the options won't be reset between requests.
|
* If true, all the options won't be reset between requests.
|
||||||
* It may cause an error request with unnecessary headers.
|
* It may cause an error request with unnecessary headers.
|
||||||
*/
|
*/
|
||||||
public bool $shareOptions = false;
|
public bool $shareOptions = false;
|
||||||
}
|
}
|
||||||
|
|||||||
324
app/Config/Cache.php
Executable file → Normal file
324
app/Config/Cache.php
Executable file → Normal file
@ -1,162 +1,162 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Config;
|
namespace Config;
|
||||||
|
|
||||||
use CodeIgniter\Cache\CacheInterface;
|
use CodeIgniter\Cache\CacheInterface;
|
||||||
use CodeIgniter\Cache\Handlers\DummyHandler;
|
use CodeIgniter\Cache\Handlers\DummyHandler;
|
||||||
use CodeIgniter\Cache\Handlers\FileHandler;
|
use CodeIgniter\Cache\Handlers\FileHandler;
|
||||||
use CodeIgniter\Cache\Handlers\MemcachedHandler;
|
use CodeIgniter\Cache\Handlers\MemcachedHandler;
|
||||||
use CodeIgniter\Cache\Handlers\PredisHandler;
|
use CodeIgniter\Cache\Handlers\PredisHandler;
|
||||||
use CodeIgniter\Cache\Handlers\RedisHandler;
|
use CodeIgniter\Cache\Handlers\RedisHandler;
|
||||||
use CodeIgniter\Cache\Handlers\WincacheHandler;
|
use CodeIgniter\Cache\Handlers\WincacheHandler;
|
||||||
use CodeIgniter\Config\BaseConfig;
|
use CodeIgniter\Config\BaseConfig;
|
||||||
|
|
||||||
class Cache extends BaseConfig
|
class Cache extends BaseConfig
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* Primary Handler
|
* Primary Handler
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* The name of the preferred handler that should be used. If for some reason
|
* The name of the preferred handler that should be used. If for some reason
|
||||||
* it is not available, the $backupHandler will be used in its place.
|
* it is not available, the $backupHandler will be used in its place.
|
||||||
*/
|
*/
|
||||||
public string $handler = 'file';
|
public string $handler = 'file';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* Backup Handler
|
* Backup Handler
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* The name of the handler that will be used in case the first one is
|
* The name of the handler that will be used in case the first one is
|
||||||
* unreachable. Often, 'file' is used here since the filesystem is
|
* unreachable. Often, 'file' is used here since the filesystem is
|
||||||
* always available, though that's not always practical for the app.
|
* always available, though that's not always practical for the app.
|
||||||
*/
|
*/
|
||||||
public string $backupHandler = 'dummy';
|
public string $backupHandler = 'dummy';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* Key Prefix
|
* Key Prefix
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* This string is added to all cache item names to help avoid collisions
|
* This string is added to all cache item names to help avoid collisions
|
||||||
* if you run multiple applications with the same cache engine.
|
* if you run multiple applications with the same cache engine.
|
||||||
*/
|
*/
|
||||||
public string $prefix = '';
|
public string $prefix = '';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* Default TTL
|
* Default TTL
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* The default number of seconds to save items when none is specified.
|
* The default number of seconds to save items when none is specified.
|
||||||
*
|
*
|
||||||
* WARNING: This is not used by framework handlers where 60 seconds is
|
* WARNING: This is not used by framework handlers where 60 seconds is
|
||||||
* hard-coded, but may be useful to projects and modules. This will replace
|
* hard-coded, but may be useful to projects and modules. This will replace
|
||||||
* the hard-coded value in a future release.
|
* the hard-coded value in a future release.
|
||||||
*/
|
*/
|
||||||
public int $ttl = 60;
|
public int $ttl = 60;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* Reserved Characters
|
* Reserved Characters
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* A string of reserved characters that will not be allowed in keys or tags.
|
* A string of reserved characters that will not be allowed in keys or tags.
|
||||||
* Strings that violate this restriction will cause handlers to throw.
|
* Strings that violate this restriction will cause handlers to throw.
|
||||||
* Default: {}()/\@:
|
* Default: {}()/\@:
|
||||||
*
|
*
|
||||||
* NOTE: The default set is required for PSR-6 compliance.
|
* NOTE: The default set is required for PSR-6 compliance.
|
||||||
*/
|
*/
|
||||||
public string $reservedCharacters = '{}()/\@:';
|
public string $reservedCharacters = '{}()/\@:';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* File settings
|
* File settings
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* Your file storage preferences can be specified below, if you are using
|
* Your file storage preferences can be specified below, if you are using
|
||||||
* the File driver.
|
* the File driver.
|
||||||
*
|
*
|
||||||
* @var array<string, int|string|null>
|
* @var array<string, int|string|null>
|
||||||
*/
|
*/
|
||||||
public array $file = [
|
public array $file = [
|
||||||
'storePath' => WRITEPATH . 'cache/',
|
'storePath' => WRITEPATH . 'cache/',
|
||||||
'mode' => 0640,
|
'mode' => 0640,
|
||||||
];
|
];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* -------------------------------------------------------------------------
|
* -------------------------------------------------------------------------
|
||||||
* Memcached settings
|
* Memcached settings
|
||||||
* -------------------------------------------------------------------------
|
* -------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* Your Memcached servers can be specified below, if you are using
|
* Your Memcached servers can be specified below, if you are using
|
||||||
* the Memcached drivers.
|
* the Memcached drivers.
|
||||||
*
|
*
|
||||||
* @see https://codeigniter.com/user_guide/libraries/caching.html#memcached
|
* @see https://codeigniter.com/user_guide/libraries/caching.html#memcached
|
||||||
*
|
*
|
||||||
* @var array<string, bool|int|string>
|
* @var array<string, bool|int|string>
|
||||||
*/
|
*/
|
||||||
public array $memcached = [
|
public array $memcached = [
|
||||||
'host' => '127.0.0.1',
|
'host' => '127.0.0.1',
|
||||||
'port' => 11211,
|
'port' => 11211,
|
||||||
'weight' => 1,
|
'weight' => 1,
|
||||||
'raw' => false,
|
'raw' => false,
|
||||||
];
|
];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* -------------------------------------------------------------------------
|
* -------------------------------------------------------------------------
|
||||||
* Redis settings
|
* Redis settings
|
||||||
* -------------------------------------------------------------------------
|
* -------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* Your Redis server can be specified below, if you are using
|
* Your Redis server can be specified below, if you are using
|
||||||
* the Redis or Predis drivers.
|
* the Redis or Predis drivers.
|
||||||
*
|
*
|
||||||
* @var array<string, int|string|null>
|
* @var array<string, int|string|null>
|
||||||
*/
|
*/
|
||||||
public array $redis = [
|
public array $redis = [
|
||||||
'host' => '127.0.0.1',
|
'host' => '127.0.0.1',
|
||||||
'password' => null,
|
'password' => null,
|
||||||
'port' => 6379,
|
'port' => 6379,
|
||||||
'timeout' => 0,
|
'timeout' => 0,
|
||||||
'database' => 0,
|
'database' => 0,
|
||||||
];
|
];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* Available Cache Handlers
|
* Available Cache Handlers
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* This is an array of cache engine alias' and class names. Only engines
|
* This is an array of cache engine alias' and class names. Only engines
|
||||||
* that are listed here are allowed to be used.
|
* that are listed here are allowed to be used.
|
||||||
*
|
*
|
||||||
* @var array<string, class-string<CacheInterface>>
|
* @var array<string, class-string<CacheInterface>>
|
||||||
*/
|
*/
|
||||||
public array $validHandlers = [
|
public array $validHandlers = [
|
||||||
'dummy' => DummyHandler::class,
|
'dummy' => DummyHandler::class,
|
||||||
'file' => FileHandler::class,
|
'file' => FileHandler::class,
|
||||||
'memcached' => MemcachedHandler::class,
|
'memcached' => MemcachedHandler::class,
|
||||||
'predis' => PredisHandler::class,
|
'predis' => PredisHandler::class,
|
||||||
'redis' => RedisHandler::class,
|
'redis' => RedisHandler::class,
|
||||||
'wincache' => WincacheHandler::class,
|
'wincache' => WincacheHandler::class,
|
||||||
];
|
];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* Web Page Caching: Cache Include Query String
|
* Web Page Caching: Cache Include Query String
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* Whether to take the URL query string into consideration when generating
|
* Whether to take the URL query string into consideration when generating
|
||||||
* output cache files. Valid options are:
|
* output cache files. Valid options are:
|
||||||
*
|
*
|
||||||
* false = Disabled
|
* false = Disabled
|
||||||
* true = Enabled, take all query parameters into account.
|
* true = Enabled, take all query parameters into account.
|
||||||
* Please be aware that this may result in numerous cache
|
* Please be aware that this may result in numerous cache
|
||||||
* files generated for the same page over and over again.
|
* files generated for the same page over and over again.
|
||||||
* ['q'] = Enabled, but only take into account the specified list
|
* ['q'] = Enabled, but only take into account the specified list
|
||||||
* of query parameters.
|
* of query parameters.
|
||||||
*
|
*
|
||||||
* @var bool|list<string>
|
* @var bool|list<string>
|
||||||
*/
|
*/
|
||||||
public $cacheQueryString = false;
|
public $cacheQueryString = false;
|
||||||
}
|
}
|
||||||
|
|||||||
158
app/Config/Constants.php
Executable file → Normal file
158
app/Config/Constants.php
Executable file → Normal file
@ -1,79 +1,79 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
/*
|
/*
|
||||||
| --------------------------------------------------------------------
|
| --------------------------------------------------------------------
|
||||||
| App Namespace
|
| App Namespace
|
||||||
| --------------------------------------------------------------------
|
| --------------------------------------------------------------------
|
||||||
|
|
|
|
||||||
| This defines the default Namespace that is used throughout
|
| This defines the default Namespace that is used throughout
|
||||||
| CodeIgniter to refer to the Application directory. Change
|
| CodeIgniter to refer to the Application directory. Change
|
||||||
| this constant to change the namespace that all application
|
| this constant to change the namespace that all application
|
||||||
| classes should use.
|
| classes should use.
|
||||||
|
|
|
|
||||||
| NOTE: changing this will require manually modifying the
|
| NOTE: changing this will require manually modifying the
|
||||||
| existing namespaces of App\* namespaced-classes.
|
| existing namespaces of App\* namespaced-classes.
|
||||||
*/
|
*/
|
||||||
defined('APP_NAMESPACE') || define('APP_NAMESPACE', 'App');
|
defined('APP_NAMESPACE') || define('APP_NAMESPACE', 'App');
|
||||||
|
|
||||||
/*
|
/*
|
||||||
| --------------------------------------------------------------------------
|
| --------------------------------------------------------------------------
|
||||||
| Composer Path
|
| Composer Path
|
||||||
| --------------------------------------------------------------------------
|
| --------------------------------------------------------------------------
|
||||||
|
|
|
|
||||||
| The path that Composer's autoload file is expected to live. By default,
|
| The path that Composer's autoload file is expected to live. By default,
|
||||||
| the vendor folder is in the Root directory, but you can customize that here.
|
| the vendor folder is in the Root directory, but you can customize that here.
|
||||||
*/
|
*/
|
||||||
defined('COMPOSER_PATH') || define('COMPOSER_PATH', ROOTPATH . 'vendor/autoload.php');
|
defined('COMPOSER_PATH') || define('COMPOSER_PATH', ROOTPATH . 'vendor/autoload.php');
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
| Timing Constants
|
| Timing Constants
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
|
||||||
| Provide simple ways to work with the myriad of PHP functions that
|
| Provide simple ways to work with the myriad of PHP functions that
|
||||||
| require information to be in seconds.
|
| require information to be in seconds.
|
||||||
*/
|
*/
|
||||||
defined('SECOND') || define('SECOND', 1);
|
defined('SECOND') || define('SECOND', 1);
|
||||||
defined('MINUTE') || define('MINUTE', 60);
|
defined('MINUTE') || define('MINUTE', 60);
|
||||||
defined('HOUR') || define('HOUR', 3600);
|
defined('HOUR') || define('HOUR', 3600);
|
||||||
defined('DAY') || define('DAY', 86400);
|
defined('DAY') || define('DAY', 86400);
|
||||||
defined('WEEK') || define('WEEK', 604800);
|
defined('WEEK') || define('WEEK', 604800);
|
||||||
defined('MONTH') || define('MONTH', 2_592_000);
|
defined('MONTH') || define('MONTH', 2_592_000);
|
||||||
defined('YEAR') || define('YEAR', 31_536_000);
|
defined('YEAR') || define('YEAR', 31_536_000);
|
||||||
defined('DECADE') || define('DECADE', 315_360_000);
|
defined('DECADE') || define('DECADE', 315_360_000);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
| --------------------------------------------------------------------------
|
| --------------------------------------------------------------------------
|
||||||
| Exit Status Codes
|
| Exit Status Codes
|
||||||
| --------------------------------------------------------------------------
|
| --------------------------------------------------------------------------
|
||||||
|
|
|
|
||||||
| Used to indicate the conditions under which the script is exit()ing.
|
| Used to indicate the conditions under which the script is exit()ing.
|
||||||
| While there is no universal standard for error codes, there are some
|
| While there is no universal standard for error codes, there are some
|
||||||
| broad conventions. Three such conventions are mentioned below, for
|
| broad conventions. Three such conventions are mentioned below, for
|
||||||
| those who wish to make use of them. The CodeIgniter defaults were
|
| those who wish to make use of them. The CodeIgniter defaults were
|
||||||
| chosen for the least overlap with these conventions, while still
|
| chosen for the least overlap with these conventions, while still
|
||||||
| leaving room for others to be defined in future versions and user
|
| leaving room for others to be defined in future versions and user
|
||||||
| applications.
|
| applications.
|
||||||
|
|
|
|
||||||
| The three main conventions used for determining exit status codes
|
| The three main conventions used for determining exit status codes
|
||||||
| are as follows:
|
| are as follows:
|
||||||
|
|
|
|
||||||
| Standard C/C++ Library (stdlibc):
|
| Standard C/C++ Library (stdlibc):
|
||||||
| http://www.gnu.org/software/libc/manual/html_node/Exit-Status.html
|
| http://www.gnu.org/software/libc/manual/html_node/Exit-Status.html
|
||||||
| (This link also contains other GNU-specific conventions)
|
| (This link also contains other GNU-specific conventions)
|
||||||
| BSD sysexits.h:
|
| BSD sysexits.h:
|
||||||
| http://www.gsp.com/cgi-bin/man.cgi?section=3&topic=sysexits
|
| http://www.gsp.com/cgi-bin/man.cgi?section=3&topic=sysexits
|
||||||
| Bash scripting:
|
| Bash scripting:
|
||||||
| http://tldp.org/LDP/abs/html/exitcodes.html
|
| http://tldp.org/LDP/abs/html/exitcodes.html
|
||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
defined('EXIT_SUCCESS') || define('EXIT_SUCCESS', 0); // no errors
|
defined('EXIT_SUCCESS') || define('EXIT_SUCCESS', 0); // no errors
|
||||||
defined('EXIT_ERROR') || define('EXIT_ERROR', 1); // generic error
|
defined('EXIT_ERROR') || define('EXIT_ERROR', 1); // generic error
|
||||||
defined('EXIT_CONFIG') || define('EXIT_CONFIG', 3); // configuration error
|
defined('EXIT_CONFIG') || define('EXIT_CONFIG', 3); // configuration error
|
||||||
defined('EXIT_UNKNOWN_FILE') || define('EXIT_UNKNOWN_FILE', 4); // file not found
|
defined('EXIT_UNKNOWN_FILE') || define('EXIT_UNKNOWN_FILE', 4); // file not found
|
||||||
defined('EXIT_UNKNOWN_CLASS') || define('EXIT_UNKNOWN_CLASS', 5); // unknown class
|
defined('EXIT_UNKNOWN_CLASS') || define('EXIT_UNKNOWN_CLASS', 5); // unknown class
|
||||||
defined('EXIT_UNKNOWN_METHOD') || define('EXIT_UNKNOWN_METHOD', 6); // unknown class member
|
defined('EXIT_UNKNOWN_METHOD') || define('EXIT_UNKNOWN_METHOD', 6); // unknown class member
|
||||||
defined('EXIT_USER_INPUT') || define('EXIT_USER_INPUT', 7); // invalid user input
|
defined('EXIT_USER_INPUT') || define('EXIT_USER_INPUT', 7); // invalid user input
|
||||||
defined('EXIT_DATABASE') || define('EXIT_DATABASE', 8); // database error
|
defined('EXIT_DATABASE') || define('EXIT_DATABASE', 8); // database error
|
||||||
defined('EXIT__AUTO_MIN') || define('EXIT__AUTO_MIN', 9); // lowest automatically-assigned error code
|
defined('EXIT__AUTO_MIN') || define('EXIT__AUTO_MIN', 9); // lowest automatically-assigned error code
|
||||||
defined('EXIT__AUTO_MAX') || define('EXIT__AUTO_MAX', 125); // highest automatically-assigned error code
|
defined('EXIT__AUTO_MAX') || define('EXIT__AUTO_MAX', 125); // highest automatically-assigned error code
|
||||||
|
|||||||
352
app/Config/ContentSecurityPolicy.php
Executable file → Normal file
352
app/Config/ContentSecurityPolicy.php
Executable file → Normal file
@ -1,176 +1,176 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Config;
|
namespace Config;
|
||||||
|
|
||||||
use CodeIgniter\Config\BaseConfig;
|
use CodeIgniter\Config\BaseConfig;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Stores the default settings for the ContentSecurityPolicy, if you
|
* Stores the default settings for the ContentSecurityPolicy, if you
|
||||||
* choose to use it. The values here will be read in and set as defaults
|
* choose to use it. The values here will be read in and set as defaults
|
||||||
* for the site. If needed, they can be overridden on a page-by-page basis.
|
* for the site. If needed, they can be overridden on a page-by-page basis.
|
||||||
*
|
*
|
||||||
* Suggested reference for explanations:
|
* Suggested reference for explanations:
|
||||||
*
|
*
|
||||||
* @see https://www.html5rocks.com/en/tutorials/security/content-security-policy/
|
* @see https://www.html5rocks.com/en/tutorials/security/content-security-policy/
|
||||||
*/
|
*/
|
||||||
class ContentSecurityPolicy extends BaseConfig
|
class ContentSecurityPolicy extends BaseConfig
|
||||||
{
|
{
|
||||||
// -------------------------------------------------------------------------
|
// -------------------------------------------------------------------------
|
||||||
// Broadbrush CSP management
|
// Broadbrush CSP management
|
||||||
// -------------------------------------------------------------------------
|
// -------------------------------------------------------------------------
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Default CSP report context
|
* Default CSP report context
|
||||||
*/
|
*/
|
||||||
public bool $reportOnly = false;
|
public bool $reportOnly = false;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Specifies a URL where a browser will send reports
|
* Specifies a URL where a browser will send reports
|
||||||
* when a content security policy is violated.
|
* when a content security policy is violated.
|
||||||
*/
|
*/
|
||||||
public ?string $reportURI = null;
|
public ?string $reportURI = null;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Instructs user agents to rewrite URL schemes, changing
|
* Instructs user agents to rewrite URL schemes, changing
|
||||||
* HTTP to HTTPS. This directive is for websites with
|
* HTTP to HTTPS. This directive is for websites with
|
||||||
* large numbers of old URLs that need to be rewritten.
|
* large numbers of old URLs that need to be rewritten.
|
||||||
*/
|
*/
|
||||||
public bool $upgradeInsecureRequests = false;
|
public bool $upgradeInsecureRequests = false;
|
||||||
|
|
||||||
// -------------------------------------------------------------------------
|
// -------------------------------------------------------------------------
|
||||||
// Sources allowed
|
// Sources allowed
|
||||||
// NOTE: once you set a policy to 'none', it cannot be further restricted
|
// NOTE: once you set a policy to 'none', it cannot be further restricted
|
||||||
// -------------------------------------------------------------------------
|
// -------------------------------------------------------------------------
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Will default to self if not overridden
|
* Will default to self if not overridden
|
||||||
*
|
*
|
||||||
* @var list<string>|string|null
|
* @var list<string>|string|null
|
||||||
*/
|
*/
|
||||||
public $defaultSrc;
|
public $defaultSrc;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Lists allowed scripts' URLs.
|
* Lists allowed scripts' URLs.
|
||||||
*
|
*
|
||||||
* @var list<string>|string
|
* @var list<string>|string
|
||||||
*/
|
*/
|
||||||
public $scriptSrc = 'self';
|
public $scriptSrc = 'self';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Lists allowed stylesheets' URLs.
|
* Lists allowed stylesheets' URLs.
|
||||||
*
|
*
|
||||||
* @var list<string>|string
|
* @var list<string>|string
|
||||||
*/
|
*/
|
||||||
public $styleSrc = 'self';
|
public $styleSrc = 'self';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Defines the origins from which images can be loaded.
|
* Defines the origins from which images can be loaded.
|
||||||
*
|
*
|
||||||
* @var list<string>|string
|
* @var list<string>|string
|
||||||
*/
|
*/
|
||||||
public $imageSrc = 'self';
|
public $imageSrc = 'self';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Restricts the URLs that can appear in a page's `<base>` element.
|
* Restricts the URLs that can appear in a page's `<base>` element.
|
||||||
*
|
*
|
||||||
* Will default to self if not overridden
|
* Will default to self if not overridden
|
||||||
*
|
*
|
||||||
* @var list<string>|string|null
|
* @var list<string>|string|null
|
||||||
*/
|
*/
|
||||||
public $baseURI;
|
public $baseURI;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Lists the URLs for workers and embedded frame contents
|
* Lists the URLs for workers and embedded frame contents
|
||||||
*
|
*
|
||||||
* @var list<string>|string
|
* @var list<string>|string
|
||||||
*/
|
*/
|
||||||
public $childSrc = 'self';
|
public $childSrc = 'self';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Limits the origins that you can connect to (via XHR,
|
* Limits the origins that you can connect to (via XHR,
|
||||||
* WebSockets, and EventSource).
|
* WebSockets, and EventSource).
|
||||||
*
|
*
|
||||||
* @var list<string>|string
|
* @var list<string>|string
|
||||||
*/
|
*/
|
||||||
public $connectSrc = 'self';
|
public $connectSrc = 'self';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Specifies the origins that can serve web fonts.
|
* Specifies the origins that can serve web fonts.
|
||||||
*
|
*
|
||||||
* @var list<string>|string
|
* @var list<string>|string
|
||||||
*/
|
*/
|
||||||
public $fontSrc;
|
public $fontSrc;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Lists valid endpoints for submission from `<form>` tags.
|
* Lists valid endpoints for submission from `<form>` tags.
|
||||||
*
|
*
|
||||||
* @var list<string>|string
|
* @var list<string>|string
|
||||||
*/
|
*/
|
||||||
public $formAction = 'self';
|
public $formAction = 'self';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Specifies the sources that can embed the current page.
|
* Specifies the sources that can embed the current page.
|
||||||
* This directive applies to `<frame>`, `<iframe>`, `<embed>`,
|
* This directive applies to `<frame>`, `<iframe>`, `<embed>`,
|
||||||
* and `<applet>` tags. This directive can't be used in
|
* and `<applet>` tags. This directive can't be used in
|
||||||
* `<meta>` tags and applies only to non-HTML resources.
|
* `<meta>` tags and applies only to non-HTML resources.
|
||||||
*
|
*
|
||||||
* @var list<string>|string|null
|
* @var list<string>|string|null
|
||||||
*/
|
*/
|
||||||
public $frameAncestors;
|
public $frameAncestors;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The frame-src directive restricts the URLs which may
|
* The frame-src directive restricts the URLs which may
|
||||||
* be loaded into nested browsing contexts.
|
* be loaded into nested browsing contexts.
|
||||||
*
|
*
|
||||||
* @var list<string>|string|null
|
* @var list<string>|string|null
|
||||||
*/
|
*/
|
||||||
public $frameSrc;
|
public $frameSrc;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Restricts the origins allowed to deliver video and audio.
|
* Restricts the origins allowed to deliver video and audio.
|
||||||
*
|
*
|
||||||
* @var list<string>|string|null
|
* @var list<string>|string|null
|
||||||
*/
|
*/
|
||||||
public $mediaSrc;
|
public $mediaSrc;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Allows control over Flash and other plugins.
|
* Allows control over Flash and other plugins.
|
||||||
*
|
*
|
||||||
* @var list<string>|string
|
* @var list<string>|string
|
||||||
*/
|
*/
|
||||||
public $objectSrc = 'self';
|
public $objectSrc = 'self';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var list<string>|string|null
|
* @var list<string>|string|null
|
||||||
*/
|
*/
|
||||||
public $manifestSrc;
|
public $manifestSrc;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Limits the kinds of plugins a page may invoke.
|
* Limits the kinds of plugins a page may invoke.
|
||||||
*
|
*
|
||||||
* @var list<string>|string|null
|
* @var list<string>|string|null
|
||||||
*/
|
*/
|
||||||
public $pluginTypes;
|
public $pluginTypes;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* List of actions allowed.
|
* List of actions allowed.
|
||||||
*
|
*
|
||||||
* @var list<string>|string|null
|
* @var list<string>|string|null
|
||||||
*/
|
*/
|
||||||
public $sandbox;
|
public $sandbox;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Nonce tag for style
|
* Nonce tag for style
|
||||||
*/
|
*/
|
||||||
public string $styleNonceTag = '{csp-style-nonce}';
|
public string $styleNonceTag = '{csp-style-nonce}';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Nonce tag for script
|
* Nonce tag for script
|
||||||
*/
|
*/
|
||||||
public string $scriptNonceTag = '{csp-script-nonce}';
|
public string $scriptNonceTag = '{csp-script-nonce}';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Replace nonce tag automatically
|
* Replace nonce tag automatically
|
||||||
*/
|
*/
|
||||||
public bool $autoNonce = true;
|
public bool $autoNonce = true;
|
||||||
}
|
}
|
||||||
|
|||||||
214
app/Config/Cookie.php
Executable file → Normal file
214
app/Config/Cookie.php
Executable file → Normal file
@ -1,107 +1,107 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Config;
|
namespace Config;
|
||||||
|
|
||||||
use CodeIgniter\Config\BaseConfig;
|
use CodeIgniter\Config\BaseConfig;
|
||||||
use DateTimeInterface;
|
use DateTimeInterface;
|
||||||
|
|
||||||
class Cookie extends BaseConfig
|
class Cookie extends BaseConfig
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* Cookie Prefix
|
* Cookie Prefix
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* Set a cookie name prefix if you need to avoid collisions.
|
* Set a cookie name prefix if you need to avoid collisions.
|
||||||
*/
|
*/
|
||||||
public string $prefix = '';
|
public string $prefix = '';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* Cookie Expires Timestamp
|
* Cookie Expires Timestamp
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* Default expires timestamp for cookies. Setting this to `0` will mean the
|
* Default expires timestamp for cookies. Setting this to `0` will mean the
|
||||||
* cookie will not have the `Expires` attribute and will behave as a session
|
* cookie will not have the `Expires` attribute and will behave as a session
|
||||||
* cookie.
|
* cookie.
|
||||||
*
|
*
|
||||||
* @var DateTimeInterface|int|string
|
* @var DateTimeInterface|int|string
|
||||||
*/
|
*/
|
||||||
public $expires = 0;
|
public $expires = 0;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* Cookie Path
|
* Cookie Path
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* Typically will be a forward slash.
|
* Typically will be a forward slash.
|
||||||
*/
|
*/
|
||||||
public string $path = '/';
|
public string $path = '/';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* Cookie Domain
|
* Cookie Domain
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* Set to `.your-domain.com` for site-wide cookies.
|
* Set to `.your-domain.com` for site-wide cookies.
|
||||||
*/
|
*/
|
||||||
public string $domain = '';
|
public string $domain = '';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* Cookie Secure
|
* Cookie Secure
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* Cookie will only be set if a secure HTTPS connection exists.
|
* Cookie will only be set if a secure HTTPS connection exists.
|
||||||
*/
|
*/
|
||||||
public bool $secure = false;
|
public bool $secure = false;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* Cookie HTTPOnly
|
* Cookie HTTPOnly
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* Cookie will only be accessible via HTTP(S) (no JavaScript).
|
* Cookie will only be accessible via HTTP(S) (no JavaScript).
|
||||||
*/
|
*/
|
||||||
public bool $httponly = true;
|
public bool $httponly = true;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* Cookie SameSite
|
* Cookie SameSite
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* Configure cookie SameSite setting. Allowed values are:
|
* Configure cookie SameSite setting. Allowed values are:
|
||||||
* - None
|
* - None
|
||||||
* - Lax
|
* - Lax
|
||||||
* - Strict
|
* - Strict
|
||||||
* - ''
|
* - ''
|
||||||
*
|
*
|
||||||
* Alternatively, you can use the constant names:
|
* Alternatively, you can use the constant names:
|
||||||
* - `Cookie::SAMESITE_NONE`
|
* - `Cookie::SAMESITE_NONE`
|
||||||
* - `Cookie::SAMESITE_LAX`
|
* - `Cookie::SAMESITE_LAX`
|
||||||
* - `Cookie::SAMESITE_STRICT`
|
* - `Cookie::SAMESITE_STRICT`
|
||||||
*
|
*
|
||||||
* Defaults to `Lax` for compatibility with modern browsers. Setting `''`
|
* Defaults to `Lax` for compatibility with modern browsers. Setting `''`
|
||||||
* (empty string) means default SameSite attribute set by browsers (`Lax`)
|
* (empty string) means default SameSite attribute set by browsers (`Lax`)
|
||||||
* will be set on cookies. If set to `None`, `$secure` must also be set.
|
* will be set on cookies. If set to `None`, `$secure` must also be set.
|
||||||
*
|
*
|
||||||
* @phpstan-var 'None'|'Lax'|'Strict'|''
|
* @phpstan-var 'None'|'Lax'|'Strict'|''
|
||||||
*/
|
*/
|
||||||
public string $samesite = 'Lax';
|
public string $samesite = 'Lax';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* Cookie Raw
|
* Cookie Raw
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* This flag allows setting a "raw" cookie, i.e., its name and value are
|
* This flag allows setting a "raw" cookie, i.e., its name and value are
|
||||||
* not URL encoded using `rawurlencode()`.
|
* not URL encoded using `rawurlencode()`.
|
||||||
*
|
*
|
||||||
* If this is set to `true`, cookie names should be compliant of RFC 2616's
|
* If this is set to `true`, cookie names should be compliant of RFC 2616's
|
||||||
* list of allowed characters.
|
* list of allowed characters.
|
||||||
*
|
*
|
||||||
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie#attributes
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie#attributes
|
||||||
* @see https://tools.ietf.org/html/rfc2616#section-2.2
|
* @see https://tools.ietf.org/html/rfc2616#section-2.2
|
||||||
*/
|
*/
|
||||||
public bool $raw = false;
|
public bool $raw = false;
|
||||||
}
|
}
|
||||||
|
|||||||
210
app/Config/Cors.php
Executable file → Normal file
210
app/Config/Cors.php
Executable file → Normal file
@ -1,105 +1,105 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Config;
|
namespace Config;
|
||||||
|
|
||||||
use CodeIgniter\Config\BaseConfig;
|
use CodeIgniter\Config\BaseConfig;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Cross-Origin Resource Sharing (CORS) Configuration
|
* Cross-Origin Resource Sharing (CORS) Configuration
|
||||||
*
|
*
|
||||||
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS
|
||||||
*/
|
*/
|
||||||
class Cors extends BaseConfig
|
class Cors extends BaseConfig
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* The default CORS configuration.
|
* The default CORS configuration.
|
||||||
*
|
*
|
||||||
* @var array{
|
* @var array{
|
||||||
* allowedOrigins: list<string>,
|
* allowedOrigins: list<string>,
|
||||||
* allowedOriginsPatterns: list<string>,
|
* allowedOriginsPatterns: list<string>,
|
||||||
* supportsCredentials: bool,
|
* supportsCredentials: bool,
|
||||||
* allowedHeaders: list<string>,
|
* allowedHeaders: list<string>,
|
||||||
* exposedHeaders: list<string>,
|
* exposedHeaders: list<string>,
|
||||||
* allowedMethods: list<string>,
|
* allowedMethods: list<string>,
|
||||||
* maxAge: int,
|
* maxAge: int,
|
||||||
* }
|
* }
|
||||||
*/
|
*/
|
||||||
public array $default = [
|
public array $default = [
|
||||||
/**
|
/**
|
||||||
* Origins for the `Access-Control-Allow-Origin` header.
|
* Origins for the `Access-Control-Allow-Origin` header.
|
||||||
*
|
*
|
||||||
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Allow-Origin
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Allow-Origin
|
||||||
*
|
*
|
||||||
* E.g.:
|
* E.g.:
|
||||||
* - ['http://localhost:8080']
|
* - ['http://localhost:8080']
|
||||||
* - ['https://www.example.com']
|
* - ['https://www.example.com']
|
||||||
*/
|
*/
|
||||||
'allowedOrigins' => ['http://localhost:5173', 'https://clqms01.services-summit.my.id'],
|
'allowedOrigins' => ['http://localhost:5173', 'https://clqms01.services-summit.my.id'],
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Origin regex patterns for the `Access-Control-Allow-Origin` header.
|
* Origin regex patterns for the `Access-Control-Allow-Origin` header.
|
||||||
*
|
*
|
||||||
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Allow-Origin
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Allow-Origin
|
||||||
*
|
*
|
||||||
* NOTE: A pattern specified here is part of a regular expression. It will
|
* NOTE: A pattern specified here is part of a regular expression. It will
|
||||||
* be actually `#\A<pattern>\z#`.
|
* be actually `#\A<pattern>\z#`.
|
||||||
*
|
*
|
||||||
* E.g.:
|
* E.g.:
|
||||||
* - ['https://\w+\.example\.com']
|
* - ['https://\w+\.example\.com']
|
||||||
*/
|
*/
|
||||||
'allowedOriginsPatterns' => [],
|
'allowedOriginsPatterns' => [],
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Weather to send the `Access-Control-Allow-Credentials` header.
|
* Weather to send the `Access-Control-Allow-Credentials` header.
|
||||||
*
|
*
|
||||||
* The Access-Control-Allow-Credentials response header tells browsers whether
|
* The Access-Control-Allow-Credentials response header tells browsers whether
|
||||||
* the server allows cross-origin HTTP requests to include credentials.
|
* the server allows cross-origin HTTP requests to include credentials.
|
||||||
*
|
*
|
||||||
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Allow-Credentials
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Allow-Credentials
|
||||||
*/
|
*/
|
||||||
'supportsCredentials' => true,
|
'supportsCredentials' => true,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set headers to allow.
|
* Set headers to allow.
|
||||||
*
|
*
|
||||||
* The Access-Control-Allow-Headers response header is used in response to
|
* The Access-Control-Allow-Headers response header is used in response to
|
||||||
* a preflight request which includes the Access-Control-Request-Headers to
|
* a preflight request which includes the Access-Control-Request-Headers to
|
||||||
* indicate which HTTP headers can be used during the actual request.
|
* indicate which HTTP headers can be used during the actual request.
|
||||||
*
|
*
|
||||||
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Allow-Headers
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Allow-Headers
|
||||||
*/
|
*/
|
||||||
'allowedHeaders' => ['Content-Type', 'Authorization', 'X-Requested-With'],
|
'allowedHeaders' => ['Content-Type', 'Authorization', 'X-Requested-With'],
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set headers to expose.
|
* Set headers to expose.
|
||||||
*
|
*
|
||||||
* The Access-Control-Expose-Headers response header allows a server to
|
* The Access-Control-Expose-Headers response header allows a server to
|
||||||
* indicate which response headers should be made available to scripts running
|
* indicate which response headers should be made available to scripts running
|
||||||
* in the browser, in response to a cross-origin request.
|
* in the browser, in response to a cross-origin request.
|
||||||
*
|
*
|
||||||
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Expose-Headers
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Expose-Headers
|
||||||
*/
|
*/
|
||||||
'exposedHeaders' => [],
|
'exposedHeaders' => [],
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set methods to allow.
|
* Set methods to allow.
|
||||||
*
|
*
|
||||||
* The Access-Control-Allow-Methods response header specifies one or more
|
* The Access-Control-Allow-Methods response header specifies one or more
|
||||||
* methods allowed when accessing a resource in response to a preflight
|
* methods allowed when accessing a resource in response to a preflight
|
||||||
* request.
|
* request.
|
||||||
*
|
*
|
||||||
* E.g.:
|
* E.g.:
|
||||||
* - ['GET', 'POST', 'PUT', 'DELETE']
|
* - ['GET', 'POST', 'PUT', 'DELETE']
|
||||||
*
|
*
|
||||||
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Allow-Methods
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Allow-Methods
|
||||||
*/
|
*/
|
||||||
'allowedMethods' => ['GET', 'POST', 'PUT', 'DELETE', 'OPTIONS'],
|
'allowedMethods' => ['GET', 'POST', 'PUT', 'DELETE', 'OPTIONS'],
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set how many seconds the results of a preflight request can be cached.
|
* Set how many seconds the results of a preflight request can be cached.
|
||||||
*
|
*
|
||||||
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Max-Age
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Max-Age
|
||||||
*/
|
*/
|
||||||
'maxAge' => 7200,
|
'maxAge' => 7200,
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
400
app/Config/Database.php
Executable file → Normal file
400
app/Config/Database.php
Executable file → Normal file
@ -1,212 +1,202 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Config;
|
namespace Config;
|
||||||
|
|
||||||
use CodeIgniter\Database\Config;
|
use CodeIgniter\Database\Config;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Database Configuration
|
* Database Configuration
|
||||||
*/
|
*/
|
||||||
class Database extends Config
|
class Database extends Config
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* The directory that holds the Migrations and Seeds directories.
|
* The directory that holds the Migrations and Seeds directories.
|
||||||
*/
|
*/
|
||||||
public string $filesPath = APPPATH . 'Database' . DIRECTORY_SEPARATOR;
|
public string $filesPath = APPPATH . 'Database' . DIRECTORY_SEPARATOR;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Lets you choose which connection group to use if no other is specified.
|
* Lets you choose which connection group to use if no other is specified.
|
||||||
*/
|
*/
|
||||||
public string $defaultGroup = 'default';
|
public string $defaultGroup = 'default';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The default database connection.
|
* The default database connection.
|
||||||
*
|
*
|
||||||
* @var array<string, mixed>
|
* @var array<string, mixed>
|
||||||
*/
|
*/
|
||||||
public array $default = [
|
public array $default = [
|
||||||
'DSN' => '',
|
'DSN' => '',
|
||||||
'hostname' => 'localhost',
|
'hostname' => 'localhost',
|
||||||
'username' => 'root',
|
'username' => '',
|
||||||
'password' => 'adminsakti',
|
'password' => '',
|
||||||
'database' => 'clqms01',
|
'database' => '',
|
||||||
'DBDriver' => 'MySQLi',
|
'DBDriver' => 'MySQLi',
|
||||||
'DBPrefix' => '',
|
'DBPrefix' => '',
|
||||||
'pConnect' => false,
|
'pConnect' => false,
|
||||||
'DBDebug' => true,
|
'DBDebug' => true,
|
||||||
'charset' => 'utf8mb4',
|
'charset' => 'utf8mb4',
|
||||||
'DBCollat' => 'utf8mb4_general_ci',
|
'DBCollat' => 'utf8mb4_general_ci',
|
||||||
'swapPre' => '',
|
'swapPre' => '',
|
||||||
'encrypt' => false,
|
'encrypt' => false,
|
||||||
'compress' => false,
|
'compress' => false,
|
||||||
'strictOn' => false,
|
'strictOn' => false,
|
||||||
'failover' => [],
|
'failover' => [],
|
||||||
'port' => 3306,
|
'port' => 3306,
|
||||||
'numberNative' => false,
|
'numberNative' => false,
|
||||||
'foundRows' => false,
|
'foundRows' => false,
|
||||||
'dateFormat' => [
|
'dateFormat' => [
|
||||||
'date' => 'Y-m-d',
|
'date' => 'Y-m-d',
|
||||||
'datetime' => 'Y-m-d H:i:s',
|
'datetime' => 'Y-m-d H:i:s',
|
||||||
'time' => 'H:i:s',
|
'time' => 'H:i:s',
|
||||||
],
|
],
|
||||||
];
|
];
|
||||||
|
|
||||||
// /**
|
// /**
|
||||||
// * Sample database connection for SQLite3.
|
// * Sample database connection for SQLite3.
|
||||||
// *
|
// *
|
||||||
// * @var array<string, mixed>
|
// * @var array<string, mixed>
|
||||||
// */
|
// */
|
||||||
// public array $default = [
|
// public array $default = [
|
||||||
// 'database' => 'database.db',
|
// 'database' => 'database.db',
|
||||||
// 'DBDriver' => 'SQLite3',
|
// 'DBDriver' => 'SQLite3',
|
||||||
// 'DBPrefix' => '',
|
// 'DBPrefix' => '',
|
||||||
// 'DBDebug' => true,
|
// 'DBDebug' => true,
|
||||||
// 'swapPre' => '',
|
// 'swapPre' => '',
|
||||||
// 'failover' => [],
|
// 'failover' => [],
|
||||||
// 'foreignKeys' => true,
|
// 'foreignKeys' => true,
|
||||||
// 'busyTimeout' => 1000,
|
// 'busyTimeout' => 1000,
|
||||||
// 'synchronous' => null,
|
// 'synchronous' => null,
|
||||||
// 'dateFormat' => [
|
// 'dateFormat' => [
|
||||||
// 'date' => 'Y-m-d',
|
// 'date' => 'Y-m-d',
|
||||||
// 'datetime' => 'Y-m-d H:i:s',
|
// 'datetime' => 'Y-m-d H:i:s',
|
||||||
// 'time' => 'H:i:s',
|
// 'time' => 'H:i:s',
|
||||||
// ],
|
// ],
|
||||||
// ];
|
// ];
|
||||||
|
|
||||||
// /**
|
// /**
|
||||||
// * Sample database connection for Postgre.
|
// * Sample database connection for Postgre.
|
||||||
// *
|
// *
|
||||||
// * @var array<string, mixed>
|
// * @var array<string, mixed>
|
||||||
// */
|
// */
|
||||||
// public array $default = [
|
// public array $default = [
|
||||||
// 'DSN' => '',
|
// 'DSN' => '',
|
||||||
// 'hostname' => 'localhost',
|
// 'hostname' => 'localhost',
|
||||||
// 'username' => 'root',
|
// 'username' => 'root',
|
||||||
// 'password' => 'root',
|
// 'password' => 'root',
|
||||||
// 'database' => 'ci4',
|
// 'database' => 'ci4',
|
||||||
// 'schema' => 'public',
|
// 'schema' => 'public',
|
||||||
// 'DBDriver' => 'Postgre',
|
// 'DBDriver' => 'Postgre',
|
||||||
// 'DBPrefix' => '',
|
// 'DBPrefix' => '',
|
||||||
// 'pConnect' => false,
|
// 'pConnect' => false,
|
||||||
// 'DBDebug' => true,
|
// 'DBDebug' => true,
|
||||||
// 'charset' => 'utf8',
|
// 'charset' => 'utf8',
|
||||||
// 'swapPre' => '',
|
// 'swapPre' => '',
|
||||||
// 'failover' => [],
|
// 'failover' => [],
|
||||||
// 'port' => 5432,
|
// 'port' => 5432,
|
||||||
// 'dateFormat' => [
|
// 'dateFormat' => [
|
||||||
// 'date' => 'Y-m-d',
|
// 'date' => 'Y-m-d',
|
||||||
// 'datetime' => 'Y-m-d H:i:s',
|
// 'datetime' => 'Y-m-d H:i:s',
|
||||||
// 'time' => 'H:i:s',
|
// 'time' => 'H:i:s',
|
||||||
// ],
|
// ],
|
||||||
// ];
|
// ];
|
||||||
|
|
||||||
// /**
|
// /**
|
||||||
// * Sample database connection for SQLSRV.
|
// * Sample database connection for SQLSRV.
|
||||||
// *
|
// *
|
||||||
// * @var array<string, mixed>
|
// * @var array<string, mixed>
|
||||||
// */
|
// */
|
||||||
// public array $default = [
|
// public array $default = [
|
||||||
// 'DSN' => '',
|
// 'DSN' => '',
|
||||||
// 'hostname' => 'localhost',
|
// 'hostname' => 'localhost',
|
||||||
// 'username' => 'root',
|
// 'username' => 'root',
|
||||||
// 'password' => 'root',
|
// 'password' => 'root',
|
||||||
// 'database' => 'ci4',
|
// 'database' => 'ci4',
|
||||||
// 'schema' => 'dbo',
|
// 'schema' => 'dbo',
|
||||||
// 'DBDriver' => 'SQLSRV',
|
// 'DBDriver' => 'SQLSRV',
|
||||||
// 'DBPrefix' => '',
|
// 'DBPrefix' => '',
|
||||||
// 'pConnect' => false,
|
// 'pConnect' => false,
|
||||||
// 'DBDebug' => true,
|
// 'DBDebug' => true,
|
||||||
// 'charset' => 'utf8',
|
// 'charset' => 'utf8',
|
||||||
// 'swapPre' => '',
|
// 'swapPre' => '',
|
||||||
// 'encrypt' => false,
|
// 'encrypt' => false,
|
||||||
// 'failover' => [],
|
// 'failover' => [],
|
||||||
// 'port' => 1433,
|
// 'port' => 1433,
|
||||||
// 'dateFormat' => [
|
// 'dateFormat' => [
|
||||||
// 'date' => 'Y-m-d',
|
// 'date' => 'Y-m-d',
|
||||||
// 'datetime' => 'Y-m-d H:i:s',
|
// 'datetime' => 'Y-m-d H:i:s',
|
||||||
// 'time' => 'H:i:s',
|
// 'time' => 'H:i:s',
|
||||||
// ],
|
// ],
|
||||||
// ];
|
// ];
|
||||||
|
|
||||||
// /**
|
// /**
|
||||||
// * Sample database connection for OCI8.
|
// * Sample database connection for OCI8.
|
||||||
// *
|
// *
|
||||||
// * You may need the following environment variables:
|
// * You may need the following environment variables:
|
||||||
// * NLS_LANG = 'AMERICAN_AMERICA.UTF8'
|
// * NLS_LANG = 'AMERICAN_AMERICA.UTF8'
|
||||||
// * NLS_DATE_FORMAT = 'YYYY-MM-DD HH24:MI:SS'
|
// * NLS_DATE_FORMAT = 'YYYY-MM-DD HH24:MI:SS'
|
||||||
// * NLS_TIMESTAMP_FORMAT = 'YYYY-MM-DD HH24:MI:SS'
|
// * NLS_TIMESTAMP_FORMAT = 'YYYY-MM-DD HH24:MI:SS'
|
||||||
// * NLS_TIMESTAMP_TZ_FORMAT = 'YYYY-MM-DD HH24:MI:SS'
|
// * NLS_TIMESTAMP_TZ_FORMAT = 'YYYY-MM-DD HH24:MI:SS'
|
||||||
// *
|
// *
|
||||||
// * @var array<string, mixed>
|
// * @var array<string, mixed>
|
||||||
// */
|
// */
|
||||||
// public array $default = [
|
// public array $default = [
|
||||||
// 'DSN' => 'localhost:1521/XEPDB1',
|
// 'DSN' => 'localhost:1521/XEPDB1',
|
||||||
// 'username' => 'root',
|
// 'username' => 'root',
|
||||||
// 'password' => 'root',
|
// 'password' => 'root',
|
||||||
// 'DBDriver' => 'OCI8',
|
// 'DBDriver' => 'OCI8',
|
||||||
// 'DBPrefix' => '',
|
// 'DBPrefix' => '',
|
||||||
// 'pConnect' => false,
|
// 'pConnect' => false,
|
||||||
// 'DBDebug' => true,
|
// 'DBDebug' => true,
|
||||||
// 'charset' => 'AL32UTF8',
|
// 'charset' => 'AL32UTF8',
|
||||||
// 'swapPre' => '',
|
// 'swapPre' => '',
|
||||||
// 'failover' => [],
|
// 'failover' => [],
|
||||||
// 'dateFormat' => [
|
// 'dateFormat' => [
|
||||||
// 'date' => 'Y-m-d',
|
// 'date' => 'Y-m-d',
|
||||||
// 'datetime' => 'Y-m-d H:i:s',
|
// 'datetime' => 'Y-m-d H:i:s',
|
||||||
// 'time' => 'H:i:s',
|
// 'time' => 'H:i:s',
|
||||||
// ],
|
// ],
|
||||||
// ];
|
// ];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This database connection is used when running PHPUnit database tests.
|
* This database connection is used when running PHPUnit database tests.
|
||||||
*
|
*
|
||||||
* These values can be overridden in phpunit.xml.dist or .env file using:
|
* @var array<string, mixed>
|
||||||
* - database.tests.hostname
|
*/
|
||||||
* - database.tests.database
|
public array $tests = [
|
||||||
* - database.tests.username
|
'DSN' => '',
|
||||||
* - database.tests.password
|
'hostname' => '127.0.0.1',
|
||||||
* - database.tests.DBDriver
|
'username' => '',
|
||||||
*
|
'password' => '',
|
||||||
* @var array<string, mixed>
|
'database' => ':memory:',
|
||||||
*/
|
'DBDriver' => 'SQLite3',
|
||||||
public array $tests = [
|
'DBPrefix' => 'db_', // Needed to ensure we're working correctly with prefixes live. DO NOT REMOVE FOR CI DEVS
|
||||||
'DSN' => '',
|
'pConnect' => false,
|
||||||
'hostname' => 'localhost',
|
'DBDebug' => true,
|
||||||
'username' => 'root',
|
'charset' => 'utf8',
|
||||||
'password' => 'adminsakti',
|
'DBCollat' => '',
|
||||||
'database' => 'clqms01_test',
|
'swapPre' => '',
|
||||||
'DBDriver' => 'MySQLi',
|
'encrypt' => false,
|
||||||
'DBPrefix' => '', // Needed to ensure we're working correctly with prefixes live. DO NOT REMOVE FOR CI DEVS
|
'compress' => false,
|
||||||
'pConnect' => false,
|
'strictOn' => false,
|
||||||
'DBDebug' => true,
|
'failover' => [],
|
||||||
'charset' => 'utf8mb4',
|
'port' => 3306,
|
||||||
'DBCollat' => 'utf8mb4_general_ci',
|
'foreignKeys' => true,
|
||||||
'swapPre' => '',
|
'busyTimeout' => 1000,
|
||||||
'encrypt' => false,
|
'dateFormat' => [
|
||||||
'compress' => false,
|
'date' => 'Y-m-d',
|
||||||
'strictOn' => false,
|
'datetime' => 'Y-m-d H:i:s',
|
||||||
'failover' => [],
|
'time' => 'H:i:s',
|
||||||
'port' => 3306,
|
],
|
||||||
'foreignKeys' => true,
|
];
|
||||||
'busyTimeout' => 1000,
|
|
||||||
'dateFormat' => [
|
|
||||||
'date' => 'Y-m-d',
|
|
||||||
'datetime' => 'Y-m-d H:i:s',
|
|
||||||
'time' => 'H:i:s',
|
|
||||||
],
|
|
||||||
];
|
|
||||||
|
|
||||||
public function __construct()
|
public function __construct()
|
||||||
{
|
{
|
||||||
parent::__construct();
|
parent::__construct();
|
||||||
|
|
||||||
// Ensure that we always set the database group to 'tests' if
|
// Ensure that we always set the database group to 'tests' if
|
||||||
// we are currently running an automated test suite, so that
|
// we are currently running an automated test suite, so that
|
||||||
// we don't overwrite live data on accident.
|
// we don't overwrite live data on accident.
|
||||||
if (ENVIRONMENT === 'testing') {
|
if (ENVIRONMENT === 'testing') {
|
||||||
if ($this->tests['database'] === $this->default['database']) {
|
|
||||||
throw new \RuntimeException('Tests database cannot match the default database.');
|
|
||||||
}
|
|
||||||
$this->defaultGroup = 'tests';
|
$this->defaultGroup = 'tests';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
86
app/Config/DocTypes.php
Executable file → Normal file
86
app/Config/DocTypes.php
Executable file → Normal file
@ -1,43 +1,43 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Config;
|
namespace Config;
|
||||||
|
|
||||||
class DocTypes
|
class DocTypes
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* List of valid document types.
|
* List of valid document types.
|
||||||
*
|
*
|
||||||
* @var array<string, string>
|
* @var array<string, string>
|
||||||
*/
|
*/
|
||||||
public array $list = [
|
public array $list = [
|
||||||
'xhtml11' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">',
|
'xhtml11' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">',
|
||||||
'xhtml1-strict' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">',
|
'xhtml1-strict' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">',
|
||||||
'xhtml1-trans' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">',
|
'xhtml1-trans' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">',
|
||||||
'xhtml1-frame' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">',
|
'xhtml1-frame' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">',
|
||||||
'xhtml-basic11' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML Basic 1.1//EN" "http://www.w3.org/TR/xhtml-basic/xhtml-basic11.dtd">',
|
'xhtml-basic11' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML Basic 1.1//EN" "http://www.w3.org/TR/xhtml-basic/xhtml-basic11.dtd">',
|
||||||
'html5' => '<!DOCTYPE html>',
|
'html5' => '<!DOCTYPE html>',
|
||||||
'html4-strict' => '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">',
|
'html4-strict' => '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">',
|
||||||
'html4-trans' => '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">',
|
'html4-trans' => '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">',
|
||||||
'html4-frame' => '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">',
|
'html4-frame' => '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">',
|
||||||
'mathml1' => '<!DOCTYPE math SYSTEM "http://www.w3.org/Math/DTD/mathml1/mathml.dtd">',
|
'mathml1' => '<!DOCTYPE math SYSTEM "http://www.w3.org/Math/DTD/mathml1/mathml.dtd">',
|
||||||
'mathml2' => '<!DOCTYPE math PUBLIC "-//W3C//DTD MathML 2.0//EN" "http://www.w3.org/Math/DTD/mathml2/mathml2.dtd">',
|
'mathml2' => '<!DOCTYPE math PUBLIC "-//W3C//DTD MathML 2.0//EN" "http://www.w3.org/Math/DTD/mathml2/mathml2.dtd">',
|
||||||
'svg10' => '<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">',
|
'svg10' => '<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">',
|
||||||
'svg11' => '<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">',
|
'svg11' => '<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">',
|
||||||
'svg11-basic' => '<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Basic//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-basic.dtd">',
|
'svg11-basic' => '<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Basic//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-basic.dtd">',
|
||||||
'svg11-tiny' => '<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">',
|
'svg11-tiny' => '<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">',
|
||||||
'xhtml-math-svg-xh' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN" "http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd">',
|
'xhtml-math-svg-xh' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN" "http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd">',
|
||||||
'xhtml-math-svg-sh' => '<!DOCTYPE svg:svg PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN" "http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd">',
|
'xhtml-math-svg-sh' => '<!DOCTYPE svg:svg PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN" "http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd">',
|
||||||
'xhtml-rdfa-1' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">',
|
'xhtml-rdfa-1' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">',
|
||||||
'xhtml-rdfa-2' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.1//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-2.dtd">',
|
'xhtml-rdfa-2' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.1//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-2.dtd">',
|
||||||
];
|
];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Whether to remove the solidus (`/`) character for void HTML elements (e.g. `<input>`)
|
* Whether to remove the solidus (`/`) character for void HTML elements (e.g. `<input>`)
|
||||||
* for HTML5 compatibility.
|
* for HTML5 compatibility.
|
||||||
*
|
*
|
||||||
* Set to:
|
* Set to:
|
||||||
* `true` - to be HTML5 compatible
|
* `true` - to be HTML5 compatible
|
||||||
* `false` - to be XHTML compatible
|
* `false` - to be XHTML compatible
|
||||||
*/
|
*/
|
||||||
public bool $html5 = true;
|
public bool $html5 = true;
|
||||||
}
|
}
|
||||||
|
|||||||
242
app/Config/Email.php
Executable file → Normal file
242
app/Config/Email.php
Executable file → Normal file
@ -1,121 +1,121 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Config;
|
namespace Config;
|
||||||
|
|
||||||
use CodeIgniter\Config\BaseConfig;
|
use CodeIgniter\Config\BaseConfig;
|
||||||
|
|
||||||
class Email extends BaseConfig
|
class Email extends BaseConfig
|
||||||
{
|
{
|
||||||
public string $fromEmail = '';
|
public string $fromEmail = '';
|
||||||
public string $fromName = '';
|
public string $fromName = '';
|
||||||
public string $recipients = '';
|
public string $recipients = '';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The "user agent"
|
* The "user agent"
|
||||||
*/
|
*/
|
||||||
public string $userAgent = 'CodeIgniter';
|
public string $userAgent = 'CodeIgniter';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The mail sending protocol: mail, sendmail, smtp
|
* The mail sending protocol: mail, sendmail, smtp
|
||||||
*/
|
*/
|
||||||
public string $protocol = 'mail';
|
public string $protocol = 'mail';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The server path to Sendmail.
|
* The server path to Sendmail.
|
||||||
*/
|
*/
|
||||||
public string $mailPath = '/usr/sbin/sendmail';
|
public string $mailPath = '/usr/sbin/sendmail';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* SMTP Server Hostname
|
* SMTP Server Hostname
|
||||||
*/
|
*/
|
||||||
public string $SMTPHost = '';
|
public string $SMTPHost = '';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* SMTP Username
|
* SMTP Username
|
||||||
*/
|
*/
|
||||||
public string $SMTPUser = '';
|
public string $SMTPUser = '';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* SMTP Password
|
* SMTP Password
|
||||||
*/
|
*/
|
||||||
public string $SMTPPass = '';
|
public string $SMTPPass = '';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* SMTP Port
|
* SMTP Port
|
||||||
*/
|
*/
|
||||||
public int $SMTPPort = 25;
|
public int $SMTPPort = 25;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* SMTP Timeout (in seconds)
|
* SMTP Timeout (in seconds)
|
||||||
*/
|
*/
|
||||||
public int $SMTPTimeout = 5;
|
public int $SMTPTimeout = 5;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Enable persistent SMTP connections
|
* Enable persistent SMTP connections
|
||||||
*/
|
*/
|
||||||
public bool $SMTPKeepAlive = false;
|
public bool $SMTPKeepAlive = false;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* SMTP Encryption.
|
* SMTP Encryption.
|
||||||
*
|
*
|
||||||
* @var string '', 'tls' or 'ssl'. 'tls' will issue a STARTTLS command
|
* @var string '', 'tls' or 'ssl'. 'tls' will issue a STARTTLS command
|
||||||
* to the server. 'ssl' means implicit SSL. Connection on port
|
* to the server. 'ssl' means implicit SSL. Connection on port
|
||||||
* 465 should set this to ''.
|
* 465 should set this to ''.
|
||||||
*/
|
*/
|
||||||
public string $SMTPCrypto = 'tls';
|
public string $SMTPCrypto = 'tls';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Enable word-wrap
|
* Enable word-wrap
|
||||||
*/
|
*/
|
||||||
public bool $wordWrap = true;
|
public bool $wordWrap = true;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Character count to wrap at
|
* Character count to wrap at
|
||||||
*/
|
*/
|
||||||
public int $wrapChars = 76;
|
public int $wrapChars = 76;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Type of mail, either 'text' or 'html'
|
* Type of mail, either 'text' or 'html'
|
||||||
*/
|
*/
|
||||||
public string $mailType = 'text';
|
public string $mailType = 'text';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Character set (utf-8, iso-8859-1, etc.)
|
* Character set (utf-8, iso-8859-1, etc.)
|
||||||
*/
|
*/
|
||||||
public string $charset = 'UTF-8';
|
public string $charset = 'UTF-8';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Whether to validate the email address
|
* Whether to validate the email address
|
||||||
*/
|
*/
|
||||||
public bool $validate = false;
|
public bool $validate = false;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Email Priority. 1 = highest. 5 = lowest. 3 = normal
|
* Email Priority. 1 = highest. 5 = lowest. 3 = normal
|
||||||
*/
|
*/
|
||||||
public int $priority = 3;
|
public int $priority = 3;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Newline character. (Use “\r\n” to comply with RFC 822)
|
* Newline character. (Use “\r\n” to comply with RFC 822)
|
||||||
*/
|
*/
|
||||||
public string $CRLF = "\r\n";
|
public string $CRLF = "\r\n";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Newline character. (Use “\r\n” to comply with RFC 822)
|
* Newline character. (Use “\r\n” to comply with RFC 822)
|
||||||
*/
|
*/
|
||||||
public string $newline = "\r\n";
|
public string $newline = "\r\n";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Enable BCC Batch Mode.
|
* Enable BCC Batch Mode.
|
||||||
*/
|
*/
|
||||||
public bool $BCCBatchMode = false;
|
public bool $BCCBatchMode = false;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Number of emails in each BCC batch
|
* Number of emails in each BCC batch
|
||||||
*/
|
*/
|
||||||
public int $BCCBatchSize = 200;
|
public int $BCCBatchSize = 200;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Enable notify message from server
|
* Enable notify message from server
|
||||||
*/
|
*/
|
||||||
public bool $DSN = false;
|
public bool $DSN = false;
|
||||||
}
|
}
|
||||||
|
|||||||
184
app/Config/Encryption.php
Executable file → Normal file
184
app/Config/Encryption.php
Executable file → Normal file
@ -1,92 +1,92 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Config;
|
namespace Config;
|
||||||
|
|
||||||
use CodeIgniter\Config\BaseConfig;
|
use CodeIgniter\Config\BaseConfig;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Encryption configuration.
|
* Encryption configuration.
|
||||||
*
|
*
|
||||||
* These are the settings used for encryption, if you don't pass a parameter
|
* These are the settings used for encryption, if you don't pass a parameter
|
||||||
* array to the encrypter for creation/initialization.
|
* array to the encrypter for creation/initialization.
|
||||||
*/
|
*/
|
||||||
class Encryption extends BaseConfig
|
class Encryption extends BaseConfig
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* Encryption Key Starter
|
* Encryption Key Starter
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* If you use the Encryption class you must set an encryption key (seed).
|
* If you use the Encryption class you must set an encryption key (seed).
|
||||||
* You need to ensure it is long enough for the cipher and mode you plan to use.
|
* You need to ensure it is long enough for the cipher and mode you plan to use.
|
||||||
* See the user guide for more info.
|
* See the user guide for more info.
|
||||||
*/
|
*/
|
||||||
public string $key = '';
|
public string $key = '';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* Encryption Driver to Use
|
* Encryption Driver to Use
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* One of the supported encryption drivers.
|
* One of the supported encryption drivers.
|
||||||
*
|
*
|
||||||
* Available drivers:
|
* Available drivers:
|
||||||
* - OpenSSL
|
* - OpenSSL
|
||||||
* - Sodium
|
* - Sodium
|
||||||
*/
|
*/
|
||||||
public string $driver = 'OpenSSL';
|
public string $driver = 'OpenSSL';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* SodiumHandler's Padding Length in Bytes
|
* SodiumHandler's Padding Length in Bytes
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* This is the number of bytes that will be padded to the plaintext message
|
* This is the number of bytes that will be padded to the plaintext message
|
||||||
* before it is encrypted. This value should be greater than zero.
|
* before it is encrypted. This value should be greater than zero.
|
||||||
*
|
*
|
||||||
* See the user guide for more information on padding.
|
* See the user guide for more information on padding.
|
||||||
*/
|
*/
|
||||||
public int $blockSize = 16;
|
public int $blockSize = 16;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* Encryption digest
|
* Encryption digest
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* HMAC digest to use, e.g. 'SHA512' or 'SHA256'. Default value is 'SHA512'.
|
* HMAC digest to use, e.g. 'SHA512' or 'SHA256'. Default value is 'SHA512'.
|
||||||
*/
|
*/
|
||||||
public string $digest = 'SHA512';
|
public string $digest = 'SHA512';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Whether the cipher-text should be raw. If set to false, then it will be base64 encoded.
|
* Whether the cipher-text should be raw. If set to false, then it will be base64 encoded.
|
||||||
* This setting is only used by OpenSSLHandler.
|
* This setting is only used by OpenSSLHandler.
|
||||||
*
|
*
|
||||||
* Set to false for CI3 Encryption compatibility.
|
* Set to false for CI3 Encryption compatibility.
|
||||||
*/
|
*/
|
||||||
public bool $rawData = true;
|
public bool $rawData = true;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Encryption key info.
|
* Encryption key info.
|
||||||
* This setting is only used by OpenSSLHandler.
|
* This setting is only used by OpenSSLHandler.
|
||||||
*
|
*
|
||||||
* Set to 'encryption' for CI3 Encryption compatibility.
|
* Set to 'encryption' for CI3 Encryption compatibility.
|
||||||
*/
|
*/
|
||||||
public string $encryptKeyInfo = '';
|
public string $encryptKeyInfo = '';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Authentication key info.
|
* Authentication key info.
|
||||||
* This setting is only used by OpenSSLHandler.
|
* This setting is only used by OpenSSLHandler.
|
||||||
*
|
*
|
||||||
* Set to 'authentication' for CI3 Encryption compatibility.
|
* Set to 'authentication' for CI3 Encryption compatibility.
|
||||||
*/
|
*/
|
||||||
public string $authKeyInfo = '';
|
public string $authKeyInfo = '';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Cipher to use.
|
* Cipher to use.
|
||||||
* This setting is only used by OpenSSLHandler.
|
* This setting is only used by OpenSSLHandler.
|
||||||
*
|
*
|
||||||
* Set to 'AES-128-CBC' to decrypt encrypted data that encrypted
|
* Set to 'AES-128-CBC' to decrypt encrypted data that encrypted
|
||||||
* by CI3 Encryption default configuration.
|
* by CI3 Encryption default configuration.
|
||||||
*/
|
*/
|
||||||
public string $cipher = 'AES-256-CTR';
|
public string $cipher = 'AES-256-CTR';
|
||||||
}
|
}
|
||||||
|
|||||||
110
app/Config/Events.php
Executable file → Normal file
110
app/Config/Events.php
Executable file → Normal file
@ -1,55 +1,55 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Config;
|
namespace Config;
|
||||||
|
|
||||||
use CodeIgniter\Events\Events;
|
use CodeIgniter\Events\Events;
|
||||||
use CodeIgniter\Exceptions\FrameworkException;
|
use CodeIgniter\Exceptions\FrameworkException;
|
||||||
use CodeIgniter\HotReloader\HotReloader;
|
use CodeIgniter\HotReloader\HotReloader;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* --------------------------------------------------------------------
|
* --------------------------------------------------------------------
|
||||||
* Application Events
|
* Application Events
|
||||||
* --------------------------------------------------------------------
|
* --------------------------------------------------------------------
|
||||||
* Events allow you to tap into the execution of the program without
|
* Events allow you to tap into the execution of the program without
|
||||||
* modifying or extending core files. This file provides a central
|
* modifying or extending core files. This file provides a central
|
||||||
* location to define your events, though they can always be added
|
* location to define your events, though they can always be added
|
||||||
* at run-time, also, if needed.
|
* at run-time, also, if needed.
|
||||||
*
|
*
|
||||||
* You create code that can execute by subscribing to events with
|
* You create code that can execute by subscribing to events with
|
||||||
* the 'on()' method. This accepts any form of callable, including
|
* the 'on()' method. This accepts any form of callable, including
|
||||||
* Closures, that will be executed when the event is triggered.
|
* Closures, that will be executed when the event is triggered.
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* Events::on('create', [$myInstance, 'myMethod']);
|
* Events::on('create', [$myInstance, 'myMethod']);
|
||||||
*/
|
*/
|
||||||
|
|
||||||
Events::on('pre_system', static function (): void {
|
Events::on('pre_system', static function (): void {
|
||||||
if (ENVIRONMENT !== 'testing') {
|
if (ENVIRONMENT !== 'testing') {
|
||||||
if (ini_get('zlib.output_compression')) {
|
if (ini_get('zlib.output_compression')) {
|
||||||
throw FrameworkException::forEnabledZlibOutputCompression();
|
throw FrameworkException::forEnabledZlibOutputCompression();
|
||||||
}
|
}
|
||||||
|
|
||||||
while (ob_get_level() > 0) {
|
while (ob_get_level() > 0) {
|
||||||
ob_end_flush();
|
ob_end_flush();
|
||||||
}
|
}
|
||||||
|
|
||||||
ob_start(static fn ($buffer) => $buffer);
|
ob_start(static fn ($buffer) => $buffer);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* --------------------------------------------------------------------
|
* --------------------------------------------------------------------
|
||||||
* Debug Toolbar Listeners.
|
* Debug Toolbar Listeners.
|
||||||
* --------------------------------------------------------------------
|
* --------------------------------------------------------------------
|
||||||
* If you delete, they will no longer be collected.
|
* If you delete, they will no longer be collected.
|
||||||
*/
|
*/
|
||||||
if (CI_DEBUG && ! is_cli()) {
|
if (CI_DEBUG && ! is_cli()) {
|
||||||
Events::on('DBQuery', 'CodeIgniter\Debug\Toolbar\Collectors\Database::collect');
|
Events::on('DBQuery', 'CodeIgniter\Debug\Toolbar\Collectors\Database::collect');
|
||||||
service('toolbar')->respond();
|
service('toolbar')->respond();
|
||||||
// Hot Reload route - for framework use on the hot reloader.
|
// Hot Reload route - for framework use on the hot reloader.
|
||||||
if (ENVIRONMENT === 'development') {
|
if (ENVIRONMENT === 'development') {
|
||||||
service('routes')->get('__hot-reload', static function (): void {
|
service('routes')->get('__hot-reload', static function (): void {
|
||||||
(new HotReloader())->run();
|
(new HotReloader())->run();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|||||||
212
app/Config/Exceptions.php
Executable file → Normal file
212
app/Config/Exceptions.php
Executable file → Normal file
@ -1,106 +1,106 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Config;
|
namespace Config;
|
||||||
|
|
||||||
use CodeIgniter\Config\BaseConfig;
|
use CodeIgniter\Config\BaseConfig;
|
||||||
use CodeIgniter\Debug\ExceptionHandler;
|
use CodeIgniter\Debug\ExceptionHandler;
|
||||||
use CodeIgniter\Debug\ExceptionHandlerInterface;
|
use CodeIgniter\Debug\ExceptionHandlerInterface;
|
||||||
use Psr\Log\LogLevel;
|
use Psr\Log\LogLevel;
|
||||||
use Throwable;
|
use Throwable;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Setup how the exception handler works.
|
* Setup how the exception handler works.
|
||||||
*/
|
*/
|
||||||
class Exceptions extends BaseConfig
|
class Exceptions extends BaseConfig
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* LOG EXCEPTIONS?
|
* LOG EXCEPTIONS?
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* If true, then exceptions will be logged
|
* If true, then exceptions will be logged
|
||||||
* through Services::Log.
|
* through Services::Log.
|
||||||
*
|
*
|
||||||
* Default: true
|
* Default: true
|
||||||
*/
|
*/
|
||||||
public bool $log = true;
|
public bool $log = true;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* DO NOT LOG STATUS CODES
|
* DO NOT LOG STATUS CODES
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* Any status codes here will NOT be logged if logging is turned on.
|
* Any status codes here will NOT be logged if logging is turned on.
|
||||||
* By default, only 404 (Page Not Found) exceptions are ignored.
|
* By default, only 404 (Page Not Found) exceptions are ignored.
|
||||||
*
|
*
|
||||||
* @var list<int>
|
* @var list<int>
|
||||||
*/
|
*/
|
||||||
public array $ignoreCodes = [404];
|
public array $ignoreCodes = [404];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* Error Views Path
|
* Error Views Path
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* This is the path to the directory that contains the 'cli' and 'html'
|
* This is the path to the directory that contains the 'cli' and 'html'
|
||||||
* directories that hold the views used to generate errors.
|
* directories that hold the views used to generate errors.
|
||||||
*
|
*
|
||||||
* Default: APPPATH.'Views/errors'
|
* Default: APPPATH.'Views/errors'
|
||||||
*/
|
*/
|
||||||
public string $errorViewPath = __DIR__ . '/../Views/errors';
|
public string $errorViewPath = APPPATH . 'Views/errors';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* HIDE FROM DEBUG TRACE
|
* HIDE FROM DEBUG TRACE
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* Any data that you would like to hide from the debug trace.
|
* Any data that you would like to hide from the debug trace.
|
||||||
* In order to specify 2 levels, use "/" to separate.
|
* In order to specify 2 levels, use "/" to separate.
|
||||||
* ex. ['server', 'setup/password', 'secret_token']
|
* ex. ['server', 'setup/password', 'secret_token']
|
||||||
*
|
*
|
||||||
* @var list<string>
|
* @var list<string>
|
||||||
*/
|
*/
|
||||||
public array $sensitiveDataInTrace = [];
|
public array $sensitiveDataInTrace = [];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* WHETHER TO THROW AN EXCEPTION ON DEPRECATED ERRORS
|
* WHETHER TO THROW AN EXCEPTION ON DEPRECATED ERRORS
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* If set to `true`, DEPRECATED errors are only logged and no exceptions are
|
* If set to `true`, DEPRECATED errors are only logged and no exceptions are
|
||||||
* thrown. This option also works for user deprecations.
|
* thrown. This option also works for user deprecations.
|
||||||
*/
|
*/
|
||||||
public bool $logDeprecations = true;
|
public bool $logDeprecations = true;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* LOG LEVEL THRESHOLD FOR DEPRECATIONS
|
* LOG LEVEL THRESHOLD FOR DEPRECATIONS
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* If `$logDeprecations` is set to `true`, this sets the log level
|
* If `$logDeprecations` is set to `true`, this sets the log level
|
||||||
* to which the deprecation will be logged. This should be one of the log
|
* to which the deprecation will be logged. This should be one of the log
|
||||||
* levels recognized by PSR-3.
|
* levels recognized by PSR-3.
|
||||||
*
|
*
|
||||||
* The related `Config\Logger::$threshold` should be adjusted, if needed,
|
* The related `Config\Logger::$threshold` should be adjusted, if needed,
|
||||||
* to capture logging the deprecations.
|
* to capture logging the deprecations.
|
||||||
*/
|
*/
|
||||||
public string $deprecationLogLevel = LogLevel::WARNING;
|
public string $deprecationLogLevel = LogLevel::WARNING;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* DEFINE THE HANDLERS USED
|
* DEFINE THE HANDLERS USED
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* Given the HTTP status code, returns exception handler that
|
* Given the HTTP status code, returns exception handler that
|
||||||
* should be used to deal with this error. By default, it will run CodeIgniter's
|
* should be used to deal with this error. By default, it will run CodeIgniter's
|
||||||
* default handler and display the error information in the expected format
|
* default handler and display the error information in the expected format
|
||||||
* for CLI, HTTP, or AJAX requests, as determined by is_cli() and the expected
|
* for CLI, HTTP, or AJAX requests, as determined by is_cli() and the expected
|
||||||
* response format.
|
* response format.
|
||||||
*
|
*
|
||||||
* Custom handlers can be returned if you want to handle one or more specific
|
* Custom handlers can be returned if you want to handle one or more specific
|
||||||
* error codes yourself like:
|
* error codes yourself like:
|
||||||
*
|
*
|
||||||
* if (in_array($statusCode, [400, 404, 500])) {
|
* if (in_array($statusCode, [400, 404, 500])) {
|
||||||
* return new \App\Libraries\MyExceptionHandler();
|
* return new \App\Libraries\MyExceptionHandler();
|
||||||
* }
|
* }
|
||||||
* if ($exception instanceOf PageNotFoundException) {
|
* if ($exception instanceOf PageNotFoundException) {
|
||||||
* return new \App\Libraries\MyExceptionHandler();
|
* return new \App\Libraries\MyExceptionHandler();
|
||||||
* }
|
* }
|
||||||
*/
|
*/
|
||||||
public function handler(int $statusCode, Throwable $exception): ExceptionHandlerInterface
|
public function handler(int $statusCode, Throwable $exception): ExceptionHandlerInterface
|
||||||
{
|
{
|
||||||
return new ExceptionHandler($this);
|
return new ExceptionHandler($this);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
74
app/Config/Feature.php
Executable file → Normal file
74
app/Config/Feature.php
Executable file → Normal file
@ -1,37 +1,37 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Config;
|
namespace Config;
|
||||||
|
|
||||||
use CodeIgniter\Config\BaseConfig;
|
use CodeIgniter\Config\BaseConfig;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Enable/disable backward compatibility breaking features.
|
* Enable/disable backward compatibility breaking features.
|
||||||
*/
|
*/
|
||||||
class Feature extends BaseConfig
|
class Feature extends BaseConfig
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* Use improved new auto routing instead of the legacy version.
|
* Use improved new auto routing instead of the legacy version.
|
||||||
*/
|
*/
|
||||||
public bool $autoRoutesImproved = true;
|
public bool $autoRoutesImproved = true;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Use filter execution order in 4.4 or before.
|
* Use filter execution order in 4.4 or before.
|
||||||
*/
|
*/
|
||||||
public bool $oldFilterOrder = false;
|
public bool $oldFilterOrder = false;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The behavior of `limit(0)` in Query Builder.
|
* The behavior of `limit(0)` in Query Builder.
|
||||||
*
|
*
|
||||||
* If true, `limit(0)` returns all records. (the behavior of 4.4.x or before in version 4.x.)
|
* If true, `limit(0)` returns all records. (the behavior of 4.4.x or before in version 4.x.)
|
||||||
* If false, `limit(0)` returns no records. (the behavior of 3.1.9 or later in version 3.x.)
|
* If false, `limit(0)` returns no records. (the behavior of 3.1.9 or later in version 3.x.)
|
||||||
*/
|
*/
|
||||||
public bool $limitZeroAsAll = true;
|
public bool $limitZeroAsAll = true;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Use strict location negotiation.
|
* Use strict location negotiation.
|
||||||
*
|
*
|
||||||
* By default, the locale is selected based on a loose comparison of the language code (ISO 639-1)
|
* By default, the locale is selected based on a loose comparison of the language code (ISO 639-1)
|
||||||
* Enabling strict comparison will also consider the region code (ISO 3166-1 alpha-2).
|
* Enabling strict comparison will also consider the region code (ISO 3166-1 alpha-2).
|
||||||
*/
|
*/
|
||||||
public bool $strictLocaleNegotiation = false;
|
public bool $strictLocaleNegotiation = false;
|
||||||
}
|
}
|
||||||
|
|||||||
219
app/Config/Filters.php
Executable file → Normal file
219
app/Config/Filters.php
Executable file → Normal file
@ -1,110 +1,109 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Config;
|
namespace Config;
|
||||||
|
|
||||||
use CodeIgniter\Config\Filters as BaseFilters;
|
use CodeIgniter\Config\Filters as BaseFilters;
|
||||||
// use CodeIgniter\Filters\Cors;
|
// use CodeIgniter\Filters\Cors;
|
||||||
use CodeIgniter\Filters\CSRF;
|
use CodeIgniter\Filters\CSRF;
|
||||||
use CodeIgniter\Filters\DebugToolbar;
|
use CodeIgniter\Filters\DebugToolbar;
|
||||||
use CodeIgniter\Filters\ForceHTTPS;
|
use CodeIgniter\Filters\ForceHTTPS;
|
||||||
use CodeIgniter\Filters\Honeypot;
|
use CodeIgniter\Filters\Honeypot;
|
||||||
use CodeIgniter\Filters\InvalidChars;
|
use CodeIgniter\Filters\InvalidChars;
|
||||||
use CodeIgniter\Filters\PageCache;
|
use CodeIgniter\Filters\PageCache;
|
||||||
use CodeIgniter\Filters\PerformanceMetrics;
|
use CodeIgniter\Filters\PerformanceMetrics;
|
||||||
use CodeIgniter\Filters\SecureHeaders;
|
use CodeIgniter\Filters\SecureHeaders;
|
||||||
|
|
||||||
class Filters extends BaseFilters
|
class Filters extends BaseFilters
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* Configures aliases for Filter classes to
|
* Configures aliases for Filter classes to
|
||||||
* make reading things nicer and simpler.
|
* make reading things nicer and simpler.
|
||||||
*
|
*
|
||||||
* @var array<string, class-string|list<class-string>>
|
* @var array<string, class-string|list<class-string>>
|
||||||
*
|
*
|
||||||
* [filter_name => classname]
|
* [filter_name => classname]
|
||||||
* or [filter_name => [classname1, classname2, ...]]
|
* or [filter_name => [classname1, classname2, ...]]
|
||||||
*/
|
*/
|
||||||
public array $aliases = [
|
public array $aliases = [
|
||||||
'csrf' => CSRF::class,
|
'csrf' => CSRF::class,
|
||||||
'toolbar' => DebugToolbar::class,
|
'toolbar' => DebugToolbar::class,
|
||||||
'honeypot' => Honeypot::class,
|
'honeypot' => Honeypot::class,
|
||||||
'invalidchars' => InvalidChars::class,
|
'invalidchars' => InvalidChars::class,
|
||||||
'secureheaders' => SecureHeaders::class,
|
'secureheaders' => SecureHeaders::class,
|
||||||
// 'cors' => Cors::class,
|
// 'cors' => Cors::class,
|
||||||
'cors' => \App\Filters\Cors::class,
|
'cors' => \App\Filters\Cors::class,
|
||||||
'forcehttps' => ForceHTTPS::class,
|
'forcehttps' => ForceHTTPS::class,
|
||||||
'pagecache' => PageCache::class,
|
'pagecache' => PageCache::class,
|
||||||
'performance' => PerformanceMetrics::class,
|
'performance' => PerformanceMetrics::class,
|
||||||
'auth' => \App\Filters\AuthFilter::class,
|
];
|
||||||
];
|
|
||||||
|
/**
|
||||||
/**
|
* List of special required filters.
|
||||||
* List of special required filters.
|
*
|
||||||
*
|
* The filters listed here are special. They are applied before and after
|
||||||
* The filters listed here are special. They are applied before and after
|
* other kinds of filters, and always applied even if a route does not exist.
|
||||||
* other kinds of filters, and always applied even if a route does not exist.
|
*
|
||||||
*
|
* Filters set by default provide framework functionality. If removed,
|
||||||
* Filters set by default provide framework functionality. If removed,
|
* those functions will no longer work.
|
||||||
* those functions will no longer work.
|
*
|
||||||
*
|
* @see https://codeigniter.com/user_guide/incoming/filters.html#provided-filters
|
||||||
* @see https://codeigniter.com/user_guide/incoming/filters.html#provided-filters
|
*
|
||||||
*
|
* @var array{before: list<string>, after: list<string>}
|
||||||
* @var array{before: list<string>, after: list<string>}
|
*/
|
||||||
*/
|
public array $required = [
|
||||||
public array $required = [
|
'before' => [
|
||||||
'before' => [
|
'forcehttps', // Force Global Secure Requests
|
||||||
// 'forcehttps', // Force Global Secure Requests - disabled for localhost
|
'pagecache', // Web Page Caching
|
||||||
'pagecache', // Web Page Caching
|
],
|
||||||
],
|
'after' => [
|
||||||
'after' => [
|
'pagecache', // Web Page Caching
|
||||||
'pagecache', // Web Page Caching
|
'performance', // Performance Metrics
|
||||||
'performance', // Performance Metrics
|
'toolbar', // Debug Toolbar
|
||||||
'toolbar', // Debug Toolbar
|
],
|
||||||
],
|
];
|
||||||
];
|
|
||||||
|
/**
|
||||||
/**
|
* List of filter aliases that are always
|
||||||
* List of filter aliases that are always
|
* applied before and after every request.
|
||||||
* applied before and after every request.
|
*
|
||||||
*
|
* @var array<string, array<string, array<string, string>>>|array<string, list<string>>
|
||||||
* @var array<string, array<string, array<string, string>>>|array<string, list<string>>
|
*/
|
||||||
*/
|
public array $globals = [
|
||||||
public array $globals = [
|
'before' => [
|
||||||
'before' => [
|
'cors'
|
||||||
'cors',
|
// 'honeypot',
|
||||||
// 'honeypot',
|
// 'csrf',
|
||||||
// 'csrf',
|
// 'invalidchars',
|
||||||
// 'invalidchars',
|
],
|
||||||
],
|
'after' => [
|
||||||
'after' => [
|
// 'honeypot',
|
||||||
// 'honeypot',
|
// 'secureheaders',
|
||||||
// 'secureheaders',
|
],
|
||||||
],
|
];
|
||||||
];
|
|
||||||
|
/**
|
||||||
/**
|
* List of filter aliases that works on a
|
||||||
* List of filter aliases that works on a
|
* particular HTTP method (GET, POST, etc.).
|
||||||
* particular HTTP method (GET, POST, etc.).
|
*
|
||||||
*
|
* Example:
|
||||||
* Example:
|
* 'POST' => ['foo', 'bar']
|
||||||
* 'POST' => ['foo', 'bar']
|
*
|
||||||
*
|
* If you use this, you should disable auto-routing because auto-routing
|
||||||
* If you use this, you should disable auto-routing because auto-routing
|
* permits any HTTP method to access a controller. Accessing the controller
|
||||||
* permits any HTTP method to access a controller. Accessing the controller
|
* with a method you don't expect could bypass the filter.
|
||||||
* with a method you don't expect could bypass the filter.
|
*
|
||||||
*
|
* @var array<string, list<string>>
|
||||||
* @var array<string, list<string>>
|
*/
|
||||||
*/
|
public array $methods = [];
|
||||||
public array $methods = [];
|
|
||||||
|
/**
|
||||||
/**
|
* List of filter aliases that should run on any
|
||||||
* List of filter aliases that should run on any
|
* before or after URI patterns.
|
||||||
* before or after URI patterns.
|
*
|
||||||
*
|
* Example:
|
||||||
* Example:
|
* 'isLoggedIn' => ['before' => ['account/*', 'profiles/*']]
|
||||||
* 'isLoggedIn' => ['before' => ['account/*', 'profiles/*']]
|
*
|
||||||
*
|
* @var array<string, array<string, list<string>>>
|
||||||
* @var array<string, array<string, list<string>>>
|
*/
|
||||||
*/
|
public array $filters = [];
|
||||||
public array $filters = [];
|
}
|
||||||
}
|
|
||||||
|
|||||||
24
app/Config/ForeignCharacters.php
Executable file → Normal file
24
app/Config/ForeignCharacters.php
Executable file → Normal file
@ -1,12 +1,12 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Config;
|
namespace Config;
|
||||||
|
|
||||||
use CodeIgniter\Config\ForeignCharacters as BaseForeignCharacters;
|
use CodeIgniter\Config\ForeignCharacters as BaseForeignCharacters;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @immutable
|
* @immutable
|
||||||
*/
|
*/
|
||||||
class ForeignCharacters extends BaseForeignCharacters
|
class ForeignCharacters extends BaseForeignCharacters
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|||||||
128
app/Config/Format.php
Executable file → Normal file
128
app/Config/Format.php
Executable file → Normal file
@ -1,64 +1,64 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Config;
|
namespace Config;
|
||||||
|
|
||||||
use CodeIgniter\Config\BaseConfig;
|
use CodeIgniter\Config\BaseConfig;
|
||||||
use CodeIgniter\Format\JSONFormatter;
|
use CodeIgniter\Format\JSONFormatter;
|
||||||
use CodeIgniter\Format\XMLFormatter;
|
use CodeIgniter\Format\XMLFormatter;
|
||||||
|
|
||||||
class Format extends BaseConfig
|
class Format extends BaseConfig
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* Available Response Formats
|
* Available Response Formats
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* When you perform content negotiation with the request, these are the
|
* When you perform content negotiation with the request, these are the
|
||||||
* available formats that your application supports. This is currently
|
* available formats that your application supports. This is currently
|
||||||
* only used with the API\ResponseTrait. A valid Formatter must exist
|
* only used with the API\ResponseTrait. A valid Formatter must exist
|
||||||
* for the specified format.
|
* for the specified format.
|
||||||
*
|
*
|
||||||
* These formats are only checked when the data passed to the respond()
|
* These formats are only checked when the data passed to the respond()
|
||||||
* method is an array.
|
* method is an array.
|
||||||
*
|
*
|
||||||
* @var list<string>
|
* @var list<string>
|
||||||
*/
|
*/
|
||||||
public array $supportedResponseFormats = [
|
public array $supportedResponseFormats = [
|
||||||
'application/json',
|
'application/json',
|
||||||
'application/xml', // machine-readable XML
|
'application/xml', // machine-readable XML
|
||||||
'text/xml', // human-readable XML
|
'text/xml', // human-readable XML
|
||||||
];
|
];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* Formatters
|
* Formatters
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* Lists the class to use to format responses with of a particular type.
|
* Lists the class to use to format responses with of a particular type.
|
||||||
* For each mime type, list the class that should be used. Formatters
|
* For each mime type, list the class that should be used. Formatters
|
||||||
* can be retrieved through the getFormatter() method.
|
* can be retrieved through the getFormatter() method.
|
||||||
*
|
*
|
||||||
* @var array<string, string>
|
* @var array<string, string>
|
||||||
*/
|
*/
|
||||||
public array $formatters = [
|
public array $formatters = [
|
||||||
'application/json' => JSONFormatter::class,
|
'application/json' => JSONFormatter::class,
|
||||||
'application/xml' => XMLFormatter::class,
|
'application/xml' => XMLFormatter::class,
|
||||||
'text/xml' => XMLFormatter::class,
|
'text/xml' => XMLFormatter::class,
|
||||||
];
|
];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* Formatters Options
|
* Formatters Options
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* Additional Options to adjust default formatters behaviour.
|
* Additional Options to adjust default formatters behaviour.
|
||||||
* For each mime type, list the additional options that should be used.
|
* For each mime type, list the additional options that should be used.
|
||||||
*
|
*
|
||||||
* @var array<string, int>
|
* @var array<string, int>
|
||||||
*/
|
*/
|
||||||
public array $formatterOptions = [
|
public array $formatterOptions = [
|
||||||
'application/json' => JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES,
|
'application/json' => JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES,
|
||||||
'application/xml' => 0,
|
'application/xml' => 0,
|
||||||
'text/xml' => 0,
|
'text/xml' => 0,
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
88
app/Config/Generators.php
Executable file → Normal file
88
app/Config/Generators.php
Executable file → Normal file
@ -1,44 +1,44 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Config;
|
namespace Config;
|
||||||
|
|
||||||
use CodeIgniter\Config\BaseConfig;
|
use CodeIgniter\Config\BaseConfig;
|
||||||
|
|
||||||
class Generators extends BaseConfig
|
class Generators extends BaseConfig
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* Generator Commands' Views
|
* Generator Commands' Views
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* This array defines the mapping of generator commands to the view files
|
* This array defines the mapping of generator commands to the view files
|
||||||
* they are using. If you need to customize them for your own, copy these
|
* they are using. If you need to customize them for your own, copy these
|
||||||
* view files in your own folder and indicate the location here.
|
* view files in your own folder and indicate the location here.
|
||||||
*
|
*
|
||||||
* You will notice that the views have special placeholders enclosed in
|
* You will notice that the views have special placeholders enclosed in
|
||||||
* curly braces `{...}`. These placeholders are used internally by the
|
* curly braces `{...}`. These placeholders are used internally by the
|
||||||
* generator commands in processing replacements, thus you are warned
|
* generator commands in processing replacements, thus you are warned
|
||||||
* not to delete them or modify the names. If you will do so, you may
|
* not to delete them or modify the names. If you will do so, you may
|
||||||
* end up disrupting the scaffolding process and throw errors.
|
* end up disrupting the scaffolding process and throw errors.
|
||||||
*
|
*
|
||||||
* YOU HAVE BEEN WARNED!
|
* YOU HAVE BEEN WARNED!
|
||||||
*
|
*
|
||||||
* @var array<string, array<string, string>|string>
|
* @var array<string, array<string, string>|string>
|
||||||
*/
|
*/
|
||||||
public array $views = [
|
public array $views = [
|
||||||
'make:cell' => [
|
'make:cell' => [
|
||||||
'class' => 'CodeIgniter\Commands\Generators\Views\cell.tpl.php',
|
'class' => 'CodeIgniter\Commands\Generators\Views\cell.tpl.php',
|
||||||
'view' => 'CodeIgniter\Commands\Generators\Views\cell_view.tpl.php',
|
'view' => 'CodeIgniter\Commands\Generators\Views\cell_view.tpl.php',
|
||||||
],
|
],
|
||||||
'make:command' => 'CodeIgniter\Commands\Generators\Views\command.tpl.php',
|
'make:command' => 'CodeIgniter\Commands\Generators\Views\command.tpl.php',
|
||||||
'make:config' => 'CodeIgniter\Commands\Generators\Views\config.tpl.php',
|
'make:config' => 'CodeIgniter\Commands\Generators\Views\config.tpl.php',
|
||||||
'make:controller' => 'CodeIgniter\Commands\Generators\Views\controller.tpl.php',
|
'make:controller' => 'CodeIgniter\Commands\Generators\Views\controller.tpl.php',
|
||||||
'make:entity' => 'CodeIgniter\Commands\Generators\Views\entity.tpl.php',
|
'make:entity' => 'CodeIgniter\Commands\Generators\Views\entity.tpl.php',
|
||||||
'make:filter' => 'CodeIgniter\Commands\Generators\Views\filter.tpl.php',
|
'make:filter' => 'CodeIgniter\Commands\Generators\Views\filter.tpl.php',
|
||||||
'make:migration' => 'CodeIgniter\Commands\Generators\Views\migration.tpl.php',
|
'make:migration' => 'CodeIgniter\Commands\Generators\Views\migration.tpl.php',
|
||||||
'make:model' => 'CodeIgniter\Commands\Generators\Views\model.tpl.php',
|
'make:model' => 'CodeIgniter\Commands\Generators\Views\model.tpl.php',
|
||||||
'make:seeder' => 'CodeIgniter\Commands\Generators\Views\seeder.tpl.php',
|
'make:seeder' => 'CodeIgniter\Commands\Generators\Views\seeder.tpl.php',
|
||||||
'make:validation' => 'CodeIgniter\Commands\Generators\Views\validation.tpl.php',
|
'make:validation' => 'CodeIgniter\Commands\Generators\Views\validation.tpl.php',
|
||||||
'session:migration' => 'CodeIgniter\Commands\Generators\Views\migration.tpl.php',
|
'session:migration' => 'CodeIgniter\Commands\Generators\Views\migration.tpl.php',
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
84
app/Config/Honeypot.php
Executable file → Normal file
84
app/Config/Honeypot.php
Executable file → Normal file
@ -1,42 +1,42 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Config;
|
namespace Config;
|
||||||
|
|
||||||
use CodeIgniter\Config\BaseConfig;
|
use CodeIgniter\Config\BaseConfig;
|
||||||
|
|
||||||
class Honeypot extends BaseConfig
|
class Honeypot extends BaseConfig
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* Makes Honeypot visible or not to human
|
* Makes Honeypot visible or not to human
|
||||||
*/
|
*/
|
||||||
public bool $hidden = true;
|
public bool $hidden = true;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Honeypot Label Content
|
* Honeypot Label Content
|
||||||
*/
|
*/
|
||||||
public string $label = 'Fill This Field';
|
public string $label = 'Fill This Field';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Honeypot Field Name
|
* Honeypot Field Name
|
||||||
*/
|
*/
|
||||||
public string $name = 'honeypot';
|
public string $name = 'honeypot';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Honeypot HTML Template
|
* Honeypot HTML Template
|
||||||
*/
|
*/
|
||||||
public string $template = '<label>{label}</label><input type="text" name="{name}" value="">';
|
public string $template = '<label>{label}</label><input type="text" name="{name}" value="">';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Honeypot container
|
* Honeypot container
|
||||||
*
|
*
|
||||||
* If you enabled CSP, you can remove `style="display:none"`.
|
* If you enabled CSP, you can remove `style="display:none"`.
|
||||||
*/
|
*/
|
||||||
public string $container = '<div style="display:none">{template}</div>';
|
public string $container = '<div style="display:none">{template}</div>';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The id attribute for Honeypot container tag
|
* The id attribute for Honeypot container tag
|
||||||
*
|
*
|
||||||
* Used when CSP is enabled.
|
* Used when CSP is enabled.
|
||||||
*/
|
*/
|
||||||
public string $containerId = 'hpc';
|
public string $containerId = 'hpc';
|
||||||
}
|
}
|
||||||
|
|||||||
62
app/Config/Images.php
Executable file → Normal file
62
app/Config/Images.php
Executable file → Normal file
@ -1,31 +1,31 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Config;
|
namespace Config;
|
||||||
|
|
||||||
use CodeIgniter\Config\BaseConfig;
|
use CodeIgniter\Config\BaseConfig;
|
||||||
use CodeIgniter\Images\Handlers\GDHandler;
|
use CodeIgniter\Images\Handlers\GDHandler;
|
||||||
use CodeIgniter\Images\Handlers\ImageMagickHandler;
|
use CodeIgniter\Images\Handlers\ImageMagickHandler;
|
||||||
|
|
||||||
class Images extends BaseConfig
|
class Images extends BaseConfig
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* Default handler used if no other handler is specified.
|
* Default handler used if no other handler is specified.
|
||||||
*/
|
*/
|
||||||
public string $defaultHandler = 'gd';
|
public string $defaultHandler = 'gd';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The path to the image library.
|
* The path to the image library.
|
||||||
* Required for ImageMagick, GraphicsMagick, or NetPBM.
|
* Required for ImageMagick, GraphicsMagick, or NetPBM.
|
||||||
*/
|
*/
|
||||||
public string $libraryPath = '/usr/local/bin/convert';
|
public string $libraryPath = '/usr/local/bin/convert';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The available handler classes.
|
* The available handler classes.
|
||||||
*
|
*
|
||||||
* @var array<string, string>
|
* @var array<string, string>
|
||||||
*/
|
*/
|
||||||
public array $handlers = [
|
public array $handlers = [
|
||||||
'gd' => GDHandler::class,
|
'gd' => GDHandler::class,
|
||||||
'imagick' => ImageMagickHandler::class,
|
'imagick' => ImageMagickHandler::class,
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
126
app/Config/Kint.php
Executable file → Normal file
126
app/Config/Kint.php
Executable file → Normal file
@ -1,63 +1,63 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Config;
|
namespace Config;
|
||||||
|
|
||||||
use Kint\Parser\ConstructablePluginInterface;
|
use Kint\Parser\ConstructablePluginInterface;
|
||||||
use Kint\Renderer\Rich\TabPluginInterface;
|
use Kint\Renderer\Rich\TabPluginInterface;
|
||||||
use Kint\Renderer\Rich\ValuePluginInterface;
|
use Kint\Renderer\Rich\ValuePluginInterface;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* Kint
|
* Kint
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* We use Kint's `RichRenderer` and `CLIRenderer`. This area contains options
|
* We use Kint's `RichRenderer` and `CLIRenderer`. This area contains options
|
||||||
* that you can set to customize how Kint works for you.
|
* that you can set to customize how Kint works for you.
|
||||||
*
|
*
|
||||||
* @see https://kint-php.github.io/kint/ for details on these settings.
|
* @see https://kint-php.github.io/kint/ for details on these settings.
|
||||||
*/
|
*/
|
||||||
class Kint
|
class Kint
|
||||||
{
|
{
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
| Global Settings
|
| Global Settings
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var list<class-string<ConstructablePluginInterface>|ConstructablePluginInterface>|null
|
* @var list<class-string<ConstructablePluginInterface>|ConstructablePluginInterface>|null
|
||||||
*/
|
*/
|
||||||
public $plugins;
|
public $plugins;
|
||||||
|
|
||||||
public int $maxDepth = 6;
|
public int $maxDepth = 6;
|
||||||
public bool $displayCalledFrom = true;
|
public bool $displayCalledFrom = true;
|
||||||
public bool $expanded = false;
|
public bool $expanded = false;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
| RichRenderer Settings
|
| RichRenderer Settings
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
public string $richTheme = 'aante-light.css';
|
public string $richTheme = 'aante-light.css';
|
||||||
public bool $richFolder = false;
|
public bool $richFolder = false;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var array<string, class-string<ValuePluginInterface>>|null
|
* @var array<string, class-string<ValuePluginInterface>>|null
|
||||||
*/
|
*/
|
||||||
public $richObjectPlugins;
|
public $richObjectPlugins;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var array<string, class-string<TabPluginInterface>>|null
|
* @var array<string, class-string<TabPluginInterface>>|null
|
||||||
*/
|
*/
|
||||||
public $richTabPlugins;
|
public $richTabPlugins;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
| CLI Settings
|
| CLI Settings
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
public bool $cliColors = true;
|
public bool $cliColors = true;
|
||||||
public bool $cliForceUTF8 = false;
|
public bool $cliForceUTF8 = false;
|
||||||
public bool $cliDetectWidth = true;
|
public bool $cliDetectWidth = true;
|
||||||
public int $cliMinWidth = 40;
|
public int $cliMinWidth = 40;
|
||||||
}
|
}
|
||||||
|
|||||||
300
app/Config/Logger.php
Executable file → Normal file
300
app/Config/Logger.php
Executable file → Normal file
@ -1,150 +1,150 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Config;
|
namespace Config;
|
||||||
|
|
||||||
use CodeIgniter\Config\BaseConfig;
|
use CodeIgniter\Config\BaseConfig;
|
||||||
use CodeIgniter\Log\Handlers\FileHandler;
|
use CodeIgniter\Log\Handlers\FileHandler;
|
||||||
|
|
||||||
class Logger extends BaseConfig
|
class Logger extends BaseConfig
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* Error Logging Threshold
|
* Error Logging Threshold
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* You can enable error logging by setting a threshold over zero. The
|
* You can enable error logging by setting a threshold over zero. The
|
||||||
* threshold determines what gets logged. Any values below or equal to the
|
* threshold determines what gets logged. Any values below or equal to the
|
||||||
* threshold will be logged.
|
* threshold will be logged.
|
||||||
*
|
*
|
||||||
* Threshold options are:
|
* Threshold options are:
|
||||||
*
|
*
|
||||||
* - 0 = Disables logging, Error logging TURNED OFF
|
* - 0 = Disables logging, Error logging TURNED OFF
|
||||||
* - 1 = Emergency Messages - System is unusable
|
* - 1 = Emergency Messages - System is unusable
|
||||||
* - 2 = Alert Messages - Action Must Be Taken Immediately
|
* - 2 = Alert Messages - Action Must Be Taken Immediately
|
||||||
* - 3 = Critical Messages - Application component unavailable, unexpected exception.
|
* - 3 = Critical Messages - Application component unavailable, unexpected exception.
|
||||||
* - 4 = Runtime Errors - Don't need immediate action, but should be monitored.
|
* - 4 = Runtime Errors - Don't need immediate action, but should be monitored.
|
||||||
* - 5 = Warnings - Exceptional occurrences that are not errors.
|
* - 5 = Warnings - Exceptional occurrences that are not errors.
|
||||||
* - 6 = Notices - Normal but significant events.
|
* - 6 = Notices - Normal but significant events.
|
||||||
* - 7 = Info - Interesting events, like user logging in, etc.
|
* - 7 = Info - Interesting events, like user logging in, etc.
|
||||||
* - 8 = Debug - Detailed debug information.
|
* - 8 = Debug - Detailed debug information.
|
||||||
* - 9 = All Messages
|
* - 9 = All Messages
|
||||||
*
|
*
|
||||||
* You can also pass an array with threshold levels to show individual error types
|
* You can also pass an array with threshold levels to show individual error types
|
||||||
*
|
*
|
||||||
* array(1, 2, 3, 8) = Emergency, Alert, Critical, and Debug messages
|
* array(1, 2, 3, 8) = Emergency, Alert, Critical, and Debug messages
|
||||||
*
|
*
|
||||||
* For a live site you'll usually enable Critical or higher (3) to be logged otherwise
|
* For a live site you'll usually enable Critical or higher (3) to be logged otherwise
|
||||||
* your log files will fill up very fast.
|
* your log files will fill up very fast.
|
||||||
*
|
*
|
||||||
* @var int|list<int>
|
* @var int|list<int>
|
||||||
*/
|
*/
|
||||||
public $threshold = (ENVIRONMENT === 'production') ? 4 : 9;
|
public $threshold = (ENVIRONMENT === 'production') ? 4 : 9;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* Date Format for Logs
|
* Date Format for Logs
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* Each item that is logged has an associated date. You can use PHP date
|
* Each item that is logged has an associated date. You can use PHP date
|
||||||
* codes to set your own date formatting
|
* codes to set your own date formatting
|
||||||
*/
|
*/
|
||||||
public string $dateFormat = 'Y-m-d H:i:s';
|
public string $dateFormat = 'Y-m-d H:i:s';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* Log Handlers
|
* Log Handlers
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* The logging system supports multiple actions to be taken when something
|
* The logging system supports multiple actions to be taken when something
|
||||||
* is logged. This is done by allowing for multiple Handlers, special classes
|
* is logged. This is done by allowing for multiple Handlers, special classes
|
||||||
* designed to write the log to their chosen destinations, whether that is
|
* designed to write the log to their chosen destinations, whether that is
|
||||||
* a file on the getServer, a cloud-based service, or even taking actions such
|
* a file on the getServer, a cloud-based service, or even taking actions such
|
||||||
* as emailing the dev team.
|
* as emailing the dev team.
|
||||||
*
|
*
|
||||||
* Each handler is defined by the class name used for that handler, and it
|
* Each handler is defined by the class name used for that handler, and it
|
||||||
* MUST implement the `CodeIgniter\Log\Handlers\HandlerInterface` interface.
|
* MUST implement the `CodeIgniter\Log\Handlers\HandlerInterface` interface.
|
||||||
*
|
*
|
||||||
* The value of each key is an array of configuration items that are sent
|
* The value of each key is an array of configuration items that are sent
|
||||||
* to the constructor of each handler. The only required configuration item
|
* to the constructor of each handler. The only required configuration item
|
||||||
* is the 'handles' element, which must be an array of integer log levels.
|
* is the 'handles' element, which must be an array of integer log levels.
|
||||||
* This is most easily handled by using the constants defined in the
|
* This is most easily handled by using the constants defined in the
|
||||||
* `Psr\Log\LogLevel` class.
|
* `Psr\Log\LogLevel` class.
|
||||||
*
|
*
|
||||||
* Handlers are executed in the order defined in this array, starting with
|
* Handlers are executed in the order defined in this array, starting with
|
||||||
* the handler on top and continuing down.
|
* the handler on top and continuing down.
|
||||||
*
|
*
|
||||||
* @var array<class-string, array<string, int|list<string>|string>>
|
* @var array<class-string, array<string, int|list<string>|string>>
|
||||||
*/
|
*/
|
||||||
public array $handlers = [
|
public array $handlers = [
|
||||||
/*
|
/*
|
||||||
* --------------------------------------------------------------------
|
* --------------------------------------------------------------------
|
||||||
* File Handler
|
* File Handler
|
||||||
* --------------------------------------------------------------------
|
* --------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
FileHandler::class => [
|
FileHandler::class => [
|
||||||
// The log levels that this handler will handle.
|
// The log levels that this handler will handle.
|
||||||
'handles' => [
|
'handles' => [
|
||||||
'critical',
|
'critical',
|
||||||
'alert',
|
'alert',
|
||||||
'emergency',
|
'emergency',
|
||||||
'debug',
|
'debug',
|
||||||
'error',
|
'error',
|
||||||
'info',
|
'info',
|
||||||
'notice',
|
'notice',
|
||||||
'warning',
|
'warning',
|
||||||
],
|
],
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The default filename extension for log files.
|
* The default filename extension for log files.
|
||||||
* An extension of 'php' allows for protecting the log files via basic
|
* An extension of 'php' allows for protecting the log files via basic
|
||||||
* scripting, when they are to be stored under a publicly accessible directory.
|
* scripting, when they are to be stored under a publicly accessible directory.
|
||||||
*
|
*
|
||||||
* NOTE: Leaving it blank will default to 'log'.
|
* NOTE: Leaving it blank will default to 'log'.
|
||||||
*/
|
*/
|
||||||
'fileExtension' => '',
|
'fileExtension' => '',
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The file system permissions to be applied on newly created log files.
|
* The file system permissions to be applied on newly created log files.
|
||||||
*
|
*
|
||||||
* IMPORTANT: This MUST be an integer (no quotes) and you MUST use octal
|
* IMPORTANT: This MUST be an integer (no quotes) and you MUST use octal
|
||||||
* integer notation (i.e. 0700, 0644, etc.)
|
* integer notation (i.e. 0700, 0644, etc.)
|
||||||
*/
|
*/
|
||||||
'filePermissions' => 0644,
|
'filePermissions' => 0644,
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Logging Directory Path
|
* Logging Directory Path
|
||||||
*
|
*
|
||||||
* By default, logs are written to WRITEPATH . 'logs/'
|
* By default, logs are written to WRITEPATH . 'logs/'
|
||||||
* Specify a different destination here, if desired.
|
* Specify a different destination here, if desired.
|
||||||
*/
|
*/
|
||||||
'path' => '',
|
'path' => '',
|
||||||
],
|
],
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The ChromeLoggerHandler requires the use of the Chrome web browser
|
* The ChromeLoggerHandler requires the use of the Chrome web browser
|
||||||
* and the ChromeLogger extension. Uncomment this block to use it.
|
* and the ChromeLogger extension. Uncomment this block to use it.
|
||||||
*/
|
*/
|
||||||
// 'CodeIgniter\Log\Handlers\ChromeLoggerHandler' => [
|
// 'CodeIgniter\Log\Handlers\ChromeLoggerHandler' => [
|
||||||
// /*
|
// /*
|
||||||
// * The log levels that this handler will handle.
|
// * The log levels that this handler will handle.
|
||||||
// */
|
// */
|
||||||
// 'handles' => ['critical', 'alert', 'emergency', 'debug',
|
// 'handles' => ['critical', 'alert', 'emergency', 'debug',
|
||||||
// 'error', 'info', 'notice', 'warning'],
|
// 'error', 'info', 'notice', 'warning'],
|
||||||
// ],
|
// ],
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The ErrorlogHandler writes the logs to PHP's native `error_log()` function.
|
* The ErrorlogHandler writes the logs to PHP's native `error_log()` function.
|
||||||
* Uncomment this block to use it.
|
* Uncomment this block to use it.
|
||||||
*/
|
*/
|
||||||
// 'CodeIgniter\Log\Handlers\ErrorlogHandler' => [
|
// 'CodeIgniter\Log\Handlers\ErrorlogHandler' => [
|
||||||
// /* The log levels this handler can handle. */
|
// /* The log levels this handler can handle. */
|
||||||
// 'handles' => ['critical', 'alert', 'emergency', 'debug', 'error', 'info', 'notice', 'warning'],
|
// 'handles' => ['critical', 'alert', 'emergency', 'debug', 'error', 'info', 'notice', 'warning'],
|
||||||
//
|
//
|
||||||
// /*
|
// /*
|
||||||
// * The message type where the error should go. Can be 0 or 4, or use the
|
// * The message type where the error should go. Can be 0 or 4, or use the
|
||||||
// * class constants: `ErrorlogHandler::TYPE_OS` (0) or `ErrorlogHandler::TYPE_SAPI` (4)
|
// * class constants: `ErrorlogHandler::TYPE_OS` (0) or `ErrorlogHandler::TYPE_SAPI` (4)
|
||||||
// */
|
// */
|
||||||
// 'messageType' => 0,
|
// 'messageType' => 0,
|
||||||
// ],
|
// ],
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
100
app/Config/Migrations.php
Executable file → Normal file
100
app/Config/Migrations.php
Executable file → Normal file
@ -1,50 +1,50 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Config;
|
namespace Config;
|
||||||
|
|
||||||
use CodeIgniter\Config\BaseConfig;
|
use CodeIgniter\Config\BaseConfig;
|
||||||
|
|
||||||
class Migrations extends BaseConfig
|
class Migrations extends BaseConfig
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* Enable/Disable Migrations
|
* Enable/Disable Migrations
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* Migrations are enabled by default.
|
* Migrations are enabled by default.
|
||||||
*
|
*
|
||||||
* You should enable migrations whenever you intend to do a schema migration
|
* You should enable migrations whenever you intend to do a schema migration
|
||||||
* and disable it back when you're done.
|
* and disable it back when you're done.
|
||||||
*/
|
*/
|
||||||
public bool $enabled = true;
|
public bool $enabled = true;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* Migrations Table
|
* Migrations Table
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* This is the name of the table that will store the current migrations state.
|
* This is the name of the table that will store the current migrations state.
|
||||||
* When migrations runs it will store in a database table which migration
|
* When migrations runs it will store in a database table which migration
|
||||||
* files have already been run.
|
* files have already been run.
|
||||||
*/
|
*/
|
||||||
public string $table = 'migrations';
|
public string $table = 'migrations';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* Timestamp Format
|
* Timestamp Format
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* This is the format that will be used when creating new migrations
|
* This is the format that will be used when creating new migrations
|
||||||
* using the CLI command:
|
* using the CLI command:
|
||||||
* > php spark make:migration
|
* > php spark make:migration
|
||||||
*
|
*
|
||||||
* NOTE: if you set an unsupported format, migration runner will not find
|
* NOTE: if you set an unsupported format, migration runner will not find
|
||||||
* your migration files.
|
* your migration files.
|
||||||
*
|
*
|
||||||
* Supported formats:
|
* Supported formats:
|
||||||
* - YmdHis_
|
* - YmdHis_
|
||||||
* - Y-m-d-His_
|
* - Y-m-d-His_
|
||||||
* - Y_m_d_His_
|
* - Y_m_d_His_
|
||||||
*/
|
*/
|
||||||
public string $timestampFormat = 'Y-m-d-His_';
|
public string $timestampFormat = 'Y-m-d-His_';
|
||||||
}
|
}
|
||||||
|
|||||||
1068
app/Config/Mimes.php
Executable file → Normal file
1068
app/Config/Mimes.php
Executable file → Normal file
File diff suppressed because it is too large
Load Diff
164
app/Config/Modules.php
Executable file → Normal file
164
app/Config/Modules.php
Executable file → Normal file
@ -1,82 +1,82 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Config;
|
namespace Config;
|
||||||
|
|
||||||
use CodeIgniter\Modules\Modules as BaseModules;
|
use CodeIgniter\Modules\Modules as BaseModules;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Modules Configuration.
|
* Modules Configuration.
|
||||||
*
|
*
|
||||||
* NOTE: This class is required prior to Autoloader instantiation,
|
* NOTE: This class is required prior to Autoloader instantiation,
|
||||||
* and does not extend BaseConfig.
|
* and does not extend BaseConfig.
|
||||||
*/
|
*/
|
||||||
class Modules extends BaseModules
|
class Modules extends BaseModules
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* Enable Auto-Discovery?
|
* Enable Auto-Discovery?
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* If true, then auto-discovery will happen across all elements listed in
|
* If true, then auto-discovery will happen across all elements listed in
|
||||||
* $aliases below. If false, no auto-discovery will happen at all,
|
* $aliases below. If false, no auto-discovery will happen at all,
|
||||||
* giving a slight performance boost.
|
* giving a slight performance boost.
|
||||||
*
|
*
|
||||||
* @var bool
|
* @var bool
|
||||||
*/
|
*/
|
||||||
public $enabled = true;
|
public $enabled = true;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* Enable Auto-Discovery Within Composer Packages?
|
* Enable Auto-Discovery Within Composer Packages?
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* If true, then auto-discovery will happen across all namespaces loaded
|
* If true, then auto-discovery will happen across all namespaces loaded
|
||||||
* by Composer, as well as the namespaces configured locally.
|
* by Composer, as well as the namespaces configured locally.
|
||||||
*
|
*
|
||||||
* @var bool
|
* @var bool
|
||||||
*/
|
*/
|
||||||
public $discoverInComposer = true;
|
public $discoverInComposer = true;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The Composer package list for Auto-Discovery
|
* The Composer package list for Auto-Discovery
|
||||||
* This setting is optional.
|
* This setting is optional.
|
||||||
*
|
*
|
||||||
* E.g.:
|
* E.g.:
|
||||||
* [
|
* [
|
||||||
* 'only' => [
|
* 'only' => [
|
||||||
* // List up all packages to auto-discover
|
* // List up all packages to auto-discover
|
||||||
* 'codeigniter4/shield',
|
* 'codeigniter4/shield',
|
||||||
* ],
|
* ],
|
||||||
* ]
|
* ]
|
||||||
* or
|
* or
|
||||||
* [
|
* [
|
||||||
* 'exclude' => [
|
* 'exclude' => [
|
||||||
* // List up packages to exclude.
|
* // List up packages to exclude.
|
||||||
* 'pestphp/pest',
|
* 'pestphp/pest',
|
||||||
* ],
|
* ],
|
||||||
* ]
|
* ]
|
||||||
*
|
*
|
||||||
* @var array{only?: list<string>, exclude?: list<string>}
|
* @var array{only?: list<string>, exclude?: list<string>}
|
||||||
*/
|
*/
|
||||||
public $composerPackages = [];
|
public $composerPackages = [];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* Auto-Discovery Rules
|
* Auto-Discovery Rules
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* Aliases list of all discovery classes that will be active and used during
|
* Aliases list of all discovery classes that will be active and used during
|
||||||
* the current application request.
|
* the current application request.
|
||||||
*
|
*
|
||||||
* If it is not listed, only the base application elements will be used.
|
* If it is not listed, only the base application elements will be used.
|
||||||
*
|
*
|
||||||
* @var list<string>
|
* @var list<string>
|
||||||
*/
|
*/
|
||||||
public $aliases = [
|
public $aliases = [
|
||||||
'events',
|
'events',
|
||||||
'filters',
|
'filters',
|
||||||
'registrars',
|
'registrars',
|
||||||
'routes',
|
'routes',
|
||||||
'services',
|
'services',
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
60
app/Config/Optimize.php
Executable file → Normal file
60
app/Config/Optimize.php
Executable file → Normal file
@ -1,30 +1,30 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Config;
|
namespace Config;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Optimization Configuration.
|
* Optimization Configuration.
|
||||||
*
|
*
|
||||||
* NOTE: This class does not extend BaseConfig for performance reasons.
|
* NOTE: This class does not extend BaseConfig for performance reasons.
|
||||||
* So you cannot replace the property values with Environment Variables.
|
* So you cannot replace the property values with Environment Variables.
|
||||||
*/
|
*/
|
||||||
class Optimize
|
class Optimize
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* Config Caching
|
* Config Caching
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* @see https://codeigniter.com/user_guide/concepts/factories.html#config-caching
|
* @see https://codeigniter.com/user_guide/concepts/factories.html#config-caching
|
||||||
*/
|
*/
|
||||||
public bool $configCacheEnabled = false;
|
public bool $configCacheEnabled = false;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* Config Caching
|
* Config Caching
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* @see https://codeigniter.com/user_guide/concepts/autoloader.html#file-locator-caching
|
* @see https://codeigniter.com/user_guide/concepts/autoloader.html#file-locator-caching
|
||||||
*/
|
*/
|
||||||
public bool $locatorCacheEnabled = false;
|
public bool $locatorCacheEnabled = false;
|
||||||
}
|
}
|
||||||
|
|||||||
74
app/Config/Pager.php
Executable file → Normal file
74
app/Config/Pager.php
Executable file → Normal file
@ -1,37 +1,37 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Config;
|
namespace Config;
|
||||||
|
|
||||||
use CodeIgniter\Config\BaseConfig;
|
use CodeIgniter\Config\BaseConfig;
|
||||||
|
|
||||||
class Pager extends BaseConfig
|
class Pager extends BaseConfig
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* Templates
|
* Templates
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* Pagination links are rendered out using views to configure their
|
* Pagination links are rendered out using views to configure their
|
||||||
* appearance. This array contains aliases and the view names to
|
* appearance. This array contains aliases and the view names to
|
||||||
* use when rendering the links.
|
* use when rendering the links.
|
||||||
*
|
*
|
||||||
* Within each view, the Pager object will be available as $pager,
|
* Within each view, the Pager object will be available as $pager,
|
||||||
* and the desired group as $pagerGroup;
|
* and the desired group as $pagerGroup;
|
||||||
*
|
*
|
||||||
* @var array<string, string>
|
* @var array<string, string>
|
||||||
*/
|
*/
|
||||||
public array $templates = [
|
public array $templates = [
|
||||||
'default_full' => 'CodeIgniter\Pager\Views\default_full',
|
'default_full' => 'CodeIgniter\Pager\Views\default_full',
|
||||||
'default_simple' => 'CodeIgniter\Pager\Views\default_simple',
|
'default_simple' => 'CodeIgniter\Pager\Views\default_simple',
|
||||||
'default_head' => 'CodeIgniter\Pager\Views\default_head',
|
'default_head' => 'CodeIgniter\Pager\Views\default_head',
|
||||||
];
|
];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* Items Per Page
|
* Items Per Page
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* The default number of results shown in a single page.
|
* The default number of results shown in a single page.
|
||||||
*/
|
*/
|
||||||
public int $perPage = 20;
|
public int $perPage = 20;
|
||||||
}
|
}
|
||||||
|
|||||||
150
app/Config/Paths.php
Executable file → Normal file
150
app/Config/Paths.php
Executable file → Normal file
@ -1,75 +1,75 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Config;
|
namespace Config;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Paths
|
* Paths
|
||||||
*
|
*
|
||||||
* Holds the paths that are used by the system to
|
* Holds the paths that are used by the system to
|
||||||
* locate the main directories, app, system, etc.
|
* locate the main directories, app, system, etc.
|
||||||
*
|
*
|
||||||
* Modifying these allows you to restructure your application,
|
* Modifying these allows you to restructure your application,
|
||||||
* share a system folder between multiple applications, and more.
|
* share a system folder between multiple applications, and more.
|
||||||
*
|
*
|
||||||
* All paths are relative to the project's root folder.
|
* All paths are relative to the project's root folder.
|
||||||
*/
|
*/
|
||||||
class Paths
|
class Paths
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* ---------------------------------------------------------------
|
* ---------------------------------------------------------------
|
||||||
* SYSTEM FOLDER NAME
|
* SYSTEM FOLDER NAME
|
||||||
* ---------------------------------------------------------------
|
* ---------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* This must contain the name of your "system" folder. Include
|
* This must contain the name of your "system" folder. Include
|
||||||
* the path if the folder is not in the same directory as this file.
|
* the path if the folder is not in the same directory as this file.
|
||||||
*/
|
*/
|
||||||
public string $systemDirectory = __DIR__ . '/../../vendor/codeigniter4/framework/system';
|
public string $systemDirectory = __DIR__ . '/../../vendor/codeigniter4/framework/system';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* ---------------------------------------------------------------
|
* ---------------------------------------------------------------
|
||||||
* APPLICATION FOLDER NAME
|
* APPLICATION FOLDER NAME
|
||||||
* ---------------------------------------------------------------
|
* ---------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* If you want this front controller to use a different "app"
|
* If you want this front controller to use a different "app"
|
||||||
* folder than the default one you can set its name here. The folder
|
* folder than the default one you can set its name here. The folder
|
||||||
* can also be renamed or relocated anywhere on your server. If
|
* can also be renamed or relocated anywhere on your server. If
|
||||||
* you do, use a full server path.
|
* you do, use a full server path.
|
||||||
*
|
*
|
||||||
* @see http://codeigniter.com/user_guide/general/managing_apps.html
|
* @see http://codeigniter.com/user_guide/general/managing_apps.html
|
||||||
*/
|
*/
|
||||||
public string $appDirectory = __DIR__ . '/..';
|
public string $appDirectory = __DIR__ . '/..';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* ---------------------------------------------------------------
|
* ---------------------------------------------------------------
|
||||||
* WRITABLE DIRECTORY NAME
|
* WRITABLE DIRECTORY NAME
|
||||||
* ---------------------------------------------------------------
|
* ---------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* This variable must contain the name of your "writable" directory.
|
* This variable must contain the name of your "writable" directory.
|
||||||
* The writable directory allows you to group all directories that
|
* The writable directory allows you to group all directories that
|
||||||
* need write permission to a single place that can be tucked away
|
* need write permission to a single place that can be tucked away
|
||||||
* for maximum security, keeping it out of the app and/or
|
* for maximum security, keeping it out of the app and/or
|
||||||
* system directories.
|
* system directories.
|
||||||
*/
|
*/
|
||||||
public string $writableDirectory = __DIR__ . '/../../writable';
|
public string $writableDirectory = __DIR__ . '/../../writable';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* ---------------------------------------------------------------
|
* ---------------------------------------------------------------
|
||||||
* TESTS DIRECTORY NAME
|
* TESTS DIRECTORY NAME
|
||||||
* ---------------------------------------------------------------
|
* ---------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* This variable must contain the name of your "tests" directory.
|
* This variable must contain the name of your "tests" directory.
|
||||||
*/
|
*/
|
||||||
public string $testsDirectory = __DIR__ . '/../../tests';
|
public string $testsDirectory = __DIR__ . '/../../tests';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* ---------------------------------------------------------------
|
* ---------------------------------------------------------------
|
||||||
* VIEW DIRECTORY NAME
|
* VIEW DIRECTORY NAME
|
||||||
* ---------------------------------------------------------------
|
* ---------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* This variable must contain the name of the directory that
|
* This variable must contain the name of the directory that
|
||||||
* contains the view files used by your application. By
|
* contains the view files used by your application. By
|
||||||
* default this is in `app/Views`. This value
|
* default this is in `app/Views`. This value
|
||||||
* is used when no value is provided to `Services::renderer()`.
|
* is used when no value is provided to `Services::renderer()`.
|
||||||
*/
|
*/
|
||||||
public string $viewDirectory = __DIR__ . '/../Views';
|
public string $viewDirectory = __DIR__ . '/../Views';
|
||||||
}
|
}
|
||||||
|
|||||||
56
app/Config/Publisher.php
Executable file → Normal file
56
app/Config/Publisher.php
Executable file → Normal file
@ -1,28 +1,28 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Config;
|
namespace Config;
|
||||||
|
|
||||||
use CodeIgniter\Config\Publisher as BasePublisher;
|
use CodeIgniter\Config\Publisher as BasePublisher;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Publisher Configuration
|
* Publisher Configuration
|
||||||
*
|
*
|
||||||
* Defines basic security restrictions for the Publisher class
|
* Defines basic security restrictions for the Publisher class
|
||||||
* to prevent abuse by injecting malicious files into a project.
|
* to prevent abuse by injecting malicious files into a project.
|
||||||
*/
|
*/
|
||||||
class Publisher extends BasePublisher
|
class Publisher extends BasePublisher
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* A list of allowed destinations with a (pseudo-)regex
|
* A list of allowed destinations with a (pseudo-)regex
|
||||||
* of allowed files for each destination.
|
* of allowed files for each destination.
|
||||||
* Attempts to publish to directories not in this list will
|
* Attempts to publish to directories not in this list will
|
||||||
* result in a PublisherException. Files that do no fit the
|
* result in a PublisherException. Files that do no fit the
|
||||||
* pattern will cause copy/merge to fail.
|
* pattern will cause copy/merge to fail.
|
||||||
*
|
*
|
||||||
* @var array<string, string>
|
* @var array<string, string>
|
||||||
*/
|
*/
|
||||||
public $restrictions = [
|
public $restrictions = [
|
||||||
ROOTPATH => '*',
|
ROOTPATH => '*',
|
||||||
FCPATH => '#\.(s?css|js|map|html?|xml|json|webmanifest|ttf|eot|woff2?|gif|jpe?g|tiff?|png|webp|bmp|ico|svg)$#i',
|
FCPATH => '#\.(s?css|js|map|html?|xml|json|webmanifest|ttf|eot|woff2?|gif|jpe?g|tiff?|png|webp|bmp|ico|svg)$#i',
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
410
app/Config/Routes.php
Executable file → Normal file
410
app/Config/Routes.php
Executable file → Normal file
@ -1,388 +1,24 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
use CodeIgniter\Router\RouteCollection;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var RouteCollection $routes
|
|
||||||
*/
|
|
||||||
$routes->get('/', function () {
|
|
||||||
return "Backend Running";
|
|
||||||
});
|
|
||||||
|
|
||||||
$routes->options('(:any)', function () {
|
|
||||||
return '';
|
|
||||||
});
|
|
||||||
|
|
||||||
$routes->group('api', ['filter' => 'auth'], function ($routes) {
|
|
||||||
$routes->get('dashboard', 'DashboardController::index');
|
|
||||||
$routes->get('sample', 'SampleController::index');
|
|
||||||
$routes->get('audit-logs', 'Audit\AuditLogController::index');
|
|
||||||
|
|
||||||
// Results CRUD
|
|
||||||
$routes->group('result', function ($routes) {
|
|
||||||
$routes->get('/', 'ResultController::index');
|
|
||||||
$routes->post('/', 'ResultController::create');
|
|
||||||
$routes->get('(:num)', 'ResultController::show/$1');
|
|
||||||
$routes->patch('(:any)', 'ResultController::update/$1');
|
|
||||||
$routes->delete('(:num)', 'ResultController::delete/$1');
|
|
||||||
});
|
|
||||||
|
|
||||||
// Reports
|
|
||||||
$routes->get('report/(:num)', 'ReportController::view/$1');
|
|
||||||
});
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// V2 Auth API Routes (public - no auth required)
|
|
||||||
$routes->group('v2/auth', function ($routes) {
|
|
||||||
$routes->post('login', 'AuthV2Controller::login');
|
|
||||||
$routes->post('register', 'AuthV2Controller::register');
|
|
||||||
$routes->get('check', 'AuthV2Controller::checkAuth');
|
|
||||||
$routes->post('logout', 'AuthV2Controller::logout');
|
|
||||||
});
|
|
||||||
|
|
||||||
// Faker
|
|
||||||
$routes->get('faker/faker-patient/(:num)', 'faker\FakerPatient::sendMany/$1');
|
|
||||||
|
|
||||||
$routes->group('api', function ($routes) {
|
|
||||||
// Auth
|
|
||||||
$routes->group('auth', function ($routes) {
|
|
||||||
$routes->post('login', 'AuthController::login');
|
|
||||||
$routes->post('change_pass', 'AuthController::change_pass');
|
|
||||||
$routes->post('register', 'AuthController::register');
|
|
||||||
$routes->get('check', 'AuthController::checkAuth');
|
|
||||||
$routes->post('logout', 'AuthController::logout');
|
|
||||||
});
|
|
||||||
|
|
||||||
// Patient
|
|
||||||
$routes->group('patient', function ($routes) {
|
|
||||||
$routes->get('/', 'Patient\PatientController::index');
|
|
||||||
$routes->post('/', 'Patient\PatientController::create');
|
|
||||||
$routes->get('(:num)', 'Patient\PatientController::show/$1');
|
|
||||||
$routes->delete('/', 'Patient\PatientController::delete');
|
|
||||||
$routes->patch('(:any)', 'Patient\PatientController::update/$1');
|
|
||||||
$routes->get('check', 'Patient\PatientController::patientCheck');
|
|
||||||
});
|
|
||||||
|
|
||||||
// PatVisit
|
|
||||||
$routes->group('patvisit', function ($routes) {
|
|
||||||
$routes->get('/', 'PatVisitController::index');
|
|
||||||
$routes->post('/', 'PatVisitController::create');
|
|
||||||
$routes->get('patient/(:num)', 'PatVisitController::showByPatient/$1');
|
|
||||||
$routes->get('(:any)', 'PatVisitController::show/$1');
|
|
||||||
$routes->delete('/', 'PatVisitController::delete');
|
|
||||||
$routes->patch('(:any)', 'PatVisitController::update/$1');
|
|
||||||
});
|
|
||||||
|
|
||||||
$routes->group('patvisitadt', function ($routes) {
|
|
||||||
$routes->get('visit/(:num)', 'PatVisitController::getADTByVisit/$1');
|
|
||||||
$routes->get('(:num)', 'PatVisitController::showADT/$1');
|
|
||||||
$routes->post('/', 'PatVisitController::createADT');
|
|
||||||
$routes->patch('(:any)', 'PatVisitController::updateADT/$1');
|
|
||||||
$routes->delete('/', 'PatVisitController::deleteADT');
|
|
||||||
});
|
|
||||||
|
|
||||||
// Master Data
|
|
||||||
|
|
||||||
// Location
|
|
||||||
$routes->group('location', function ($routes) {
|
|
||||||
$routes->get('/', 'LocationController::index');
|
|
||||||
$routes->get('(:num)', 'LocationController::show/$1');
|
|
||||||
$routes->post('/', 'LocationController::create');
|
|
||||||
$routes->patch('(:any)', 'LocationController::update/$1');
|
|
||||||
$routes->delete('/', 'LocationController::delete');
|
|
||||||
});
|
|
||||||
|
|
||||||
// Contact
|
|
||||||
$routes->group('contact', function ($routes) {
|
|
||||||
$routes->get('/', 'Contact\ContactController::index');
|
|
||||||
$routes->get('(:num)', 'Contact\ContactController::show/$1');
|
|
||||||
$routes->post('/', 'Contact\ContactController::create');
|
|
||||||
$routes->patch('(:any)', 'Contact\ContactController::update/$1');
|
|
||||||
$routes->delete('/', 'Contact\ContactController::delete');
|
|
||||||
});
|
|
||||||
|
|
||||||
$routes->group('occupation', function ($routes) {
|
|
||||||
$routes->get('/', 'Contact\OccupationController::index');
|
|
||||||
$routes->get('(:num)', 'Contact\OccupationController::show/$1');
|
|
||||||
$routes->post('/', 'Contact\OccupationController::create');
|
|
||||||
$routes->patch('(:any)', 'Contact\OccupationController::update/$1');
|
|
||||||
//$routes->delete('/', 'Contact\OccupationController::delete');
|
|
||||||
});
|
|
||||||
|
|
||||||
$routes->group('medicalspecialty', function ($routes) {
|
|
||||||
$routes->get('/', 'Contact\MedicalSpecialtyController::index');
|
|
||||||
$routes->get('(:num)', 'Contact\MedicalSpecialtyController::show/$1');
|
|
||||||
$routes->post('/', 'Contact\MedicalSpecialtyController::create');
|
|
||||||
$routes->patch('(:any)', 'Contact\MedicalSpecialtyController::update/$1');
|
|
||||||
});
|
|
||||||
|
|
||||||
// Lib ValueSet (file-based)
|
|
||||||
$routes->group('valueset', function ($routes) {
|
|
||||||
$routes->get('/', 'ValueSetController::index');
|
|
||||||
$routes->get('(:any)', 'ValueSetController::index/$1');
|
|
||||||
$routes->post('refresh', 'ValueSetController::refresh');
|
|
||||||
|
|
||||||
// User ValueSet (database-based)
|
|
||||||
$routes->group('user', function ($routes) {
|
|
||||||
$routes->group('items', function ($routes) {
|
|
||||||
$routes->get('/', 'ValueSetController::items');
|
|
||||||
$routes->get('(:num)', 'ValueSetController::showItem/$1');
|
|
||||||
$routes->post('/', 'ValueSetController::createItem');
|
|
||||||
$routes->put('(:num)', 'ValueSetController::updateItem/$1');
|
|
||||||
$routes->delete('(:num)', 'ValueSetController::deleteItem/$1');
|
|
||||||
});
|
|
||||||
|
|
||||||
$routes->group('def', function ($routes) {
|
|
||||||
$routes->get('/', 'ValueSetDefController::index');
|
|
||||||
$routes->get('(:num)', 'ValueSetDefController::show/$1');
|
|
||||||
$routes->post('/', 'ValueSetDefController::create');
|
|
||||||
$routes->put('(:num)', 'ValueSetDefController::update/$1');
|
|
||||||
$routes->delete('(:num)', 'ValueSetDefController::delete/$1');
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
// Result ValueSet
|
|
||||||
$routes->group('result', function ($routes) {
|
|
||||||
$routes->group('valueset', function ($routes) {
|
|
||||||
$routes->get('/', 'Result\ResultValueSetController::index');
|
|
||||||
$routes->get('(:num)', 'Result\ResultValueSetController::show/$1');
|
|
||||||
$routes->post('/', 'Result\ResultValueSetController::create');
|
|
||||||
$routes->put('(:num)', 'Result\ResultValueSetController::update/$1');
|
|
||||||
$routes->delete('(:num)', 'Result\ResultValueSetController::delete/$1');
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
$routes->post('calc/testsite/(:num)', 'CalculatorController::calculateByTestSite/$1');
|
|
||||||
$routes->post('calc/testcode/(:any)', 'CalculatorController::calculateByCodeOrName/$1');
|
|
||||||
|
|
||||||
// Counter
|
|
||||||
$routes->group('counter', function ($routes) {
|
|
||||||
$routes->get('/', 'CounterController::index');
|
|
||||||
$routes->get('(:num)', 'CounterController::show/$1');
|
|
||||||
$routes->post('/', 'CounterController::create');
|
|
||||||
$routes->patch('(:any)', 'CounterController::update/$1');
|
|
||||||
$routes->delete('/', 'CounterController::delete');
|
|
||||||
});
|
|
||||||
|
|
||||||
// AreaGeo
|
|
||||||
$routes->group('areageo', function ($routes) {
|
|
||||||
$routes->get('/', 'AreaGeoController::index');
|
|
||||||
$routes->get('provinces', 'AreaGeoController::getProvinces');
|
|
||||||
$routes->get('cities', 'AreaGeoController::getCities');
|
|
||||||
});
|
|
||||||
|
|
||||||
// Organization
|
|
||||||
$routes->group('organization', function ($routes) {
|
|
||||||
// Account
|
|
||||||
$routes->group('account', function ($routes) {
|
|
||||||
$routes->get('/', 'Organization\AccountController::index');
|
|
||||||
$routes->get('(:num)', 'Organization\AccountController::show/$1');
|
|
||||||
$routes->post('/', 'Organization\AccountController::create');
|
|
||||||
$routes->patch('(:any)', 'Organization\AccountController::update/$1');
|
|
||||||
$routes->delete('/', 'Organization\AccountController::delete');
|
|
||||||
});
|
|
||||||
|
|
||||||
// Site
|
|
||||||
$routes->group('site', function ($routes) {
|
|
||||||
$routes->get('/', 'Organization\SiteController::index');
|
|
||||||
$routes->get('(:num)', 'Organization\SiteController::show/$1');
|
|
||||||
$routes->post('/', 'Organization\SiteController::create');
|
|
||||||
$routes->patch('(:any)', 'Organization\SiteController::update/$1');
|
|
||||||
$routes->delete('/', 'Organization\SiteController::delete');
|
|
||||||
});
|
|
||||||
|
|
||||||
// Discipline
|
|
||||||
$routes->group('discipline', function ($routes) {
|
|
||||||
$routes->get('/', 'Organization\DisciplineController::index');
|
|
||||||
$routes->get('(:num)', 'Organization\DisciplineController::show/$1');
|
|
||||||
$routes->post('/', 'Organization\DisciplineController::create');
|
|
||||||
$routes->patch('(:any)', 'Organization\DisciplineController::update/$1');
|
|
||||||
$routes->delete('/', 'Organization\DisciplineController::delete');
|
|
||||||
});
|
|
||||||
|
|
||||||
// Department
|
|
||||||
$routes->group('department', function ($routes) {
|
|
||||||
$routes->get('/', 'Organization\DepartmentController::index');
|
|
||||||
$routes->get('(:num)', 'Organization\DepartmentController::show/$1');
|
|
||||||
$routes->post('/', 'Organization\DepartmentController::create');
|
|
||||||
$routes->patch('(:any)', 'Organization\DepartmentController::update/$1');
|
|
||||||
$routes->delete('/', 'Organization\DepartmentController::delete');
|
|
||||||
});
|
|
||||||
|
|
||||||
// Workstation
|
|
||||||
$routes->group('workstation', function ($routes) {
|
|
||||||
$routes->get('/', 'Organization\WorkstationController::index');
|
|
||||||
$routes->get('(:num)', 'Organization\WorkstationController::show/$1');
|
|
||||||
$routes->post('/', 'Organization\WorkstationController::create');
|
|
||||||
$routes->patch('(:any)', 'Organization\WorkstationController::update/$1');
|
|
||||||
$routes->delete('/', 'Organization\WorkstationController::delete');
|
|
||||||
});
|
|
||||||
|
|
||||||
// HostApp
|
|
||||||
$routes->group('hostapp', function ($routes) {
|
|
||||||
$routes->get('/', 'Organization\HostAppController::index');
|
|
||||||
$routes->get('(:num)', 'Organization\HostAppController::show/$1');
|
|
||||||
$routes->post('/', 'Organization\HostAppController::create');
|
|
||||||
$routes->patch('(:num)', 'Organization\HostAppController::update/$1');
|
|
||||||
$routes->delete('/', 'Organization\HostAppController::delete');
|
|
||||||
});
|
|
||||||
|
|
||||||
// HostComPara
|
|
||||||
$routes->group('hostcompara', function ($routes) {
|
|
||||||
$routes->get('/', 'Organization\HostComParaController::index');
|
|
||||||
$routes->get('(:num)', 'Organization\HostComParaController::show/$1');
|
|
||||||
$routes->post('/', 'Organization\HostComParaController::create');
|
|
||||||
$routes->patch('(:num)', 'Organization\HostComParaController::update/$1');
|
|
||||||
$routes->delete('/', 'Organization\HostComParaController::delete');
|
|
||||||
});
|
|
||||||
|
|
||||||
// CodingSys
|
|
||||||
$routes->group('codingsys', function ($routes) {
|
|
||||||
$routes->get('/', 'Organization\CodingSysController::index');
|
|
||||||
$routes->get('(:num)', 'Organization\CodingSysController::show/$1');
|
|
||||||
$routes->post('/', 'Organization\CodingSysController::create');
|
|
||||||
$routes->patch('(:any)', 'Organization\CodingSysController::update/$1');
|
|
||||||
$routes->delete('/', 'Organization\CodingSysController::delete');
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
// Infrastructure
|
|
||||||
$routes->group('equipmentlist', function ($routes) {
|
|
||||||
$routes->get('/', 'Infrastructure\EquipmentListController::index');
|
|
||||||
$routes->get('(:num)', 'Infrastructure\EquipmentListController::show/$1');
|
|
||||||
$routes->post('/', 'Infrastructure\EquipmentListController::create');
|
|
||||||
$routes->patch('(:any)', 'Infrastructure\EquipmentListController::update/$1');
|
|
||||||
$routes->delete('/', 'Infrastructure\EquipmentListController::delete');
|
|
||||||
});
|
|
||||||
|
|
||||||
// Users
|
|
||||||
$routes->group('user', function ($routes) {
|
|
||||||
$routes->get('/', 'User\UserController::index');
|
|
||||||
$routes->get('(:num)', 'User\UserController::show/$1');
|
|
||||||
$routes->post('/', 'User\UserController::create');
|
|
||||||
$routes->patch('(:any)', 'User\UserController::update/$1');
|
|
||||||
$routes->delete('(:num)', 'User\UserController::delete/$1');
|
|
||||||
});
|
|
||||||
|
|
||||||
// Specimen
|
|
||||||
$routes->group('specimen', function ($routes) {
|
|
||||||
// Container aliases - 'container' and 'containerdef' both point to ContainerDefController
|
|
||||||
$routes->group('container', function ($routes) {
|
|
||||||
$routes->get('/', 'Specimen\ContainerDefController::index');
|
|
||||||
$routes->get('(:num)', 'Specimen\ContainerDefController::show/$1');
|
|
||||||
$routes->post('/', 'Specimen\ContainerDefController::create');
|
|
||||||
$routes->patch('(:any)', 'Specimen\ContainerDefController::update/$1');
|
|
||||||
});
|
|
||||||
$routes->group('containerdef', function ($routes) {
|
|
||||||
$routes->get('/', 'Specimen\ContainerDefController::index');
|
|
||||||
$routes->get('(:num)', 'Specimen\ContainerDefController::show/$1');
|
|
||||||
$routes->post('/', 'Specimen\ContainerDefController::create');
|
|
||||||
$routes->patch('(:any)', 'Specimen\ContainerDefController::update/$1');
|
|
||||||
});
|
|
||||||
|
|
||||||
$routes->group('prep', function ($routes) {
|
|
||||||
$routes->get('/', 'Specimen\SpecimenPrepController::index');
|
|
||||||
$routes->get('(:num)', 'Specimen\SpecimenPrepController::show/$1');
|
|
||||||
$routes->post('/', 'Specimen\SpecimenPrepController::create');
|
|
||||||
$routes->patch('(:any)', 'Specimen\SpecimenPrepController::update/$1');
|
|
||||||
});
|
|
||||||
|
|
||||||
$routes->group('status', function ($routes) {
|
|
||||||
$routes->get('/', 'Specimen\SpecimenStatusController::index');
|
|
||||||
$routes->get('(:num)', 'Specimen\SpecimenStatusController::show/$1');
|
|
||||||
$routes->post('/', 'Specimen\SpecimenStatusController::create');
|
|
||||||
$routes->patch('(:any)', 'Specimen\SpecimenStatusController::update/$1');
|
|
||||||
});
|
|
||||||
|
|
||||||
$routes->group('collection', function ($routes) {
|
|
||||||
$routes->get('/', 'Specimen\SpecimenCollectionController::index');
|
|
||||||
$routes->get('(:num)', 'Specimen\SpecimenCollectionController::show/$1');
|
|
||||||
$routes->post('/', 'Specimen\SpecimenCollectionController::create');
|
|
||||||
$routes->patch('(:any)', 'Specimen\SpecimenCollectionController::update/$1');
|
|
||||||
});
|
|
||||||
|
|
||||||
$routes->get('/', 'Specimen\SpecimenController::index');
|
|
||||||
$routes->get('(:num)', 'Specimen\SpecimenController::show/$1');
|
|
||||||
$routes->post('/', 'Specimen\SpecimenController::create');
|
|
||||||
$routes->patch('(:any)', 'Specimen\SpecimenController::update/$1');
|
|
||||||
$routes->delete('(:num)', 'Specimen\SpecimenController::delete/$1');
|
|
||||||
});
|
|
||||||
|
|
||||||
// Test
|
|
||||||
$routes->group('test', function ($routes) {
|
|
||||||
$routes->get('/', 'Test\TestsController::index');
|
|
||||||
$routes->get('(:num)', 'Test\TestsController::show/$1');
|
|
||||||
$routes->post('/', 'Test\TestsController::create');
|
|
||||||
$routes->patch('(:segment)', 'Test\TestsController::update/$1');
|
|
||||||
$routes->group('testmap', function ($routes) {
|
|
||||||
$routes->get('/', 'Test\TestMapController::index');
|
|
||||||
$routes->get('(:num)', 'Test\TestMapController::show/$1');
|
|
||||||
$routes->post('/', 'Test\TestMapController::create');
|
|
||||||
$routes->patch('(:segment)', 'Test\TestMapController::update/$1');
|
|
||||||
$routes->delete('/', 'Test\TestMapController::delete');
|
|
||||||
|
|
||||||
// Filter routes
|
|
||||||
$routes->get('by-testcode/(:any)', 'Test\TestMapController::showByTestCode/$1');
|
|
||||||
|
|
||||||
// TestMapDetail nested routes
|
|
||||||
$routes->group('detail', function ($routes) {
|
|
||||||
$routes->get('/', 'Test\TestMapDetailController::index');
|
|
||||||
$routes->get('(:num)', 'Test\TestMapDetailController::show/$1');
|
|
||||||
$routes->post('/', 'Test\TestMapDetailController::create');
|
|
||||||
$routes->patch('(:segment)', 'Test\TestMapDetailController::update/$1');
|
|
||||||
$routes->delete('/', 'Test\TestMapDetailController::delete');
|
|
||||||
$routes->get('by-testmap/(:num)', 'Test\TestMapDetailController::showByTestMap/$1');
|
|
||||||
$routes->post('batch', 'Test\TestMapDetailController::batchCreate');
|
|
||||||
$routes->patch('batch', 'Test\TestMapDetailController::batchUpdate');
|
|
||||||
$routes->delete('batch', 'Test\TestMapDetailController::batchDelete');
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
// Orders
|
|
||||||
$routes->group('ordertest', function ($routes) {
|
|
||||||
$routes->get('/', 'OrderTestController::index');
|
|
||||||
$routes->get('(:any)', 'OrderTestController::show/$1');
|
|
||||||
$routes->post('/', 'OrderTestController::create');
|
|
||||||
$routes->patch('(:any)', 'OrderTestController::update/$1');
|
|
||||||
$routes->delete('/', 'OrderTestController::delete');
|
|
||||||
$routes->post('status', 'OrderTestController::updateStatus');
|
|
||||||
});
|
|
||||||
|
|
||||||
// Rules
|
|
||||||
$routes->group('rule', ['filter' => 'auth'], function ($routes) {
|
|
||||||
$routes->get('/', 'Rule\RuleController::index');
|
|
||||||
$routes->get('(:num)', 'Rule\RuleController::show/$1');
|
|
||||||
$routes->post('/', 'Rule\RuleController::create');
|
|
||||||
$routes->patch('(:any)', 'Rule\RuleController::update/$1');
|
|
||||||
$routes->delete('(:num)', 'Rule\RuleController::delete/$1');
|
|
||||||
$routes->post('validate', 'Rule\RuleController::validateExpr');
|
|
||||||
$routes->post('compile', 'Rule\RuleController::compile');
|
|
||||||
});
|
|
||||||
|
|
||||||
|
use CodeIgniter\Router\RouteCollection;
|
||||||
// Demo/Test Routes (No Auth)
|
|
||||||
$routes->group('api/demo', function ($routes) {
|
/**
|
||||||
$routes->post('order', 'Test\DemoOrderController::createDemoOrder');
|
* @var RouteCollection $routes
|
||||||
$routes->get('order', 'Test\DemoOrderController::listDemoOrders');
|
*/
|
||||||
});
|
$routes->options('(:any)', function() {
|
||||||
|
return '';
|
||||||
// Edge API - Integration with tiny-edge
|
});
|
||||||
$routes->group('edge', function ($routes) {
|
$routes->get('/', 'Home::index');
|
||||||
$routes->post('result', 'EdgeController::results');
|
|
||||||
$routes->get('order', 'EdgeController::orders');
|
$routes->post('/auth/login/', 'Auth::login');
|
||||||
$routes->post('order/(:num)/ack', 'EdgeController::ack/$1');
|
$routes->post('/auth/change_pass/', 'Auth::change_pass');
|
||||||
$routes->post('status', 'EdgeController::status');
|
$routes->post('/auth/register/', 'Auth::register');
|
||||||
});
|
|
||||||
});
|
$routes->get('/patient', 'Patient::index');
|
||||||
|
$routes->post('/patient', 'Patient::create');
|
||||||
// Khusus
|
$routes->delete('/patient/(:any)', 'Patient::delete/$1');
|
||||||
/*
|
$routes->patch('/patient/(:num)', 'Patient::update/$1');
|
||||||
$routes->get('/api/zones', 'Zones::index');
|
|
||||||
$routes->get('/api/zones/synchronize', 'Zones::synchronize');
|
$routes->get('/patient/race', 'PatientRace::index');
|
||||||
$routes->get('/api/zones/provinces', 'Zones::getProvinces');
|
$routes->get('/patient/country', 'PatientCountry::index');
|
||||||
$routes->get('/api/zones/cities', 'Zones::getCities');
|
$routes->get('/patient/religion', 'PatientReligion::index');
|
||||||
*/
|
|
||||||
|
|
||||||
280
app/Config/Routing.php
Executable file → Normal file
280
app/Config/Routing.php
Executable file → Normal file
@ -1,140 +1,140 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This file is part of CodeIgniter 4 framework.
|
* This file is part of CodeIgniter 4 framework.
|
||||||
*
|
*
|
||||||
* (c) CodeIgniter Foundation <admin@codeigniter.com>
|
* (c) CodeIgniter Foundation <admin@codeigniter.com>
|
||||||
*
|
*
|
||||||
* For the full copyright and license information, please view
|
* For the full copyright and license information, please view
|
||||||
* the LICENSE file that was distributed with this source code.
|
* the LICENSE file that was distributed with this source code.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Config;
|
namespace Config;
|
||||||
|
|
||||||
use CodeIgniter\Config\Routing as BaseRouting;
|
use CodeIgniter\Config\Routing as BaseRouting;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Routing configuration
|
* Routing configuration
|
||||||
*/
|
*/
|
||||||
class Routing extends BaseRouting
|
class Routing extends BaseRouting
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* For Defined Routes.
|
* For Defined Routes.
|
||||||
* An array of files that contain route definitions.
|
* An array of files that contain route definitions.
|
||||||
* Route files are read in order, with the first match
|
* Route files are read in order, with the first match
|
||||||
* found taking precedence.
|
* found taking precedence.
|
||||||
*
|
*
|
||||||
* Default: APPPATH . 'Config/Routes.php'
|
* Default: APPPATH . 'Config/Routes.php'
|
||||||
*
|
*
|
||||||
* @var list<string>
|
* @var list<string>
|
||||||
*/
|
*/
|
||||||
public array $routeFiles = [
|
public array $routeFiles = [
|
||||||
APPPATH . 'Config/Routes.php',
|
APPPATH . 'Config/Routes.php',
|
||||||
];
|
];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* For Defined Routes and Auto Routing.
|
* For Defined Routes and Auto Routing.
|
||||||
* The default namespace to use for Controllers when no other
|
* The default namespace to use for Controllers when no other
|
||||||
* namespace has been specified.
|
* namespace has been specified.
|
||||||
*
|
*
|
||||||
* Default: 'App\Controllers'
|
* Default: 'App\Controllers'
|
||||||
*/
|
*/
|
||||||
public string $defaultNamespace = 'App\Controllers';
|
public string $defaultNamespace = 'App\Controllers';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* For Auto Routing.
|
* For Auto Routing.
|
||||||
* The default controller to use when no other controller has been
|
* The default controller to use when no other controller has been
|
||||||
* specified.
|
* specified.
|
||||||
*
|
*
|
||||||
* Default: 'Home'
|
* Default: 'Home'
|
||||||
*/
|
*/
|
||||||
public string $defaultController = 'Home';
|
public string $defaultController = 'Home';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* For Defined Routes and Auto Routing.
|
* For Defined Routes and Auto Routing.
|
||||||
* The default method to call on the controller when no other
|
* The default method to call on the controller when no other
|
||||||
* method has been set in the route.
|
* method has been set in the route.
|
||||||
*
|
*
|
||||||
* Default: 'index'
|
* Default: 'index'
|
||||||
*/
|
*/
|
||||||
public string $defaultMethod = 'index';
|
public string $defaultMethod = 'index';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* For Auto Routing.
|
* For Auto Routing.
|
||||||
* Whether to translate dashes in URIs for controller/method to underscores.
|
* Whether to translate dashes in URIs for controller/method to underscores.
|
||||||
* Primarily useful when using the auto-routing.
|
* Primarily useful when using the auto-routing.
|
||||||
*
|
*
|
||||||
* Default: false
|
* Default: false
|
||||||
*/
|
*/
|
||||||
public bool $translateURIDashes = false;
|
public bool $translateURIDashes = false;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the class/method that should be called if routing doesn't
|
* Sets the class/method that should be called if routing doesn't
|
||||||
* find a match. It can be the controller/method name like: Users::index
|
* find a match. It can be the controller/method name like: Users::index
|
||||||
*
|
*
|
||||||
* This setting is passed to the Router class and handled there.
|
* This setting is passed to the Router class and handled there.
|
||||||
*
|
*
|
||||||
* If you want to use a closure, you will have to set it in the
|
* If you want to use a closure, you will have to set it in the
|
||||||
* routes file by calling:
|
* routes file by calling:
|
||||||
*
|
*
|
||||||
* $routes->set404Override(function() {
|
* $routes->set404Override(function() {
|
||||||
* // Do something here
|
* // Do something here
|
||||||
* });
|
* });
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* public $override404 = 'App\Errors::show404';
|
* public $override404 = 'App\Errors::show404';
|
||||||
*/
|
*/
|
||||||
public ?string $override404 = null;
|
public ?string $override404 = null;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* If TRUE, the system will attempt to match the URI against
|
* If TRUE, the system will attempt to match the URI against
|
||||||
* Controllers by matching each segment against folders/files
|
* Controllers by matching each segment against folders/files
|
||||||
* in APPPATH/Controllers, when a match wasn't found against
|
* in APPPATH/Controllers, when a match wasn't found against
|
||||||
* defined routes.
|
* defined routes.
|
||||||
*
|
*
|
||||||
* If FALSE, will stop searching and do NO automatic routing.
|
* If FALSE, will stop searching and do NO automatic routing.
|
||||||
*/
|
*/
|
||||||
public bool $autoRoute = false;
|
public bool $autoRoute = false;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* For Defined Routes.
|
* For Defined Routes.
|
||||||
* If TRUE, will enable the use of the 'prioritize' option
|
* If TRUE, will enable the use of the 'prioritize' option
|
||||||
* when defining routes.
|
* when defining routes.
|
||||||
*
|
*
|
||||||
* Default: false
|
* Default: false
|
||||||
*/
|
*/
|
||||||
public bool $prioritize = false;
|
public bool $prioritize = false;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* For Defined Routes.
|
* For Defined Routes.
|
||||||
* If TRUE, matched multiple URI segments will be passed as one parameter.
|
* If TRUE, matched multiple URI segments will be passed as one parameter.
|
||||||
*
|
*
|
||||||
* Default: false
|
* Default: false
|
||||||
*/
|
*/
|
||||||
public bool $multipleSegmentsOneParam = false;
|
public bool $multipleSegmentsOneParam = false;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* For Auto Routing (Improved).
|
* For Auto Routing (Improved).
|
||||||
* Map of URI segments and namespaces.
|
* Map of URI segments and namespaces.
|
||||||
*
|
*
|
||||||
* The key is the first URI segment. The value is the controller namespace.
|
* The key is the first URI segment. The value is the controller namespace.
|
||||||
* E.g.,
|
* E.g.,
|
||||||
* [
|
* [
|
||||||
* 'blog' => 'Acme\Blog\Controllers',
|
* 'blog' => 'Acme\Blog\Controllers',
|
||||||
* ]
|
* ]
|
||||||
*
|
*
|
||||||
* @var array<string, string>
|
* @var array<string, string>
|
||||||
*/
|
*/
|
||||||
public array $moduleRoutes = [];
|
public array $moduleRoutes = [];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* For Auto Routing (Improved).
|
* For Auto Routing (Improved).
|
||||||
* Whether to translate dashes in URIs for controller/method to CamelCase.
|
* Whether to translate dashes in URIs for controller/method to CamelCase.
|
||||||
* E.g., blog-controller -> BlogController
|
* E.g., blog-controller -> BlogController
|
||||||
*
|
*
|
||||||
* If you enable this, $translateURIDashes is ignored.
|
* If you enable this, $translateURIDashes is ignored.
|
||||||
*
|
*
|
||||||
* Default: false
|
* Default: false
|
||||||
*/
|
*/
|
||||||
public bool $translateUriToCamelCase = true;
|
public bool $translateUriToCamelCase = true;
|
||||||
}
|
}
|
||||||
|
|||||||
172
app/Config/Security.php
Executable file → Normal file
172
app/Config/Security.php
Executable file → Normal file
@ -1,86 +1,86 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Config;
|
namespace Config;
|
||||||
|
|
||||||
use CodeIgniter\Config\BaseConfig;
|
use CodeIgniter\Config\BaseConfig;
|
||||||
|
|
||||||
class Security extends BaseConfig
|
class Security extends BaseConfig
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* CSRF Protection Method
|
* CSRF Protection Method
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* Protection Method for Cross Site Request Forgery protection.
|
* Protection Method for Cross Site Request Forgery protection.
|
||||||
*
|
*
|
||||||
* @var string 'cookie' or 'session'
|
* @var string 'cookie' or 'session'
|
||||||
*/
|
*/
|
||||||
public string $csrfProtection = 'cookie';
|
public string $csrfProtection = 'cookie';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* CSRF Token Randomization
|
* CSRF Token Randomization
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* Randomize the CSRF Token for added security.
|
* Randomize the CSRF Token for added security.
|
||||||
*/
|
*/
|
||||||
public bool $tokenRandomize = false;
|
public bool $tokenRandomize = false;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* CSRF Token Name
|
* CSRF Token Name
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* Token name for Cross Site Request Forgery protection.
|
* Token name for Cross Site Request Forgery protection.
|
||||||
*/
|
*/
|
||||||
public string $tokenName = 'csrf_test_name';
|
public string $tokenName = 'csrf_test_name';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* CSRF Header Name
|
* CSRF Header Name
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* Header name for Cross Site Request Forgery protection.
|
* Header name for Cross Site Request Forgery protection.
|
||||||
*/
|
*/
|
||||||
public string $headerName = 'X-CSRF-TOKEN';
|
public string $headerName = 'X-CSRF-TOKEN';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* CSRF Cookie Name
|
* CSRF Cookie Name
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* Cookie name for Cross Site Request Forgery protection.
|
* Cookie name for Cross Site Request Forgery protection.
|
||||||
*/
|
*/
|
||||||
public string $cookieName = 'csrf_cookie_name';
|
public string $cookieName = 'csrf_cookie_name';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* CSRF Expires
|
* CSRF Expires
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* Expiration time for Cross Site Request Forgery protection cookie.
|
* Expiration time for Cross Site Request Forgery protection cookie.
|
||||||
*
|
*
|
||||||
* Defaults to two hours (in seconds).
|
* Defaults to two hours (in seconds).
|
||||||
*/
|
*/
|
||||||
public int $expires = 7200;
|
public int $expires = 7200;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* CSRF Regenerate
|
* CSRF Regenerate
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* Regenerate CSRF Token on every submission.
|
* Regenerate CSRF Token on every submission.
|
||||||
*/
|
*/
|
||||||
public bool $regenerate = true;
|
public bool $regenerate = true;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* CSRF Redirect
|
* CSRF Redirect
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* Redirect to previous page with error on failure.
|
* Redirect to previous page with error on failure.
|
||||||
*
|
*
|
||||||
* @see https://codeigniter4.github.io/userguide/libraries/security.html#redirection-on-failure
|
* @see https://codeigniter4.github.io/userguide/libraries/security.html#redirection-on-failure
|
||||||
*/
|
*/
|
||||||
public bool $redirect = (ENVIRONMENT === 'production');
|
public bool $redirect = (ENVIRONMENT === 'production');
|
||||||
}
|
}
|
||||||
|
|||||||
64
app/Config/Services.php
Executable file → Normal file
64
app/Config/Services.php
Executable file → Normal file
@ -1,32 +1,32 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Config;
|
namespace Config;
|
||||||
|
|
||||||
use CodeIgniter\Config\BaseService;
|
use CodeIgniter\Config\BaseService;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Services Configuration file.
|
* Services Configuration file.
|
||||||
*
|
*
|
||||||
* Services are simply other classes/libraries that the system uses
|
* Services are simply other classes/libraries that the system uses
|
||||||
* to do its job. This is used by CodeIgniter to allow the core of the
|
* to do its job. This is used by CodeIgniter to allow the core of the
|
||||||
* framework to be swapped out easily without affecting the usage within
|
* framework to be swapped out easily without affecting the usage within
|
||||||
* the rest of your application.
|
* the rest of your application.
|
||||||
*
|
*
|
||||||
* This file holds any application-specific services, or service overrides
|
* This file holds any application-specific services, or service overrides
|
||||||
* that you might need. An example has been included with the general
|
* that you might need. An example has been included with the general
|
||||||
* method format you should use for your service methods. For more examples,
|
* method format you should use for your service methods. For more examples,
|
||||||
* see the core Services file at system/Config/Services.php.
|
* see the core Services file at system/Config/Services.php.
|
||||||
*/
|
*/
|
||||||
class Services extends BaseService
|
class Services extends BaseService
|
||||||
{
|
{
|
||||||
/*
|
/*
|
||||||
* public static function example($getShared = true)
|
* public static function example($getShared = true)
|
||||||
* {
|
* {
|
||||||
* if ($getShared) {
|
* if ($getShared) {
|
||||||
* return static::getSharedInstance('example');
|
* return static::getSharedInstance('example');
|
||||||
* }
|
* }
|
||||||
*
|
*
|
||||||
* return new \CodeIgniter\Example();
|
* return new \CodeIgniter\Example();
|
||||||
* }
|
* }
|
||||||
*/
|
*/
|
||||||
}
|
}
|
||||||
|
|||||||
254
app/Config/Session.php
Executable file → Normal file
254
app/Config/Session.php
Executable file → Normal file
@ -1,127 +1,127 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Config;
|
namespace Config;
|
||||||
|
|
||||||
use CodeIgniter\Config\BaseConfig;
|
use CodeIgniter\Config\BaseConfig;
|
||||||
use CodeIgniter\Session\Handlers\BaseHandler;
|
use CodeIgniter\Session\Handlers\BaseHandler;
|
||||||
use CodeIgniter\Session\Handlers\FileHandler;
|
use CodeIgniter\Session\Handlers\FileHandler;
|
||||||
|
|
||||||
class Session extends BaseConfig
|
class Session extends BaseConfig
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* Session Driver
|
* Session Driver
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* The session storage driver to use:
|
* The session storage driver to use:
|
||||||
* - `CodeIgniter\Session\Handlers\FileHandler`
|
* - `CodeIgniter\Session\Handlers\FileHandler`
|
||||||
* - `CodeIgniter\Session\Handlers\DatabaseHandler`
|
* - `CodeIgniter\Session\Handlers\DatabaseHandler`
|
||||||
* - `CodeIgniter\Session\Handlers\MemcachedHandler`
|
* - `CodeIgniter\Session\Handlers\MemcachedHandler`
|
||||||
* - `CodeIgniter\Session\Handlers\RedisHandler`
|
* - `CodeIgniter\Session\Handlers\RedisHandler`
|
||||||
*
|
*
|
||||||
* @var class-string<BaseHandler>
|
* @var class-string<BaseHandler>
|
||||||
*/
|
*/
|
||||||
public string $driver = FileHandler::class;
|
public string $driver = FileHandler::class;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* Session Cookie Name
|
* Session Cookie Name
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* The session cookie name, must contain only [0-9a-z_-] characters
|
* The session cookie name, must contain only [0-9a-z_-] characters
|
||||||
*/
|
*/
|
||||||
public string $cookieName = 'ci_session';
|
public string $cookieName = 'ci_session';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* Session Expiration
|
* Session Expiration
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* The number of SECONDS you want the session to last.
|
* The number of SECONDS you want the session to last.
|
||||||
* Setting to 0 (zero) means expire when the browser is closed.
|
* Setting to 0 (zero) means expire when the browser is closed.
|
||||||
*/
|
*/
|
||||||
public int $expiration = 7200;
|
public int $expiration = 7200;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* Session Save Path
|
* Session Save Path
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* The location to save sessions to and is driver dependent.
|
* The location to save sessions to and is driver dependent.
|
||||||
*
|
*
|
||||||
* For the 'files' driver, it's a path to a writable directory.
|
* For the 'files' driver, it's a path to a writable directory.
|
||||||
* WARNING: Only absolute paths are supported!
|
* WARNING: Only absolute paths are supported!
|
||||||
*
|
*
|
||||||
* For the 'database' driver, it's a table name.
|
* For the 'database' driver, it's a table name.
|
||||||
* Please read up the manual for the format with other session drivers.
|
* Please read up the manual for the format with other session drivers.
|
||||||
*
|
*
|
||||||
* IMPORTANT: You are REQUIRED to set a valid save path!
|
* IMPORTANT: You are REQUIRED to set a valid save path!
|
||||||
*/
|
*/
|
||||||
public string $savePath = WRITEPATH . 'session';
|
public string $savePath = WRITEPATH . 'session';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* Session Match IP
|
* Session Match IP
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* Whether to match the user's IP address when reading the session data.
|
* Whether to match the user's IP address when reading the session data.
|
||||||
*
|
*
|
||||||
* WARNING: If you're using the database driver, don't forget to update
|
* WARNING: If you're using the database driver, don't forget to update
|
||||||
* your session table's PRIMARY KEY when changing this setting.
|
* your session table's PRIMARY KEY when changing this setting.
|
||||||
*/
|
*/
|
||||||
public bool $matchIP = false;
|
public bool $matchIP = false;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* Session Time to Update
|
* Session Time to Update
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* How many seconds between CI regenerating the session ID.
|
* How many seconds between CI regenerating the session ID.
|
||||||
*/
|
*/
|
||||||
public int $timeToUpdate = 300;
|
public int $timeToUpdate = 300;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* Session Regenerate Destroy
|
* Session Regenerate Destroy
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* Whether to destroy session data associated with the old session ID
|
* Whether to destroy session data associated with the old session ID
|
||||||
* when auto-regenerating the session ID. When set to FALSE, the data
|
* when auto-regenerating the session ID. When set to FALSE, the data
|
||||||
* will be later deleted by the garbage collector.
|
* will be later deleted by the garbage collector.
|
||||||
*/
|
*/
|
||||||
public bool $regenerateDestroy = false;
|
public bool $regenerateDestroy = false;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* Session Database Group
|
* Session Database Group
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* DB Group for the database session.
|
* DB Group for the database session.
|
||||||
*/
|
*/
|
||||||
public ?string $DBGroup = null;
|
public ?string $DBGroup = null;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* Lock Retry Interval (microseconds)
|
* Lock Retry Interval (microseconds)
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* This is used for RedisHandler.
|
* This is used for RedisHandler.
|
||||||
*
|
*
|
||||||
* Time (microseconds) to wait if lock cannot be acquired.
|
* Time (microseconds) to wait if lock cannot be acquired.
|
||||||
* The default is 100,000 microseconds (= 0.1 seconds).
|
* The default is 100,000 microseconds (= 0.1 seconds).
|
||||||
*/
|
*/
|
||||||
public int $lockRetryInterval = 100_000;
|
public int $lockRetryInterval = 100_000;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* Lock Max Retries
|
* Lock Max Retries
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* This is used for RedisHandler.
|
* This is used for RedisHandler.
|
||||||
*
|
*
|
||||||
* Maximum number of lock acquisition attempts.
|
* Maximum number of lock acquisition attempts.
|
||||||
* The default is 300 times. That is lock timeout is about 30 (0.1 * 300)
|
* The default is 300 times. That is lock timeout is about 30 (0.1 * 300)
|
||||||
* seconds.
|
* seconds.
|
||||||
*/
|
*/
|
||||||
public int $lockMaxRetries = 300;
|
public int $lockMaxRetries = 300;
|
||||||
}
|
}
|
||||||
|
|||||||
244
app/Config/Toolbar.php
Executable file → Normal file
244
app/Config/Toolbar.php
Executable file → Normal file
@ -1,122 +1,122 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Config;
|
namespace Config;
|
||||||
|
|
||||||
use CodeIgniter\Config\BaseConfig;
|
use CodeIgniter\Config\BaseConfig;
|
||||||
use CodeIgniter\Debug\Toolbar\Collectors\Database;
|
use CodeIgniter\Debug\Toolbar\Collectors\Database;
|
||||||
use CodeIgniter\Debug\Toolbar\Collectors\Events;
|
use CodeIgniter\Debug\Toolbar\Collectors\Events;
|
||||||
use CodeIgniter\Debug\Toolbar\Collectors\Files;
|
use CodeIgniter\Debug\Toolbar\Collectors\Files;
|
||||||
use CodeIgniter\Debug\Toolbar\Collectors\Logs;
|
use CodeIgniter\Debug\Toolbar\Collectors\Logs;
|
||||||
use CodeIgniter\Debug\Toolbar\Collectors\Routes;
|
use CodeIgniter\Debug\Toolbar\Collectors\Routes;
|
||||||
use CodeIgniter\Debug\Toolbar\Collectors\Timers;
|
use CodeIgniter\Debug\Toolbar\Collectors\Timers;
|
||||||
use CodeIgniter\Debug\Toolbar\Collectors\Views;
|
use CodeIgniter\Debug\Toolbar\Collectors\Views;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* Debug Toolbar
|
* Debug Toolbar
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* The Debug Toolbar provides a way to see information about the performance
|
* The Debug Toolbar provides a way to see information about the performance
|
||||||
* and state of your application during that page display. By default it will
|
* and state of your application during that page display. By default it will
|
||||||
* NOT be displayed under production environments, and will only display if
|
* NOT be displayed under production environments, and will only display if
|
||||||
* `CI_DEBUG` is true, since if it's not, there's not much to display anyway.
|
* `CI_DEBUG` is true, since if it's not, there's not much to display anyway.
|
||||||
*/
|
*/
|
||||||
class Toolbar extends BaseConfig
|
class Toolbar extends BaseConfig
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* Toolbar Collectors
|
* Toolbar Collectors
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* List of toolbar collectors that will be called when Debug Toolbar
|
* List of toolbar collectors that will be called when Debug Toolbar
|
||||||
* fires up and collects data from.
|
* fires up and collects data from.
|
||||||
*
|
*
|
||||||
* @var list<class-string>
|
* @var list<class-string>
|
||||||
*/
|
*/
|
||||||
public array $collectors = [
|
public array $collectors = [
|
||||||
Timers::class,
|
Timers::class,
|
||||||
Database::class,
|
Database::class,
|
||||||
Logs::class,
|
Logs::class,
|
||||||
Views::class,
|
Views::class,
|
||||||
// \CodeIgniter\Debug\Toolbar\Collectors\Cache::class,
|
// \CodeIgniter\Debug\Toolbar\Collectors\Cache::class,
|
||||||
Files::class,
|
Files::class,
|
||||||
Routes::class,
|
Routes::class,
|
||||||
Events::class,
|
Events::class,
|
||||||
];
|
];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* Collect Var Data
|
* Collect Var Data
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* If set to false var data from the views will not be collected. Useful to
|
* If set to false var data from the views will not be collected. Useful to
|
||||||
* avoid high memory usage when there are lots of data passed to the view.
|
* avoid high memory usage when there are lots of data passed to the view.
|
||||||
*/
|
*/
|
||||||
public bool $collectVarData = true;
|
public bool $collectVarData = true;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* Max History
|
* Max History
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* `$maxHistory` sets a limit on the number of past requests that are stored,
|
* `$maxHistory` sets a limit on the number of past requests that are stored,
|
||||||
* helping to conserve file space used to store them. You can set it to
|
* helping to conserve file space used to store them. You can set it to
|
||||||
* 0 (zero) to not have any history stored, or -1 for unlimited history.
|
* 0 (zero) to not have any history stored, or -1 for unlimited history.
|
||||||
*/
|
*/
|
||||||
public int $maxHistory = 20;
|
public int $maxHistory = 20;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* Toolbar Views Path
|
* Toolbar Views Path
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* The full path to the the views that are used by the toolbar.
|
* The full path to the the views that are used by the toolbar.
|
||||||
* This MUST have a trailing slash.
|
* This MUST have a trailing slash.
|
||||||
*/
|
*/
|
||||||
public string $viewsPath = SYSTEMPATH . 'Debug/Toolbar/Views/';
|
public string $viewsPath = SYSTEMPATH . 'Debug/Toolbar/Views/';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* Max Queries
|
* Max Queries
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* If the Database Collector is enabled, it will log every query that the
|
* If the Database Collector is enabled, it will log every query that the
|
||||||
* the system generates so they can be displayed on the toolbar's timeline
|
* the system generates so they can be displayed on the toolbar's timeline
|
||||||
* and in the query log. This can lead to memory issues in some instances
|
* and in the query log. This can lead to memory issues in some instances
|
||||||
* with hundreds of queries.
|
* with hundreds of queries.
|
||||||
*
|
*
|
||||||
* `$maxQueries` defines the maximum amount of queries that will be stored.
|
* `$maxQueries` defines the maximum amount of queries that will be stored.
|
||||||
*/
|
*/
|
||||||
public int $maxQueries = 100;
|
public int $maxQueries = 100;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* Watched Directories
|
* Watched Directories
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* Contains an array of directories that will be watched for changes and
|
* Contains an array of directories that will be watched for changes and
|
||||||
* used to determine if the hot-reload feature should reload the page or not.
|
* used to determine if the hot-reload feature should reload the page or not.
|
||||||
* We restrict the values to keep performance as high as possible.
|
* We restrict the values to keep performance as high as possible.
|
||||||
*
|
*
|
||||||
* NOTE: The ROOTPATH will be prepended to all values.
|
* NOTE: The ROOTPATH will be prepended to all values.
|
||||||
*
|
*
|
||||||
* @var list<string>
|
* @var list<string>
|
||||||
*/
|
*/
|
||||||
public array $watchedDirectories = [
|
public array $watchedDirectories = [
|
||||||
'app',
|
'app',
|
||||||
];
|
];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
* Watched File Extensions
|
* Watched File Extensions
|
||||||
* --------------------------------------------------------------------------
|
* --------------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* Contains an array of file extensions that will be watched for changes and
|
* Contains an array of file extensions that will be watched for changes and
|
||||||
* used to determine if the hot-reload feature should reload the page or not.
|
* used to determine if the hot-reload feature should reload the page or not.
|
||||||
*
|
*
|
||||||
* @var list<string>
|
* @var list<string>
|
||||||
*/
|
*/
|
||||||
public array $watchedExtensions = [
|
public array $watchedExtensions = [
|
||||||
'php', 'css', 'js', 'html', 'svg', 'json', 'env',
|
'php', 'css', 'js', 'html', 'svg', 'json', 'env',
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
504
app/Config/UserAgents.php
Executable file → Normal file
504
app/Config/UserAgents.php
Executable file → Normal file
@ -1,252 +1,252 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Config;
|
namespace Config;
|
||||||
|
|
||||||
use CodeIgniter\Config\BaseConfig;
|
use CodeIgniter\Config\BaseConfig;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* -------------------------------------------------------------------
|
* -------------------------------------------------------------------
|
||||||
* User Agents
|
* User Agents
|
||||||
* -------------------------------------------------------------------
|
* -------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* This file contains four arrays of user agent data. It is used by the
|
* This file contains four arrays of user agent data. It is used by the
|
||||||
* User Agent Class to help identify browser, platform, robot, and
|
* User Agent Class to help identify browser, platform, robot, and
|
||||||
* mobile device data. The array keys are used to identify the device
|
* mobile device data. The array keys are used to identify the device
|
||||||
* and the array values are used to set the actual name of the item.
|
* and the array values are used to set the actual name of the item.
|
||||||
*/
|
*/
|
||||||
class UserAgents extends BaseConfig
|
class UserAgents extends BaseConfig
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* -------------------------------------------------------------------
|
* -------------------------------------------------------------------
|
||||||
* OS Platforms
|
* OS Platforms
|
||||||
* -------------------------------------------------------------------
|
* -------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* @var array<string, string>
|
* @var array<string, string>
|
||||||
*/
|
*/
|
||||||
public array $platforms = [
|
public array $platforms = [
|
||||||
'windows nt 10.0' => 'Windows 10',
|
'windows nt 10.0' => 'Windows 10',
|
||||||
'windows nt 6.3' => 'Windows 8.1',
|
'windows nt 6.3' => 'Windows 8.1',
|
||||||
'windows nt 6.2' => 'Windows 8',
|
'windows nt 6.2' => 'Windows 8',
|
||||||
'windows nt 6.1' => 'Windows 7',
|
'windows nt 6.1' => 'Windows 7',
|
||||||
'windows nt 6.0' => 'Windows Vista',
|
'windows nt 6.0' => 'Windows Vista',
|
||||||
'windows nt 5.2' => 'Windows 2003',
|
'windows nt 5.2' => 'Windows 2003',
|
||||||
'windows nt 5.1' => 'Windows XP',
|
'windows nt 5.1' => 'Windows XP',
|
||||||
'windows nt 5.0' => 'Windows 2000',
|
'windows nt 5.0' => 'Windows 2000',
|
||||||
'windows nt 4.0' => 'Windows NT 4.0',
|
'windows nt 4.0' => 'Windows NT 4.0',
|
||||||
'winnt4.0' => 'Windows NT 4.0',
|
'winnt4.0' => 'Windows NT 4.0',
|
||||||
'winnt 4.0' => 'Windows NT',
|
'winnt 4.0' => 'Windows NT',
|
||||||
'winnt' => 'Windows NT',
|
'winnt' => 'Windows NT',
|
||||||
'windows 98' => 'Windows 98',
|
'windows 98' => 'Windows 98',
|
||||||
'win98' => 'Windows 98',
|
'win98' => 'Windows 98',
|
||||||
'windows 95' => 'Windows 95',
|
'windows 95' => 'Windows 95',
|
||||||
'win95' => 'Windows 95',
|
'win95' => 'Windows 95',
|
||||||
'windows phone' => 'Windows Phone',
|
'windows phone' => 'Windows Phone',
|
||||||
'windows' => 'Unknown Windows OS',
|
'windows' => 'Unknown Windows OS',
|
||||||
'android' => 'Android',
|
'android' => 'Android',
|
||||||
'blackberry' => 'BlackBerry',
|
'blackberry' => 'BlackBerry',
|
||||||
'iphone' => 'iOS',
|
'iphone' => 'iOS',
|
||||||
'ipad' => 'iOS',
|
'ipad' => 'iOS',
|
||||||
'ipod' => 'iOS',
|
'ipod' => 'iOS',
|
||||||
'os x' => 'Mac OS X',
|
'os x' => 'Mac OS X',
|
||||||
'ppc mac' => 'Power PC Mac',
|
'ppc mac' => 'Power PC Mac',
|
||||||
'freebsd' => 'FreeBSD',
|
'freebsd' => 'FreeBSD',
|
||||||
'ppc' => 'Macintosh',
|
'ppc' => 'Macintosh',
|
||||||
'linux' => 'Linux',
|
'linux' => 'Linux',
|
||||||
'debian' => 'Debian',
|
'debian' => 'Debian',
|
||||||
'sunos' => 'Sun Solaris',
|
'sunos' => 'Sun Solaris',
|
||||||
'beos' => 'BeOS',
|
'beos' => 'BeOS',
|
||||||
'apachebench' => 'ApacheBench',
|
'apachebench' => 'ApacheBench',
|
||||||
'aix' => 'AIX',
|
'aix' => 'AIX',
|
||||||
'irix' => 'Irix',
|
'irix' => 'Irix',
|
||||||
'osf' => 'DEC OSF',
|
'osf' => 'DEC OSF',
|
||||||
'hp-ux' => 'HP-UX',
|
'hp-ux' => 'HP-UX',
|
||||||
'netbsd' => 'NetBSD',
|
'netbsd' => 'NetBSD',
|
||||||
'bsdi' => 'BSDi',
|
'bsdi' => 'BSDi',
|
||||||
'openbsd' => 'OpenBSD',
|
'openbsd' => 'OpenBSD',
|
||||||
'gnu' => 'GNU/Linux',
|
'gnu' => 'GNU/Linux',
|
||||||
'unix' => 'Unknown Unix OS',
|
'unix' => 'Unknown Unix OS',
|
||||||
'symbian' => 'Symbian OS',
|
'symbian' => 'Symbian OS',
|
||||||
];
|
];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* -------------------------------------------------------------------
|
* -------------------------------------------------------------------
|
||||||
* Browsers
|
* Browsers
|
||||||
* -------------------------------------------------------------------
|
* -------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* The order of this array should NOT be changed. Many browsers return
|
* The order of this array should NOT be changed. Many browsers return
|
||||||
* multiple browser types so we want to identify the subtype first.
|
* multiple browser types so we want to identify the subtype first.
|
||||||
*
|
*
|
||||||
* @var array<string, string>
|
* @var array<string, string>
|
||||||
*/
|
*/
|
||||||
public array $browsers = [
|
public array $browsers = [
|
||||||
'OPR' => 'Opera',
|
'OPR' => 'Opera',
|
||||||
'Flock' => 'Flock',
|
'Flock' => 'Flock',
|
||||||
'Edge' => 'Spartan',
|
'Edge' => 'Spartan',
|
||||||
'Edg' => 'Edge',
|
'Edg' => 'Edge',
|
||||||
'Chrome' => 'Chrome',
|
'Chrome' => 'Chrome',
|
||||||
// Opera 10+ always reports Opera/9.80 and appends Version/<real version> to the user agent string
|
// Opera 10+ always reports Opera/9.80 and appends Version/<real version> to the user agent string
|
||||||
'Opera.*?Version' => 'Opera',
|
'Opera.*?Version' => 'Opera',
|
||||||
'Opera' => 'Opera',
|
'Opera' => 'Opera',
|
||||||
'MSIE' => 'Internet Explorer',
|
'MSIE' => 'Internet Explorer',
|
||||||
'Internet Explorer' => 'Internet Explorer',
|
'Internet Explorer' => 'Internet Explorer',
|
||||||
'Trident.* rv' => 'Internet Explorer',
|
'Trident.* rv' => 'Internet Explorer',
|
||||||
'Shiira' => 'Shiira',
|
'Shiira' => 'Shiira',
|
||||||
'Firefox' => 'Firefox',
|
'Firefox' => 'Firefox',
|
||||||
'Chimera' => 'Chimera',
|
'Chimera' => 'Chimera',
|
||||||
'Phoenix' => 'Phoenix',
|
'Phoenix' => 'Phoenix',
|
||||||
'Firebird' => 'Firebird',
|
'Firebird' => 'Firebird',
|
||||||
'Camino' => 'Camino',
|
'Camino' => 'Camino',
|
||||||
'Netscape' => 'Netscape',
|
'Netscape' => 'Netscape',
|
||||||
'OmniWeb' => 'OmniWeb',
|
'OmniWeb' => 'OmniWeb',
|
||||||
'Safari' => 'Safari',
|
'Safari' => 'Safari',
|
||||||
'Mozilla' => 'Mozilla',
|
'Mozilla' => 'Mozilla',
|
||||||
'Konqueror' => 'Konqueror',
|
'Konqueror' => 'Konqueror',
|
||||||
'icab' => 'iCab',
|
'icab' => 'iCab',
|
||||||
'Lynx' => 'Lynx',
|
'Lynx' => 'Lynx',
|
||||||
'Links' => 'Links',
|
'Links' => 'Links',
|
||||||
'hotjava' => 'HotJava',
|
'hotjava' => 'HotJava',
|
||||||
'amaya' => 'Amaya',
|
'amaya' => 'Amaya',
|
||||||
'IBrowse' => 'IBrowse',
|
'IBrowse' => 'IBrowse',
|
||||||
'Maxthon' => 'Maxthon',
|
'Maxthon' => 'Maxthon',
|
||||||
'Ubuntu' => 'Ubuntu Web Browser',
|
'Ubuntu' => 'Ubuntu Web Browser',
|
||||||
'Vivaldi' => 'Vivaldi',
|
'Vivaldi' => 'Vivaldi',
|
||||||
];
|
];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* -------------------------------------------------------------------
|
* -------------------------------------------------------------------
|
||||||
* Mobiles
|
* Mobiles
|
||||||
* -------------------------------------------------------------------
|
* -------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* @var array<string, string>
|
* @var array<string, string>
|
||||||
*/
|
*/
|
||||||
public array $mobiles = [
|
public array $mobiles = [
|
||||||
// legacy array, old values commented out
|
// legacy array, old values commented out
|
||||||
'mobileexplorer' => 'Mobile Explorer',
|
'mobileexplorer' => 'Mobile Explorer',
|
||||||
// 'openwave' => 'Open Wave',
|
// 'openwave' => 'Open Wave',
|
||||||
// 'opera mini' => 'Opera Mini',
|
// 'opera mini' => 'Opera Mini',
|
||||||
// 'operamini' => 'Opera Mini',
|
// 'operamini' => 'Opera Mini',
|
||||||
// 'elaine' => 'Palm',
|
// 'elaine' => 'Palm',
|
||||||
'palmsource' => 'Palm',
|
'palmsource' => 'Palm',
|
||||||
// 'digital paths' => 'Palm',
|
// 'digital paths' => 'Palm',
|
||||||
// 'avantgo' => 'Avantgo',
|
// 'avantgo' => 'Avantgo',
|
||||||
// 'xiino' => 'Xiino',
|
// 'xiino' => 'Xiino',
|
||||||
'palmscape' => 'Palmscape',
|
'palmscape' => 'Palmscape',
|
||||||
// 'nokia' => 'Nokia',
|
// 'nokia' => 'Nokia',
|
||||||
// 'ericsson' => 'Ericsson',
|
// 'ericsson' => 'Ericsson',
|
||||||
// 'blackberry' => 'BlackBerry',
|
// 'blackberry' => 'BlackBerry',
|
||||||
// 'motorola' => 'Motorola'
|
// 'motorola' => 'Motorola'
|
||||||
|
|
||||||
// Phones and Manufacturers
|
// Phones and Manufacturers
|
||||||
'motorola' => 'Motorola',
|
'motorola' => 'Motorola',
|
||||||
'nokia' => 'Nokia',
|
'nokia' => 'Nokia',
|
||||||
'palm' => 'Palm',
|
'palm' => 'Palm',
|
||||||
'iphone' => 'Apple iPhone',
|
'iphone' => 'Apple iPhone',
|
||||||
'ipad' => 'iPad',
|
'ipad' => 'iPad',
|
||||||
'ipod' => 'Apple iPod Touch',
|
'ipod' => 'Apple iPod Touch',
|
||||||
'sony' => 'Sony Ericsson',
|
'sony' => 'Sony Ericsson',
|
||||||
'ericsson' => 'Sony Ericsson',
|
'ericsson' => 'Sony Ericsson',
|
||||||
'blackberry' => 'BlackBerry',
|
'blackberry' => 'BlackBerry',
|
||||||
'cocoon' => 'O2 Cocoon',
|
'cocoon' => 'O2 Cocoon',
|
||||||
'blazer' => 'Treo',
|
'blazer' => 'Treo',
|
||||||
'lg' => 'LG',
|
'lg' => 'LG',
|
||||||
'amoi' => 'Amoi',
|
'amoi' => 'Amoi',
|
||||||
'xda' => 'XDA',
|
'xda' => 'XDA',
|
||||||
'mda' => 'MDA',
|
'mda' => 'MDA',
|
||||||
'vario' => 'Vario',
|
'vario' => 'Vario',
|
||||||
'htc' => 'HTC',
|
'htc' => 'HTC',
|
||||||
'samsung' => 'Samsung',
|
'samsung' => 'Samsung',
|
||||||
'sharp' => 'Sharp',
|
'sharp' => 'Sharp',
|
||||||
'sie-' => 'Siemens',
|
'sie-' => 'Siemens',
|
||||||
'alcatel' => 'Alcatel',
|
'alcatel' => 'Alcatel',
|
||||||
'benq' => 'BenQ',
|
'benq' => 'BenQ',
|
||||||
'ipaq' => 'HP iPaq',
|
'ipaq' => 'HP iPaq',
|
||||||
'mot-' => 'Motorola',
|
'mot-' => 'Motorola',
|
||||||
'playstation portable' => 'PlayStation Portable',
|
'playstation portable' => 'PlayStation Portable',
|
||||||
'playstation 3' => 'PlayStation 3',
|
'playstation 3' => 'PlayStation 3',
|
||||||
'playstation vita' => 'PlayStation Vita',
|
'playstation vita' => 'PlayStation Vita',
|
||||||
'hiptop' => 'Danger Hiptop',
|
'hiptop' => 'Danger Hiptop',
|
||||||
'nec-' => 'NEC',
|
'nec-' => 'NEC',
|
||||||
'panasonic' => 'Panasonic',
|
'panasonic' => 'Panasonic',
|
||||||
'philips' => 'Philips',
|
'philips' => 'Philips',
|
||||||
'sagem' => 'Sagem',
|
'sagem' => 'Sagem',
|
||||||
'sanyo' => 'Sanyo',
|
'sanyo' => 'Sanyo',
|
||||||
'spv' => 'SPV',
|
'spv' => 'SPV',
|
||||||
'zte' => 'ZTE',
|
'zte' => 'ZTE',
|
||||||
'sendo' => 'Sendo',
|
'sendo' => 'Sendo',
|
||||||
'nintendo dsi' => 'Nintendo DSi',
|
'nintendo dsi' => 'Nintendo DSi',
|
||||||
'nintendo ds' => 'Nintendo DS',
|
'nintendo ds' => 'Nintendo DS',
|
||||||
'nintendo 3ds' => 'Nintendo 3DS',
|
'nintendo 3ds' => 'Nintendo 3DS',
|
||||||
'wii' => 'Nintendo Wii',
|
'wii' => 'Nintendo Wii',
|
||||||
'open web' => 'Open Web',
|
'open web' => 'Open Web',
|
||||||
'openweb' => 'OpenWeb',
|
'openweb' => 'OpenWeb',
|
||||||
|
|
||||||
// Operating Systems
|
// Operating Systems
|
||||||
'android' => 'Android',
|
'android' => 'Android',
|
||||||
'symbian' => 'Symbian',
|
'symbian' => 'Symbian',
|
||||||
'SymbianOS' => 'SymbianOS',
|
'SymbianOS' => 'SymbianOS',
|
||||||
'elaine' => 'Palm',
|
'elaine' => 'Palm',
|
||||||
'series60' => 'Symbian S60',
|
'series60' => 'Symbian S60',
|
||||||
'windows ce' => 'Windows CE',
|
'windows ce' => 'Windows CE',
|
||||||
|
|
||||||
// Browsers
|
// Browsers
|
||||||
'obigo' => 'Obigo',
|
'obigo' => 'Obigo',
|
||||||
'netfront' => 'Netfront Browser',
|
'netfront' => 'Netfront Browser',
|
||||||
'openwave' => 'Openwave Browser',
|
'openwave' => 'Openwave Browser',
|
||||||
'mobilexplorer' => 'Mobile Explorer',
|
'mobilexplorer' => 'Mobile Explorer',
|
||||||
'operamini' => 'Opera Mini',
|
'operamini' => 'Opera Mini',
|
||||||
'opera mini' => 'Opera Mini',
|
'opera mini' => 'Opera Mini',
|
||||||
'opera mobi' => 'Opera Mobile',
|
'opera mobi' => 'Opera Mobile',
|
||||||
'fennec' => 'Firefox Mobile',
|
'fennec' => 'Firefox Mobile',
|
||||||
|
|
||||||
// Other
|
// Other
|
||||||
'digital paths' => 'Digital Paths',
|
'digital paths' => 'Digital Paths',
|
||||||
'avantgo' => 'AvantGo',
|
'avantgo' => 'AvantGo',
|
||||||
'xiino' => 'Xiino',
|
'xiino' => 'Xiino',
|
||||||
'novarra' => 'Novarra Transcoder',
|
'novarra' => 'Novarra Transcoder',
|
||||||
'vodafone' => 'Vodafone',
|
'vodafone' => 'Vodafone',
|
||||||
'docomo' => 'NTT DoCoMo',
|
'docomo' => 'NTT DoCoMo',
|
||||||
'o2' => 'O2',
|
'o2' => 'O2',
|
||||||
|
|
||||||
// Fallback
|
// Fallback
|
||||||
'mobile' => 'Generic Mobile',
|
'mobile' => 'Generic Mobile',
|
||||||
'wireless' => 'Generic Mobile',
|
'wireless' => 'Generic Mobile',
|
||||||
'j2me' => 'Generic Mobile',
|
'j2me' => 'Generic Mobile',
|
||||||
'midp' => 'Generic Mobile',
|
'midp' => 'Generic Mobile',
|
||||||
'cldc' => 'Generic Mobile',
|
'cldc' => 'Generic Mobile',
|
||||||
'up.link' => 'Generic Mobile',
|
'up.link' => 'Generic Mobile',
|
||||||
'up.browser' => 'Generic Mobile',
|
'up.browser' => 'Generic Mobile',
|
||||||
'smartphone' => 'Generic Mobile',
|
'smartphone' => 'Generic Mobile',
|
||||||
'cellphone' => 'Generic Mobile',
|
'cellphone' => 'Generic Mobile',
|
||||||
];
|
];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* -------------------------------------------------------------------
|
* -------------------------------------------------------------------
|
||||||
* Robots
|
* Robots
|
||||||
* -------------------------------------------------------------------
|
* -------------------------------------------------------------------
|
||||||
*
|
*
|
||||||
* There are hundred of bots but these are the most common.
|
* There are hundred of bots but these are the most common.
|
||||||
*
|
*
|
||||||
* @var array<string, string>
|
* @var array<string, string>
|
||||||
*/
|
*/
|
||||||
public array $robots = [
|
public array $robots = [
|
||||||
'googlebot' => 'Googlebot',
|
'googlebot' => 'Googlebot',
|
||||||
'msnbot' => 'MSNBot',
|
'msnbot' => 'MSNBot',
|
||||||
'baiduspider' => 'Baiduspider',
|
'baiduspider' => 'Baiduspider',
|
||||||
'bingbot' => 'Bing',
|
'bingbot' => 'Bing',
|
||||||
'slurp' => 'Inktomi Slurp',
|
'slurp' => 'Inktomi Slurp',
|
||||||
'yahoo' => 'Yahoo',
|
'yahoo' => 'Yahoo',
|
||||||
'ask jeeves' => 'Ask Jeeves',
|
'ask jeeves' => 'Ask Jeeves',
|
||||||
'fastcrawler' => 'FastCrawler',
|
'fastcrawler' => 'FastCrawler',
|
||||||
'infoseek' => 'InfoSeek Robot 1.0',
|
'infoseek' => 'InfoSeek Robot 1.0',
|
||||||
'lycos' => 'Lycos',
|
'lycos' => 'Lycos',
|
||||||
'yandex' => 'YandexBot',
|
'yandex' => 'YandexBot',
|
||||||
'mediapartners-google' => 'MediaPartners Google',
|
'mediapartners-google' => 'MediaPartners Google',
|
||||||
'CRAZYWEBCRAWLER' => 'Crazy Webcrawler',
|
'CRAZYWEBCRAWLER' => 'Crazy Webcrawler',
|
||||||
'adsbot-google' => 'AdsBot Google',
|
'adsbot-google' => 'AdsBot Google',
|
||||||
'feedfetcher-google' => 'Feedfetcher Google',
|
'feedfetcher-google' => 'Feedfetcher Google',
|
||||||
'curious george' => 'Curious George',
|
'curious george' => 'Curious George',
|
||||||
'ia_archiver' => 'Alexa Crawler',
|
'ia_archiver' => 'Alexa Crawler',
|
||||||
'MJ12bot' => 'Majestic-12',
|
'MJ12bot' => 'Majestic-12',
|
||||||
'Uptimebot' => 'Uptimebot',
|
'Uptimebot' => 'Uptimebot',
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
88
app/Config/Validation.php
Executable file → Normal file
88
app/Config/Validation.php
Executable file → Normal file
@ -1,44 +1,44 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Config;
|
namespace Config;
|
||||||
|
|
||||||
use CodeIgniter\Config\BaseConfig;
|
use CodeIgniter\Config\BaseConfig;
|
||||||
use CodeIgniter\Validation\StrictRules\CreditCardRules;
|
use CodeIgniter\Validation\StrictRules\CreditCardRules;
|
||||||
use CodeIgniter\Validation\StrictRules\FileRules;
|
use CodeIgniter\Validation\StrictRules\FileRules;
|
||||||
use CodeIgniter\Validation\StrictRules\FormatRules;
|
use CodeIgniter\Validation\StrictRules\FormatRules;
|
||||||
use CodeIgniter\Validation\StrictRules\Rules;
|
use CodeIgniter\Validation\StrictRules\Rules;
|
||||||
|
|
||||||
class Validation extends BaseConfig
|
class Validation extends BaseConfig
|
||||||
{
|
{
|
||||||
// --------------------------------------------------------------------
|
// --------------------------------------------------------------------
|
||||||
// Setup
|
// Setup
|
||||||
// --------------------------------------------------------------------
|
// --------------------------------------------------------------------
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Stores the classes that contain the
|
* Stores the classes that contain the
|
||||||
* rules that are available.
|
* rules that are available.
|
||||||
*
|
*
|
||||||
* @var list<string>
|
* @var list<string>
|
||||||
*/
|
*/
|
||||||
public array $ruleSets = [
|
public array $ruleSets = [
|
||||||
Rules::class,
|
Rules::class,
|
||||||
FormatRules::class,
|
FormatRules::class,
|
||||||
FileRules::class,
|
FileRules::class,
|
||||||
CreditCardRules::class,
|
CreditCardRules::class,
|
||||||
];
|
];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Specifies the views that are used to display the
|
* Specifies the views that are used to display the
|
||||||
* errors.
|
* errors.
|
||||||
*
|
*
|
||||||
* @var array<string, string>
|
* @var array<string, string>
|
||||||
*/
|
*/
|
||||||
public array $templates = [
|
public array $templates = [
|
||||||
'list' => 'CodeIgniter\Validation\Views\list',
|
'list' => 'CodeIgniter\Validation\Views\list',
|
||||||
'single' => 'CodeIgniter\Validation\Views\single',
|
'single' => 'CodeIgniter\Validation\Views\single',
|
||||||
];
|
];
|
||||||
|
|
||||||
// --------------------------------------------------------------------
|
// --------------------------------------------------------------------
|
||||||
// Rules
|
// Rules
|
||||||
// --------------------------------------------------------------------
|
// --------------------------------------------------------------------
|
||||||
}
|
}
|
||||||
|
|||||||
124
app/Config/View.php
Executable file → Normal file
124
app/Config/View.php
Executable file → Normal file
@ -1,62 +1,62 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Config;
|
namespace Config;
|
||||||
|
|
||||||
use CodeIgniter\Config\View as BaseView;
|
use CodeIgniter\Config\View as BaseView;
|
||||||
use CodeIgniter\View\ViewDecoratorInterface;
|
use CodeIgniter\View\ViewDecoratorInterface;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @phpstan-type parser_callable (callable(mixed): mixed)
|
* @phpstan-type parser_callable (callable(mixed): mixed)
|
||||||
* @phpstan-type parser_callable_string (callable(mixed): mixed)&string
|
* @phpstan-type parser_callable_string (callable(mixed): mixed)&string
|
||||||
*/
|
*/
|
||||||
class View extends BaseView
|
class View extends BaseView
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* When false, the view method will clear the data between each
|
* When false, the view method will clear the data between each
|
||||||
* call. This keeps your data safe and ensures there is no accidental
|
* call. This keeps your data safe and ensures there is no accidental
|
||||||
* leaking between calls, so you would need to explicitly pass the data
|
* leaking between calls, so you would need to explicitly pass the data
|
||||||
* to each view. You might prefer to have the data stick around between
|
* to each view. You might prefer to have the data stick around between
|
||||||
* calls so that it is available to all views. If that is the case,
|
* calls so that it is available to all views. If that is the case,
|
||||||
* set $saveData to true.
|
* set $saveData to true.
|
||||||
*
|
*
|
||||||
* @var bool
|
* @var bool
|
||||||
*/
|
*/
|
||||||
public $saveData = true;
|
public $saveData = true;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Parser Filters map a filter name with any PHP callable. When the
|
* Parser Filters map a filter name with any PHP callable. When the
|
||||||
* Parser prepares a variable for display, it will chain it
|
* Parser prepares a variable for display, it will chain it
|
||||||
* through the filters in the order defined, inserting any parameters.
|
* through the filters in the order defined, inserting any parameters.
|
||||||
* To prevent potential abuse, all filters MUST be defined here
|
* To prevent potential abuse, all filters MUST be defined here
|
||||||
* in order for them to be available for use within the Parser.
|
* in order for them to be available for use within the Parser.
|
||||||
*
|
*
|
||||||
* Examples:
|
* Examples:
|
||||||
* { title|esc(js) }
|
* { title|esc(js) }
|
||||||
* { created_on|date(Y-m-d)|esc(attr) }
|
* { created_on|date(Y-m-d)|esc(attr) }
|
||||||
*
|
*
|
||||||
* @var array<string, string>
|
* @var array<string, string>
|
||||||
* @phpstan-var array<string, parser_callable_string>
|
* @phpstan-var array<string, parser_callable_string>
|
||||||
*/
|
*/
|
||||||
public $filters = [];
|
public $filters = [];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Parser Plugins provide a way to extend the functionality provided
|
* Parser Plugins provide a way to extend the functionality provided
|
||||||
* by the core Parser by creating aliases that will be replaced with
|
* by the core Parser by creating aliases that will be replaced with
|
||||||
* any callable. Can be single or tag pair.
|
* any callable. Can be single or tag pair.
|
||||||
*
|
*
|
||||||
* @var array<string, callable|list<string>|string>
|
* @var array<string, callable|list<string>|string>
|
||||||
* @phpstan-var array<string, list<parser_callable_string>|parser_callable_string|parser_callable>
|
* @phpstan-var array<string, list<parser_callable_string>|parser_callable_string|parser_callable>
|
||||||
*/
|
*/
|
||||||
public $plugins = [];
|
public $plugins = [];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* View Decorators are class methods that will be run in sequence to
|
* View Decorators are class methods that will be run in sequence to
|
||||||
* have a chance to alter the generated output just prior to caching
|
* have a chance to alter the generated output just prior to caching
|
||||||
* the results.
|
* the results.
|
||||||
*
|
*
|
||||||
* All classes must implement CodeIgniter\View\ViewDecoratorInterface
|
* All classes must implement CodeIgniter\View\ViewDecoratorInterface
|
||||||
*
|
*
|
||||||
* @var list<class-string<ViewDecoratorInterface>>
|
* @var list<class-string<ViewDecoratorInterface>>
|
||||||
*/
|
*/
|
||||||
public array $decorators = [];
|
public array $decorators = [];
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,52 +0,0 @@
|
|||||||
<?php
|
|
||||||
namespace App\Controllers;
|
|
||||||
|
|
||||||
use App\Traits\ResponseTrait;
|
|
||||||
use App\Controllers\BaseController;
|
|
||||||
use App\Models\AreaGeoModel;
|
|
||||||
|
|
||||||
class AreaGeoController extends BaseController {
|
|
||||||
use ResponseTrait;
|
|
||||||
|
|
||||||
protected $model;
|
|
||||||
|
|
||||||
public function __construct() {
|
|
||||||
$this->model = new AreaGeoModel();
|
|
||||||
}
|
|
||||||
|
|
||||||
public function index() {
|
|
||||||
try {
|
|
||||||
$filters = [
|
|
||||||
'AreaGeoID' => $this->request->getVar('AreaGeoID') ?? null,
|
|
||||||
'AreaName' => $this->request->getVar('AreaName') ?? null
|
|
||||||
];
|
|
||||||
$rows = $this->model->getAreaGeos( $filters );
|
|
||||||
|
|
||||||
if(empty($rows)){return $this->respond(['status'=>'success', 'message'=>"no data found.", 'data'=>$rows], 200);}
|
|
||||||
return $this->respond(['status'=>'success', 'message'=>"data fetched successfully", 'data'=>$rows], 200);
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
return $this->respond([ 'status' => 'error', 'message' => $e->getMessage() ], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getProvinces() {
|
|
||||||
$rows = $this->model->getProvinces();
|
|
||||||
$transformed = array_map(function($row) {
|
|
||||||
return ['value' => $row['AreaGeoID'], 'label' => $row['AreaName']];
|
|
||||||
}, $rows);
|
|
||||||
if (empty($transformed)) { return $this->respond([ 'status' => 'success', 'data' => [] ], 200); }
|
|
||||||
return $this->respond([ 'status' => 'success', 'data' => $transformed ], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getCities() {
|
|
||||||
$filter = [ 'Parent' => $this->request->getVar('ProvinceID') ?? null ];
|
|
||||||
$rows = $this->model->getCities($filter);
|
|
||||||
$transformed = array_map(function($row) {
|
|
||||||
return ['value' => $row['AreaGeoID'], 'label' => $row['AreaName']];
|
|
||||||
}, $rows);
|
|
||||||
if (empty($transformed)) { return $this->respond([ 'status' => 'success', 'data' => [] ], 200); }
|
|
||||||
return $this->respond([ 'status' => 'success', 'data' => $transformed ], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@ -1,60 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace App\Controllers\Audit;
|
|
||||||
|
|
||||||
use App\Controllers\BaseController;
|
|
||||||
use App\Services\AuditLogService;
|
|
||||||
use App\Traits\ResponseTrait;
|
|
||||||
use CodeIgniter\HTTP\ResponseInterface;
|
|
||||||
use InvalidArgumentException;
|
|
||||||
|
|
||||||
class AuditLogController extends BaseController
|
|
||||||
{
|
|
||||||
use ResponseTrait;
|
|
||||||
|
|
||||||
private AuditLogService $auditLogService;
|
|
||||||
|
|
||||||
public function __construct()
|
|
||||||
{
|
|
||||||
$this->auditLogService = new AuditLogService();
|
|
||||||
}
|
|
||||||
|
|
||||||
public function index(): ResponseInterface
|
|
||||||
{
|
|
||||||
$filters = [
|
|
||||||
'table' => $this->request->getGet('table'),
|
|
||||||
'rec_id' => $this->request->getGet('rec_id') ?? $this->request->getGet('recId'),
|
|
||||||
'event_id' => $this->request->getGet('event_id') ?? $this->request->getGet('eventId'),
|
|
||||||
'activity_id' => $this->request->getGet('activity_id') ?? $this->request->getGet('activityId'),
|
|
||||||
'from' => $this->request->getGet('from'),
|
|
||||||
'to' => $this->request->getGet('to'),
|
|
||||||
'search' => $this->request->getGet('search'),
|
|
||||||
'page' => $this->request->getGet('page'),
|
|
||||||
'perPage' => $this->request->getGet('perPage') ?? $this->request->getGet('per_page'),
|
|
||||||
];
|
|
||||||
|
|
||||||
try {
|
|
||||||
$payload = $this->auditLogService->fetchLogs($filters);
|
|
||||||
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'success',
|
|
||||||
'message' => 'Audit logs retrieved successfully',
|
|
||||||
'data' => $payload,
|
|
||||||
], 200);
|
|
||||||
|
|
||||||
} catch (InvalidArgumentException $e) {
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'failed',
|
|
||||||
'message' => $e->getMessage(),
|
|
||||||
'data' => null,
|
|
||||||
], 400);
|
|
||||||
} catch (\Throwable $e) {
|
|
||||||
log_message('error', 'AuditLogController::index error: ' . $e->getMessage());
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'failed',
|
|
||||||
'message' => 'Unable to retrieve audit logs',
|
|
||||||
'data' => null,
|
|
||||||
], 500);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
135
app/Controllers/Auth.php
Normal file
135
app/Controllers/Auth.php
Normal file
@ -0,0 +1,135 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Controllers;
|
||||||
|
|
||||||
|
use CodeIgniter\API\ResponseTrait;
|
||||||
|
use CodeIgniter\Controller;
|
||||||
|
use \Firebase\JWT\JWT;
|
||||||
|
|
||||||
|
class Auth extends Controller {
|
||||||
|
use ResponseTrait;
|
||||||
|
|
||||||
|
public function __construct() {
|
||||||
|
$this->db = \Config\Database::connect();
|
||||||
|
}
|
||||||
|
|
||||||
|
public function login() {
|
||||||
|
$username = $this->request->getVar('username');
|
||||||
|
$password = $this->request->getVar('password');
|
||||||
|
$key = getenv('JWT_SECRET');
|
||||||
|
|
||||||
|
if (!$username) {
|
||||||
|
return $this->fail('Username required.', 400);
|
||||||
|
}
|
||||||
|
|
||||||
|
$sql = "select * from users where username=".$this->db->escape($username);
|
||||||
|
$query = $this->db->query($sql);
|
||||||
|
$row = $query->getRowArray();
|
||||||
|
|
||||||
|
if (!$row) {
|
||||||
|
return $this->fail('User not found.', 401); // Use 401 for authentication failures
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!password_verify($password, $row['password'])) {
|
||||||
|
return $this->fail('Invalid password.', 401);
|
||||||
|
}
|
||||||
|
|
||||||
|
// JWT payload
|
||||||
|
$payload = [
|
||||||
|
'username' => $row['username'],
|
||||||
|
'exp' => time() + 3600
|
||||||
|
];
|
||||||
|
|
||||||
|
try {
|
||||||
|
$jwt = JWT::encode($payload, $key, 'HS256');
|
||||||
|
} catch (Exception $e) {
|
||||||
|
return $this->fail('Error generating JWT: ' . $e->getMessage(), 500);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Update last_login
|
||||||
|
//$this->userModel->update($user['id'], ['lastlogin' => date('Y-m-d H:i:s')]);
|
||||||
|
|
||||||
|
$response = [
|
||||||
|
'message' => 'Login successful',
|
||||||
|
'token' => $jwt,
|
||||||
|
];
|
||||||
|
return $this->respond($response);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function change_pass() {
|
||||||
|
$db = \Config\Database::connect();
|
||||||
|
$username = $this->request->getJsonVar('username');
|
||||||
|
$password = $this->request->getJsonVar('password');
|
||||||
|
$password = password_hash($password, PASSWORD_DEFAULT);
|
||||||
|
|
||||||
|
$master = $this->request->getJsonVar('master');
|
||||||
|
$masterkey = getenv('masterkey');
|
||||||
|
|
||||||
|
if($master != $masterkey) {
|
||||||
|
return $this->fail('Invalid master key.', 401);
|
||||||
|
}
|
||||||
|
|
||||||
|
$sql = "update users set password='$password' where username='$username'";
|
||||||
|
$query = $db->query($sql);
|
||||||
|
$response = [
|
||||||
|
'message' => "Password Changed for $username"
|
||||||
|
];
|
||||||
|
return $this->respond($response);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function register() {
|
||||||
|
$username = $this->request->getJsonVar('username');
|
||||||
|
$password = $this->request->getJsonVar('password');
|
||||||
|
$password = password_hash($password, PASSWORD_DEFAULT);
|
||||||
|
|
||||||
|
$master = $this->request->getJsonVar('master');
|
||||||
|
$masterkey = getenv('MASTERKEY');
|
||||||
|
|
||||||
|
if($master != $masterkey) {
|
||||||
|
return $this->fail('Invalid master key.', 401);
|
||||||
|
}
|
||||||
|
|
||||||
|
$sql = "insert into users(username, password) values('$username', '$password')";
|
||||||
|
$this->db->query($sql);
|
||||||
|
$response = [
|
||||||
|
'message' => "user $username created"
|
||||||
|
];
|
||||||
|
return $this->respondCreated($response);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function checkAuth() {
|
||||||
|
$authorizationHeader = $this->request->getHeader('Authorization');
|
||||||
|
|
||||||
|
if (!$authorizationHeader) {
|
||||||
|
return $this->fail('Authorization header is missing', 401);
|
||||||
|
}
|
||||||
|
|
||||||
|
$authHeaderValue = $authorizationHeader->getValue();
|
||||||
|
|
||||||
|
if (empty($authHeaderValue)) {
|
||||||
|
return $this->fail('Authorization header is empty', 401);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Extract the token from the "Bearer <token>" format
|
||||||
|
if (strpos($authHeaderValue, 'Bearer ') === 0) {
|
||||||
|
$token = substr($authHeaderValue, 7);
|
||||||
|
} else {
|
||||||
|
$token = $authHeaderValue; // Assume the header contains only the token
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
try {
|
||||||
|
$decoded = JWT::decode($token, $this->key, ['HS256']); // Use the Key object
|
||||||
|
// You can now access user data from $decoded
|
||||||
|
$response = [
|
||||||
|
'message' => 'Authentication successful',
|
||||||
|
'user' => $decoded, // return the decoded token
|
||||||
|
];
|
||||||
|
return $this->respond($response);
|
||||||
|
|
||||||
|
} catch (Exception $e) {
|
||||||
|
return $this->fail('Invalid token: ' . $e->getMessage(), 401);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@ -1,329 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace App\Controllers;
|
|
||||||
|
|
||||||
use App\Traits\ResponseTrait;
|
|
||||||
use CodeIgniter\Controller;
|
|
||||||
|
|
||||||
use Firebase\JWT\JWT;
|
|
||||||
use Firebase\JWT\Key;
|
|
||||||
use Firebase\JWT\ExpiredException;
|
|
||||||
use Firebase\JWT\SignatureInvalidException;
|
|
||||||
use Firebase\JWT\BeforeValidException;
|
|
||||||
use CodeIgniter\Cookie\Cookie;
|
|
||||||
|
|
||||||
class AuthController extends Controller
|
|
||||||
{
|
|
||||||
use ResponseTrait;
|
|
||||||
|
|
||||||
protected $db;
|
|
||||||
|
|
||||||
// ok
|
|
||||||
public function __construct()
|
|
||||||
{
|
|
||||||
$this->db = \Config\Database::connect();
|
|
||||||
}
|
|
||||||
|
|
||||||
// ok
|
|
||||||
public function checkAuth()
|
|
||||||
{
|
|
||||||
$token = $this->request->getCookie('token');
|
|
||||||
$key = getenv('JWT_SECRET');
|
|
||||||
|
|
||||||
// Jika token FE tidak ada langsung kabarkan failed
|
|
||||||
if (!$token) {
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'failed',
|
|
||||||
'message' => 'No token found'
|
|
||||||
], 401);
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
// Decode Token dengan Key yg ada di .env
|
|
||||||
$decodedPayload = JWT::decode($token, new Key($key, 'HS256'));
|
|
||||||
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'success',
|
|
||||||
'message' => 'Authenticated',
|
|
||||||
'data' => $decodedPayload
|
|
||||||
], 200);
|
|
||||||
|
|
||||||
} catch (ExpiredException $e) {
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'failed',
|
|
||||||
'message' => 'Token expired',
|
|
||||||
'data' => []
|
|
||||||
], 401);
|
|
||||||
|
|
||||||
} catch (SignatureInvalidException $e) {
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'failed',
|
|
||||||
'message' => 'Invalid token signature',
|
|
||||||
'data' => []
|
|
||||||
], 401);
|
|
||||||
|
|
||||||
} catch (BeforeValidException $e) {
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'failed',
|
|
||||||
'message' => 'Token not valid yet',
|
|
||||||
'data' => []
|
|
||||||
], 401);
|
|
||||||
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'failed',
|
|
||||||
'message' => 'Invalid token: ' . $e->getMessage(),
|
|
||||||
'data' => []
|
|
||||||
], 401);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// ok
|
|
||||||
// public function login() {
|
|
||||||
|
|
||||||
// // Ambil dari JSON Form dan Key .env
|
|
||||||
// $username = $this->request->getVar('username');
|
|
||||||
// $password = $this->request->getVar('password');
|
|
||||||
// $key = getenv('JWT_SECRET');
|
|
||||||
|
|
||||||
// if (!$username) {
|
|
||||||
// return $this->fail('Username required.', 400);
|
|
||||||
// }
|
|
||||||
|
|
||||||
// $sql = "SELECT * FROM users WHERE username=" . $this->db->escape($username);
|
|
||||||
// $query = $this->db->query($sql);
|
|
||||||
// $row = $query->getResultArray();
|
|
||||||
|
|
||||||
// if (!$row) { return $this->fail('User not found.', 401); }
|
|
||||||
// $row = $row[0];
|
|
||||||
// if (!password_verify($password, $row['password'])) {
|
|
||||||
// return $this->fail('Invalid password.', 401);
|
|
||||||
// }
|
|
||||||
|
|
||||||
// // Buat JWT payload
|
|
||||||
// $exp = time() + 864000;
|
|
||||||
// $payload = [
|
|
||||||
// 'userid' => $row['id'],
|
|
||||||
// 'roleid' => $row['role_id'],
|
|
||||||
// 'username' => $row['username'],
|
|
||||||
// 'exp' => $exp
|
|
||||||
// ];
|
|
||||||
|
|
||||||
// try {
|
|
||||||
// // Melakukan Hash terhadap Payload dengan Kunci .env menggunakan Algortima HMAC + SHA-256
|
|
||||||
// $jwt = JWT::encode($payload, $key, 'HS256');
|
|
||||||
// } catch (Exception $e) {
|
|
||||||
// return $this->fail('Error generating JWT: ' . $e->getMessage(), 500);
|
|
||||||
// }
|
|
||||||
|
|
||||||
// // Kirim Respon ke HttpOnly yg akan disimpan di browser dan tidak akan dapat diakses oleh siapapun
|
|
||||||
// // $isSecure = isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on';
|
|
||||||
// $this->response->setCookie([
|
|
||||||
// // 'name' => 'token', // nama token
|
|
||||||
// // 'value' => $jwt, // value dari jwt yg sudah di hash
|
|
||||||
// // 'expire' => 864000, // 10 hari
|
|
||||||
// // 'path' => '/', // valid untuk semua path
|
|
||||||
// // 'secure' => $isSecure, // true for HTTPS, false for HTTP (localhost)
|
|
||||||
// // 'httponly' => true, // dipakai agar cookie berikut tidak dapat diakses oleh javascript
|
|
||||||
// // 'samesite' => $isSecure ? Cookie::SAMESITE_NONE : Cookie::SAMESITE_LAX
|
|
||||||
// ]);
|
|
||||||
|
|
||||||
|
|
||||||
// // Response tanpa token di body
|
|
||||||
// return $this->respond([
|
|
||||||
// 'status' => 'success',
|
|
||||||
// 'code' => 200,
|
|
||||||
// 'message' => 'Login successful'
|
|
||||||
// ], 200);
|
|
||||||
// }
|
|
||||||
public function login()
|
|
||||||
{
|
|
||||||
|
|
||||||
// Ambil dari JSON Form dan Key .env
|
|
||||||
$username = $this->request->getVar('username');
|
|
||||||
$password = $this->request->getVar('password');
|
|
||||||
$key = getenv('JWT_SECRET');
|
|
||||||
|
|
||||||
if (!$username) {
|
|
||||||
return $this->fail('Username required.', 400);
|
|
||||||
}
|
|
||||||
|
|
||||||
$sql = "SELECT * FROM users WHERE username=" . $this->db->escape($username);
|
|
||||||
$query = $this->db->query($sql);
|
|
||||||
$row = $query->getResultArray();
|
|
||||||
|
|
||||||
if (!$row) {
|
|
||||||
return $this->fail('User not found.', 401);
|
|
||||||
}
|
|
||||||
$row = $row[0];
|
|
||||||
if (!password_verify($password, $row['password'])) {
|
|
||||||
return $this->fail('Invalid password.', 401);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Buat JWT payload
|
|
||||||
$exp = time() + 864000;
|
|
||||||
$payload = [
|
|
||||||
'userid' => $row['id'],
|
|
||||||
'roleid' => $row['role_id'],
|
|
||||||
'username' => $row['username'],
|
|
||||||
'exp' => $exp
|
|
||||||
];
|
|
||||||
|
|
||||||
try {
|
|
||||||
// Melakukan Hash terhadap Payload dengan Kunci .env menggunakan Algortima HMAC + SHA-256
|
|
||||||
$jwt = JWT::encode($payload, $key, 'HS256');
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
return $this->fail('Error generating JWT: ' . $e->getMessage(), 500);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Detect if HTTPS is being used
|
|
||||||
$isSecure = isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on';
|
|
||||||
|
|
||||||
// Kirim Respon ke HttpOnly yg akan disimpan di browser dan tidak akan dapat diakses oleh siapapun
|
|
||||||
$this->response->setCookie([
|
|
||||||
'name' => 'token', // nama token
|
|
||||||
'value' => $jwt, // value dari jwt yg sudah di hash
|
|
||||||
'expire' => 864000, // 10 hari
|
|
||||||
'path' => '/', // valid untuk semua path
|
|
||||||
'secure' => $isSecure,
|
|
||||||
'httponly' => true, // dipakai agar cookie berikut tidak dapat diakses oleh javascript
|
|
||||||
'samesite' => $isSecure ? Cookie::SAMESITE_NONE : Cookie::SAMESITE_LAX
|
|
||||||
]);
|
|
||||||
|
|
||||||
// Response tanpa token di body
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'success',
|
|
||||||
'code' => 200,
|
|
||||||
'message' => 'Login successful'
|
|
||||||
], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
// ok
|
|
||||||
// public function logout() {
|
|
||||||
// // Definisikan ini pada cookies browser, harus sama dengan cookies login
|
|
||||||
// // $isSecure = isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on';
|
|
||||||
// return $this->response->setCookie([
|
|
||||||
// 'name' => 'token',
|
|
||||||
// 'value' => '',
|
|
||||||
// 'expire' => time() - 3600,
|
|
||||||
// 'path' => '/',
|
|
||||||
// 'secure' => $isSecure,
|
|
||||||
// 'httponly' => true,
|
|
||||||
// 'samesite' => $isSecure ? Cookie::SAMESITE_NONE : Cookie::SAMESITE_LAX
|
|
||||||
|
|
||||||
// ])->setJSON([
|
|
||||||
// 'status' => 'success',
|
|
||||||
// 'code' => 200,
|
|
||||||
// 'message' => 'Logout successful'
|
|
||||||
// ], 200);
|
|
||||||
// }
|
|
||||||
public function logout()
|
|
||||||
{
|
|
||||||
// Detect if HTTPS is being used
|
|
||||||
$isSecure = isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on';
|
|
||||||
|
|
||||||
// Definisikan ini pada cookies browser, harus sama dengan cookies login
|
|
||||||
return $this->response->setCookie([
|
|
||||||
'name' => 'token',
|
|
||||||
'value' => '',
|
|
||||||
'expire' => time() - 3600,
|
|
||||||
'path' => '/',
|
|
||||||
'secure' => $isSecure,
|
|
||||||
'httponly' => true,
|
|
||||||
'samesite' => $isSecure ? Cookie::SAMESITE_NONE : Cookie::SAMESITE_LAX
|
|
||||||
|
|
||||||
])->setJSON([
|
|
||||||
'status' => 'success',
|
|
||||||
'code' => 200,
|
|
||||||
'message' => 'Logout successful'
|
|
||||||
], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
// ok
|
|
||||||
public function register()
|
|
||||||
{
|
|
||||||
|
|
||||||
$username = strtolower($this->request->getJsonVar('username'));
|
|
||||||
$password = $this->request->getJsonVar('password');
|
|
||||||
|
|
||||||
// Validasi Awal Dari BE
|
|
||||||
if (empty($username) || empty($password)) {
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'failed',
|
|
||||||
'code' => 400,
|
|
||||||
'message' => 'Username and password are required'
|
|
||||||
], 400); // Gunakan 400 Bad Request
|
|
||||||
}
|
|
||||||
|
|
||||||
// Cek Duplikasi Username
|
|
||||||
$exists = $this->db->query("SELECT id FROM users WHERE username = ?", [$username])->getRow();
|
|
||||||
if ($exists) {
|
|
||||||
return $this->respond(['status' => 'failed', 'code' => 409, 'message' => 'Username already exists'], 409);
|
|
||||||
}
|
|
||||||
|
|
||||||
$hashedPassword = password_hash($password, PASSWORD_DEFAULT);
|
|
||||||
|
|
||||||
// Mulai transaksi Insert
|
|
||||||
$this->db->transStart();
|
|
||||||
$this->db->query(
|
|
||||||
"INSERT INTO users(username, password, role_id) VALUES(?, ?, ?)",
|
|
||||||
[$username, $hashedPassword, 1]
|
|
||||||
);
|
|
||||||
$this->db->transComplete();
|
|
||||||
|
|
||||||
// Cek status transaksi
|
|
||||||
if ($this->db->transStatus() === false) {
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'error',
|
|
||||||
'code' => 500,
|
|
||||||
'message' => 'Failed to create user. Please try again later.'
|
|
||||||
], 500);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Respon sukses jika kueri berhasil
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'success',
|
|
||||||
'code' => 201,
|
|
||||||
'message' => 'User ' . $username . ' successfully created.'
|
|
||||||
], 201);
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
// public function change_pass() {
|
|
||||||
// $db = \Config\Database::connect();
|
|
||||||
// $username = $this->request->getJsonVar('username');
|
|
||||||
// $password = $this->request->getJsonVar('password');
|
|
||||||
// $password = password_hash($password, PASSWORD_DEFAULT);
|
|
||||||
|
|
||||||
// $master = $this->request->getJsonVar('master');
|
|
||||||
// $masterkey = getenv('masterkey');
|
|
||||||
|
|
||||||
// if($master != $masterkey) {
|
|
||||||
// return $this->fail('Invalid master key.', 401);
|
|
||||||
// }
|
|
||||||
|
|
||||||
// $sql = "update users set password='$password' where username='$username'";
|
|
||||||
// $query = $db->query($sql);
|
|
||||||
// $response = [
|
|
||||||
// 'message' => "Password Changed for $username"
|
|
||||||
// ];
|
|
||||||
// return $this->respond($response);
|
|
||||||
// }
|
|
||||||
|
|
||||||
public function coba()
|
|
||||||
{
|
|
||||||
|
|
||||||
$token = $this->request->getCookie('token');
|
|
||||||
$key = getenv('JWT_SECRET');
|
|
||||||
|
|
||||||
// Decode Token dengan Key yg ada di .env
|
|
||||||
$decodedPayload = JWT::decode($token, new Key($key, 'HS256'));
|
|
||||||
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'success',
|
|
||||||
'message' => 'Authenticated',
|
|
||||||
'data' => $decodedPayload
|
|
||||||
], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@ -1,238 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace App\Controllers;
|
|
||||||
|
|
||||||
use App\Traits\ResponseTrait;
|
|
||||||
use CodeIgniter\Controller;
|
|
||||||
|
|
||||||
use Firebase\JWT\JWT;
|
|
||||||
use Firebase\JWT\Key;
|
|
||||||
use Firebase\JWT\ExpiredException;
|
|
||||||
use Firebase\JWT\SignatureInvalidException;
|
|
||||||
use Firebase\JWT\BeforeValidException;
|
|
||||||
use CodeIgniter\Cookie\Cookie;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* AuthV2 Controller
|
|
||||||
*
|
|
||||||
* Handles authentication for V2 UI
|
|
||||||
* Separate from the main Auth controller to avoid conflicts
|
|
||||||
*/
|
|
||||||
class AuthV2Controller extends Controller
|
|
||||||
{
|
|
||||||
use ResponseTrait;
|
|
||||||
|
|
||||||
protected $db;
|
|
||||||
|
|
||||||
public function __construct()
|
|
||||||
{
|
|
||||||
$this->db = \Config\Database::connect();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Check authentication status
|
|
||||||
* GET /v2/auth/check
|
|
||||||
*/
|
|
||||||
public function checkAuth()
|
|
||||||
{
|
|
||||||
$token = $this->request->getCookie('token');
|
|
||||||
$key = getenv('JWT_SECRET');
|
|
||||||
|
|
||||||
if (!$token) {
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'failed',
|
|
||||||
'message' => 'No token found'
|
|
||||||
], 401);
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
$decodedPayload = JWT::decode($token, new Key($key, 'HS256'));
|
|
||||||
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'success',
|
|
||||||
'message' => 'Authenticated',
|
|
||||||
'data' => $decodedPayload
|
|
||||||
], 200);
|
|
||||||
|
|
||||||
} catch (ExpiredException $e) {
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'failed',
|
|
||||||
'message' => 'Token expired'
|
|
||||||
], 401);
|
|
||||||
|
|
||||||
} catch (SignatureInvalidException $e) {
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'failed',
|
|
||||||
'message' => 'Invalid token signature'
|
|
||||||
], 401);
|
|
||||||
|
|
||||||
} catch (BeforeValidException $e) {
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'failed',
|
|
||||||
'message' => 'Token not valid yet'
|
|
||||||
], 401);
|
|
||||||
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'failed',
|
|
||||||
'message' => 'Invalid token: ' . $e->getMessage()
|
|
||||||
], 401);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Login user
|
|
||||||
* POST /v2/auth/login
|
|
||||||
*/
|
|
||||||
public function login()
|
|
||||||
{
|
|
||||||
$username = $this->request->getVar('username');
|
|
||||||
$password = $this->request->getVar('password');
|
|
||||||
$key = getenv('JWT_SECRET');
|
|
||||||
|
|
||||||
// Validate username
|
|
||||||
if (!$username) {
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'failed',
|
|
||||||
'message' => 'Username is required'
|
|
||||||
], 400);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Find user
|
|
||||||
$sql = "SELECT * FROM users WHERE username = " . $this->db->escape($username);
|
|
||||||
$query = $this->db->query($sql);
|
|
||||||
$row = $query->getResultArray();
|
|
||||||
|
|
||||||
if (!$row) {
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'failed',
|
|
||||||
'message' => 'User not found'
|
|
||||||
], 401);
|
|
||||||
}
|
|
||||||
|
|
||||||
$row = $row[0];
|
|
||||||
|
|
||||||
// Verify password
|
|
||||||
if (!password_verify($password, $row['password'])) {
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'failed',
|
|
||||||
'message' => 'Invalid password'
|
|
||||||
], 401);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Create JWT payload
|
|
||||||
$exp = time() + 864000; // 10 days
|
|
||||||
$payload = [
|
|
||||||
'userid' => $row['id'],
|
|
||||||
'roleid' => $row['role_id'],
|
|
||||||
'username' => $row['username'],
|
|
||||||
'exp' => $exp
|
|
||||||
];
|
|
||||||
|
|
||||||
try {
|
|
||||||
$jwt = JWT::encode($payload, $key, 'HS256');
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'failed',
|
|
||||||
'message' => 'Error generating JWT: ' . $e->getMessage()
|
|
||||||
], 500);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Detect if HTTPS is being used
|
|
||||||
$isSecure = isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on';
|
|
||||||
|
|
||||||
// Set HTTP-only cookie
|
|
||||||
$this->response->setCookie([
|
|
||||||
'name' => 'token',
|
|
||||||
'value' => $jwt,
|
|
||||||
'expire' => 864000,
|
|
||||||
'path' => '/',
|
|
||||||
'secure' => $isSecure, // false for localhost HTTP
|
|
||||||
'httponly' => true,
|
|
||||||
'samesite' => $isSecure ? Cookie::SAMESITE_NONE : Cookie::SAMESITE_LAX
|
|
||||||
]);
|
|
||||||
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'success',
|
|
||||||
'message' => 'Login successful',
|
|
||||||
'data' => [
|
|
||||||
'username' => $row['username'],
|
|
||||||
'role_id' => $row['role_id']
|
|
||||||
]
|
|
||||||
], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Logout user
|
|
||||||
* POST /v2/auth/logout
|
|
||||||
*/
|
|
||||||
public function logout()
|
|
||||||
{
|
|
||||||
// Detect if HTTPS is being used
|
|
||||||
$isSecure = isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on';
|
|
||||||
|
|
||||||
// Clear the token cookie
|
|
||||||
return $this->response->setCookie([
|
|
||||||
'name' => 'token',
|
|
||||||
'value' => '',
|
|
||||||
'expire' => time() - 3600,
|
|
||||||
'path' => '/',
|
|
||||||
'secure' => $isSecure,
|
|
||||||
'httponly' => true,
|
|
||||||
'samesite' => $isSecure ? Cookie::SAMESITE_NONE : Cookie::SAMESITE_LAX
|
|
||||||
])->setJSON([
|
|
||||||
'status' => 'success',
|
|
||||||
'message' => 'Logout successful'
|
|
||||||
]);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Register new user
|
|
||||||
* POST /v2/auth/register
|
|
||||||
*/
|
|
||||||
public function register()
|
|
||||||
{
|
|
||||||
$username = strtolower($this->request->getJsonVar('username'));
|
|
||||||
$password = $this->request->getJsonVar('password');
|
|
||||||
|
|
||||||
// Validate input
|
|
||||||
if (empty($username) || empty($password)) {
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'failed',
|
|
||||||
'message' => 'Username and password are required'
|
|
||||||
], 400);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Check for existing username
|
|
||||||
$exists = $this->db->query("SELECT id FROM users WHERE username = ?", [$username])->getRow();
|
|
||||||
if ($exists) {
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'failed',
|
|
||||||
'message' => 'Username already exists'
|
|
||||||
], 409);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Hash password
|
|
||||||
$hashedPassword = password_hash($password, PASSWORD_DEFAULT);
|
|
||||||
|
|
||||||
// Insert user
|
|
||||||
$this->db->transStart();
|
|
||||||
$this->db->query(
|
|
||||||
"INSERT INTO users(username, password, role_id) VALUES(?, ?, ?)",
|
|
||||||
[$username, $hashedPassword, 1]
|
|
||||||
);
|
|
||||||
$this->db->transComplete();
|
|
||||||
|
|
||||||
if ($this->db->transStatus() === false) {
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'failed',
|
|
||||||
'message' => 'Failed to create user'
|
|
||||||
], 500);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'success',
|
|
||||||
'message' => 'User ' . $username . ' successfully created'
|
|
||||||
], 201);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
116
app/Controllers/BaseController.php
Executable file → Normal file
116
app/Controllers/BaseController.php
Executable file → Normal file
@ -1,58 +1,58 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Controllers;
|
namespace App\Controllers;
|
||||||
|
|
||||||
use CodeIgniter\Controller;
|
use CodeIgniter\Controller;
|
||||||
use CodeIgniter\HTTP\CLIRequest;
|
use CodeIgniter\HTTP\CLIRequest;
|
||||||
use CodeIgniter\HTTP\IncomingRequest;
|
use CodeIgniter\HTTP\IncomingRequest;
|
||||||
use CodeIgniter\HTTP\RequestInterface;
|
use CodeIgniter\HTTP\RequestInterface;
|
||||||
use CodeIgniter\HTTP\ResponseInterface;
|
use CodeIgniter\HTTP\ResponseInterface;
|
||||||
use Psr\Log\LoggerInterface;
|
use Psr\Log\LoggerInterface;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class BaseController
|
* Class BaseController
|
||||||
*
|
*
|
||||||
* BaseController provides a convenient place for loading components
|
* BaseController provides a convenient place for loading components
|
||||||
* and performing functions that are needed by all your controllers.
|
* and performing functions that are needed by all your controllers.
|
||||||
* Extend this class in any new controllers:
|
* Extend this class in any new controllers:
|
||||||
* class Home extends BaseController
|
* class Home extends BaseController
|
||||||
*
|
*
|
||||||
* For security be sure to declare any new methods as protected or private.
|
* For security be sure to declare any new methods as protected or private.
|
||||||
*/
|
*/
|
||||||
abstract class BaseController extends Controller
|
abstract class BaseController extends Controller
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* Instance of the main Request object.
|
* Instance of the main Request object.
|
||||||
*
|
*
|
||||||
* @var CLIRequest|IncomingRequest
|
* @var CLIRequest|IncomingRequest
|
||||||
*/
|
*/
|
||||||
protected $request;
|
protected $request;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* An array of helpers to be loaded automatically upon
|
* An array of helpers to be loaded automatically upon
|
||||||
* class instantiation. These will be available
|
* class instantiation. These helpers will be available
|
||||||
* to all other controllers that extend BaseController.
|
* to all other controllers that extend BaseController.
|
||||||
*
|
*
|
||||||
* @var list<string>
|
* @var list<string>
|
||||||
*/
|
*/
|
||||||
protected $helpers = ['json'];
|
protected $helpers = [];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Be sure to declare properties for any property fetch you initialized.
|
* Be sure to declare properties for any property fetch you initialized.
|
||||||
* The creation of dynamic property is deprecated in PHP 8.2.
|
* The creation of dynamic property is deprecated in PHP 8.2.
|
||||||
*/
|
*/
|
||||||
// protected $session;
|
// protected $session;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
public function initController(RequestInterface $request, ResponseInterface $response, LoggerInterface $logger)
|
public function initController(RequestInterface $request, ResponseInterface $response, LoggerInterface $logger)
|
||||||
{
|
{
|
||||||
// Do Not Edit This Line
|
// Do Not Edit This Line
|
||||||
parent::initController($request, $response, $logger);
|
parent::initController($request, $response, $logger);
|
||||||
|
|
||||||
// Preload any models, libraries, etc, here.
|
// Preload any models, libraries, etc, here.
|
||||||
|
|
||||||
// E.g.: $this->session = service('session');
|
// E.g.: $this->session = service('session');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,183 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace App\Controllers;
|
|
||||||
|
|
||||||
use App\Traits\ResponseTrait;
|
|
||||||
use App\Services\CalculatorService;
|
|
||||||
use App\Models\Test\TestDefCalModel;
|
|
||||||
use CodeIgniter\Controller;
|
|
||||||
use CodeIgniter\HTTP\ResponseInterface;
|
|
||||||
|
|
||||||
class CalculatorController extends Controller
|
|
||||||
{
|
|
||||||
use ResponseTrait;
|
|
||||||
|
|
||||||
protected CalculatorService $calculator;
|
|
||||||
protected TestDefCalModel $calcModel;
|
|
||||||
|
|
||||||
public function __construct()
|
|
||||||
{
|
|
||||||
$this->calculator = new CalculatorService();
|
|
||||||
$this->calcModel = new TestDefCalModel();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* POST api/calculate
|
|
||||||
* Calculate a formula with provided variables
|
|
||||||
*
|
|
||||||
* Request: {
|
|
||||||
* "formula": "{result} * {factor} + {gender}",
|
|
||||||
* "variables": {
|
|
||||||
* "result": 100,
|
|
||||||
* "factor": 0.5,
|
|
||||||
* "gender": "female"
|
|
||||||
* }
|
|
||||||
* }
|
|
||||||
*/
|
|
||||||
public function calculate(): ResponseInterface
|
|
||||||
{
|
|
||||||
try {
|
|
||||||
$data = $this->request->getJSON(true);
|
|
||||||
|
|
||||||
if (empty($data['formula'])) {
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'failed',
|
|
||||||
'message' => 'Formula is required'
|
|
||||||
], 400);
|
|
||||||
}
|
|
||||||
|
|
||||||
$result = $this->calculator->calculate(
|
|
||||||
$data['formula'],
|
|
||||||
$data['variables'] ?? []
|
|
||||||
);
|
|
||||||
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'success',
|
|
||||||
'data' => [
|
|
||||||
'result' => $result,
|
|
||||||
'formula' => $data['formula'],
|
|
||||||
'variables' => $data['variables'] ?? []
|
|
||||||
]
|
|
||||||
], 200);
|
|
||||||
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'failed',
|
|
||||||
'message' => $e->getMessage()
|
|
||||||
], 400);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* POST api/calculate/validate
|
|
||||||
* Validate a formula syntax
|
|
||||||
*
|
|
||||||
* Request: {
|
|
||||||
* "formula": "{result} * 2 + 5"
|
|
||||||
* }
|
|
||||||
*/
|
|
||||||
public function validateFormula(): ResponseInterface
|
|
||||||
{
|
|
||||||
try {
|
|
||||||
$data = $this->request->getJSON(true);
|
|
||||||
|
|
||||||
if (empty($data['formula'])) {
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'failed',
|
|
||||||
'message' => 'Formula is required'
|
|
||||||
], 400);
|
|
||||||
}
|
|
||||||
|
|
||||||
$validation = $this->calculator->validate($data['formula']);
|
|
||||||
|
|
||||||
return $this->respond([
|
|
||||||
'status' => $validation['valid'] ? 'success' : 'failed',
|
|
||||||
'data' => [
|
|
||||||
'valid' => $validation['valid'],
|
|
||||||
'error' => $validation['error'],
|
|
||||||
'variables' => $this->calculator->extractVariables($data['formula'])
|
|
||||||
]
|
|
||||||
], 200);
|
|
||||||
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'failed',
|
|
||||||
'message' => $e->getMessage()
|
|
||||||
], 400);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* POST api/calc/testsite/{testSiteID}
|
|
||||||
* Calculate using TestDefCal definition
|
|
||||||
*
|
|
||||||
* Request: {
|
|
||||||
* "result": 85,
|
|
||||||
* "gender": "female",
|
|
||||||
* "age": 30
|
|
||||||
* }
|
|
||||||
*/
|
|
||||||
public function calculateByTestSite($testSiteID): ResponseInterface
|
|
||||||
{
|
|
||||||
try {
|
|
||||||
$calcDef = $this->calcModel->existsByTestSiteID($testSiteID);
|
|
||||||
|
|
||||||
if (!$calcDef) {
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'failed',
|
|
||||||
'message' => 'No calculation defined for this test site'
|
|
||||||
], 404);
|
|
||||||
}
|
|
||||||
|
|
||||||
$testValues = $this->request->getJSON(true);
|
|
||||||
$result = $this->calculator->calculateFromDefinition($calcDef, $testValues);
|
|
||||||
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'success',
|
|
||||||
'data' => [
|
|
||||||
'result' => $result,
|
|
||||||
'testSiteID' => $testSiteID,
|
|
||||||
'formula' => $calcDef['FormulaCode'],
|
|
||||||
'variables' => $testValues
|
|
||||||
]
|
|
||||||
], 200);
|
|
||||||
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'failed',
|
|
||||||
'message' => $e->getMessage()
|
|
||||||
], 400);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* POST api/calc/testcode/{codeOrName}
|
|
||||||
* Evaluate a configured calculation by its code or name and return only the result map.
|
|
||||||
*/
|
|
||||||
public function calculateByCodeOrName($codeOrName): ResponseInterface
|
|
||||||
{
|
|
||||||
try {
|
|
||||||
$calcDef = $this->calcModel->findActiveByCodeOrName($codeOrName);
|
|
||||||
|
|
||||||
if (!$calcDef || empty($calcDef['FormulaCode'])) {
|
|
||||||
return $this->response->setJSON(new \stdClass());
|
|
||||||
}
|
|
||||||
|
|
||||||
$input = $this->request->getJSON(true);
|
|
||||||
$variables = is_array($input) ? $input : [];
|
|
||||||
|
|
||||||
$result = $this->calculator->calculate($calcDef['FormulaCode'], $variables);
|
|
||||||
|
|
||||||
if ($result === null) {
|
|
||||||
return $this->response->setJSON(new \stdClass());
|
|
||||||
}
|
|
||||||
|
|
||||||
$responseKey = $calcDef['TestSiteCode'] ?? strtoupper($codeOrName);
|
|
||||||
|
|
||||||
return $this->response->setJSON([ $responseKey => $result ]);
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
log_message('error', "Calc lookup failed for {$codeOrName}: " . $e->getMessage());
|
|
||||||
return $this->response->setJSON(new \stdClass());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,133 +0,0 @@
|
|||||||
<?php
|
|
||||||
namespace App\Controllers\Contact;
|
|
||||||
|
|
||||||
use App\Traits\PatchValidationTrait;
|
|
||||||
use App\Traits\ResponseTrait;
|
|
||||||
use App\Controllers\BaseController;
|
|
||||||
use App\Libraries\ValueSet;
|
|
||||||
use App\Models\Contact\ContactModel;
|
|
||||||
|
|
||||||
class ContactController extends BaseController {
|
|
||||||
use ResponseTrait;
|
|
||||||
use PatchValidationTrait;
|
|
||||||
|
|
||||||
protected $db;
|
|
||||||
protected $model;
|
|
||||||
protected $rules;
|
|
||||||
protected $patchRules;
|
|
||||||
|
|
||||||
public function __construct() {
|
|
||||||
$this->db = \Config\Database::connect();
|
|
||||||
$this->model = new ContactModel();
|
|
||||||
$this->rules = [ 'NameFirst' => 'required' ];
|
|
||||||
$this->patchRules = [ 'NameFirst' => 'permit_empty' ];
|
|
||||||
}
|
|
||||||
|
|
||||||
public function index() {
|
|
||||||
$ContactName = $this->request->getVar('ContactName');
|
|
||||||
$Specialty = $this->request->getVar('Specialty');
|
|
||||||
$rows = $this->model->getContacts($ContactName, $Specialty);
|
|
||||||
|
|
||||||
if (empty($rows)) {
|
|
||||||
return $this->respond([ 'status' => 'success', 'message' => "no Data.", 'data' => [] ], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
$rows = ValueSet::transformLabels($rows, [
|
|
||||||
'Specialty' => 'specialty',
|
|
||||||
'Occupation' => 'occupation',
|
|
||||||
]);
|
|
||||||
|
|
||||||
return $this->respond([ 'status' => 'success', 'message'=> "fetch success", 'data' => $rows ], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function show($ContactID = null) {
|
|
||||||
$model = new ContactModel();
|
|
||||||
$row = $model->getContactWithDetail($ContactID);
|
|
||||||
|
|
||||||
if (empty($row)) {
|
|
||||||
return $this->respond([ 'status' => 'success', 'message' => "no Data.", 'data' => null ], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
$row = ValueSet::transformLabels([$row], [
|
|
||||||
'Specialty' => 'specialty',
|
|
||||||
'Occupation' => 'occupation',
|
|
||||||
])[0];
|
|
||||||
|
|
||||||
return $this->respond([ 'status' => 'success', 'message'=> "fetch success", 'data' => $row ], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function delete() {
|
|
||||||
try {
|
|
||||||
$input = $this->request->getJSON(true);
|
|
||||||
$ContactID = $input["ContactID"];
|
|
||||||
if (!$ContactID) { return $this->failValidationErrors('ContactID is required.'); }
|
|
||||||
$this->model->delete($ContactID);
|
|
||||||
return $this->respondDeleted([ 'status' => 'success', 'message' => "Contact with {$ContactID} deleted successfully."]);
|
|
||||||
} catch (\Throwable $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function create() {
|
|
||||||
$input = $this->request->getJSON(true);
|
|
||||||
if (!$this->validateData($input, $this->rules)) { return $this->failValidationErrors($this->validator->getErrors()); }
|
|
||||||
try {
|
|
||||||
$result = $this->model->saveContact($input);
|
|
||||||
|
|
||||||
if (($result['status'] ?? 'error') !== 'success') {
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'failed',
|
|
||||||
'message' => $result['message'] ?? 'Failed to create contact',
|
|
||||||
'data' => []
|
|
||||||
], 400);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->respondCreated([ 'status' => 'success', 'message' => 'data created successfully', 'data' => $result ], 201);
|
|
||||||
} catch (\Throwable $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function update($ContactID = null) {
|
|
||||||
$input = $this->requirePatchPayload($this->request->getJSON(true));
|
|
||||||
if ($input === null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$id = $this->requirePatchId($ContactID, 'ContactID');
|
|
||||||
if ($id === null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$existing = $this->model->find($id);
|
|
||||||
if (!$existing) {
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'failed',
|
|
||||||
'message' => 'Contact not found',
|
|
||||||
'data' => []
|
|
||||||
], 404);
|
|
||||||
}
|
|
||||||
|
|
||||||
$validationInput = array_intersect_key($input, $this->patchRules);
|
|
||||||
if (!empty($validationInput) && !$this->validateData($validationInput, $this->patchRules)) {
|
|
||||||
return $this->failValidationErrors($this->validator->getErrors());
|
|
||||||
}
|
|
||||||
|
|
||||||
$input['ContactID'] = $id;
|
|
||||||
try {
|
|
||||||
$result = $this->model->saveContact($input);
|
|
||||||
|
|
||||||
if (($result['status'] ?? 'error') !== 'success') {
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'failed',
|
|
||||||
'message' => $result['message'] ?? 'Failed to update contact',
|
|
||||||
'data' => []
|
|
||||||
], 400);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->respond([ 'status' => 'success', 'message' => 'data updated successfully', 'data' => $result ], 200);
|
|
||||||
} catch (\Throwable $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,68 +0,0 @@
|
|||||||
<?php
|
|
||||||
namespace App\Controllers\Contact;
|
|
||||||
|
|
||||||
use App\Traits\ResponseTrait;
|
|
||||||
use App\Controllers\BaseController;
|
|
||||||
use App\Models\Contact\MedicalSpecialtyModel;
|
|
||||||
|
|
||||||
class MedicalSpecialtyController extends BaseController {
|
|
||||||
use ResponseTrait;
|
|
||||||
|
|
||||||
protected $db;
|
|
||||||
protected $model;
|
|
||||||
protected $rules;
|
|
||||||
|
|
||||||
public function __construct() {
|
|
||||||
$this->db = \Config\Database::connect();
|
|
||||||
$this->model = new MedicalSpecialtyModel();
|
|
||||||
$this->rules = [ 'SpecialtyText' => 'required' ];
|
|
||||||
}
|
|
||||||
|
|
||||||
public function index() {
|
|
||||||
$Parent = $this->request->getVar('Parent');
|
|
||||||
$SpecialtyText = $this->request->getVar('SpecialtyText');
|
|
||||||
$rows = $this->model->getOccupations($Parent,$SpecialtyText);
|
|
||||||
|
|
||||||
if (empty($rows)) {
|
|
||||||
return $this->respond([ 'status' => 'success', 'message' => "no Data."], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->respond([ 'status' => 'success', 'message'=> "fetch success", 'data' => $rows ], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function show($SpecialtyID = null) {
|
|
||||||
$model = new MedicalSpecialtyModel();
|
|
||||||
$row = $model->find($SpecialtyID);
|
|
||||||
if (empty($row)) {
|
|
||||||
return $this->respond([ 'status' => 'success', 'message' => "no Data.", 'data' => null], 200);
|
|
||||||
}
|
|
||||||
return $this->respond([ 'status' => 'success', 'message'=> "fetch success", 'data' => $row ], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function create() {
|
|
||||||
$input = $this->request->getJSON(true);
|
|
||||||
try {
|
|
||||||
$this->model->insert($input);
|
|
||||||
$id = $this->model->getInsertID();
|
|
||||||
return $this->respondCreated([ 'status' => 'success', 'message' => 'data created successfully', 'data' => $id ], 201);
|
|
||||||
} catch (\Throwable $e) {
|
|
||||||
$this->db->transRollback();
|
|
||||||
return $this->failServerError('Exception : ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function update($SpecialtyID = null) {
|
|
||||||
$input = $this->request->getJSON(true);
|
|
||||||
if (!$SpecialtyID || !ctype_digit((string) $SpecialtyID)) {
|
|
||||||
return $this->respond(['status' => 'error', 'message' => 'SpecialtyID is required and must be a valid integer'], 400);
|
|
||||||
}
|
|
||||||
$input['SpecialtyID'] = (int) $SpecialtyID;
|
|
||||||
try {
|
|
||||||
$this->model->update($input['SpecialtyID'], $input);
|
|
||||||
return $this->respondCreated([ 'status' => 'success', 'message' => 'Data updated successfully', 'data' => $input['SpecialtyID'] ], 201);
|
|
||||||
} catch (\Throwable $e) {
|
|
||||||
return $this->failServerError('Exception : ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@ -1,68 +0,0 @@
|
|||||||
<?php
|
|
||||||
namespace App\Controllers\Contact;
|
|
||||||
|
|
||||||
use App\Traits\ResponseTrait;
|
|
||||||
use App\Controllers\BaseController;
|
|
||||||
use App\Models\Contact\OccupationModel;
|
|
||||||
|
|
||||||
class OccupationController extends BaseController {
|
|
||||||
use ResponseTrait;
|
|
||||||
|
|
||||||
protected $db;
|
|
||||||
protected $model;
|
|
||||||
protected $rules;
|
|
||||||
|
|
||||||
public function __construct() {
|
|
||||||
$this->db = \Config\Database::connect();
|
|
||||||
$this->model = new OccupationModel();
|
|
||||||
$this->rules = [ 'OccCode' => 'required','OccText' => 'required' ];
|
|
||||||
}
|
|
||||||
|
|
||||||
public function index() {
|
|
||||||
$OccCode = $this->request->getVar('OccCode');
|
|
||||||
$OccText = $this->request->getVar('OccText');
|
|
||||||
$rows = $this->model->getOccupations($OccCode,$OccText);
|
|
||||||
|
|
||||||
if (empty($rows)) {
|
|
||||||
return $this->respond([ 'status' => 'success', 'message' => "no Data."], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->respond([ 'status' => 'success', 'message'=> "fetch success", 'data' => $rows ], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function show($OccupationID = null) {
|
|
||||||
$model = new OccupationModel();
|
|
||||||
$row = $model->find($OccupationID);
|
|
||||||
if (empty($row)) {
|
|
||||||
return $this->respond([ 'status' => 'success', 'message' => "no Data.", 'data' => null ], 200);
|
|
||||||
}
|
|
||||||
return $this->respond([ 'status' => 'success', 'message'=> "fetch success", 'data' => $row ], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function create() {
|
|
||||||
$input = $this->request->getJSON(true);
|
|
||||||
try {
|
|
||||||
$this->model->insert($input);
|
|
||||||
$id = $this->model->getInsertID();
|
|
||||||
return $this->respondCreated([ 'status' => 'success', 'message' => 'data created successfully', 'data' => $id ], 201);
|
|
||||||
} catch (\Throwable $e) {
|
|
||||||
$this->db->transRollback();
|
|
||||||
return $this->failServerError('Exception : ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function update($OccupationID = null) {
|
|
||||||
$input = $this->request->getJSON(true);
|
|
||||||
if (!$OccupationID || !ctype_digit((string) $OccupationID)) {
|
|
||||||
return $this->respond(['status' => 'error', 'message' => 'OccupationID is required and must be a valid integer'], 400);
|
|
||||||
}
|
|
||||||
$input['OccupationID'] = (int) $OccupationID;
|
|
||||||
try {
|
|
||||||
$this->model->update($input['OccupationID'], $input);
|
|
||||||
return $this->respondCreated([ 'status' => 'success', 'message' => 'Data updated successfully', 'data' => $input['OccupationID'] ], 201);
|
|
||||||
} catch (\Throwable $e) {
|
|
||||||
return $this->failServerError('Exception : ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@ -1,69 +0,0 @@
|
|||||||
<?php
|
|
||||||
namespace App\Controllers;
|
|
||||||
|
|
||||||
use App\Traits\ResponseTrait;
|
|
||||||
use App\Controllers\BaseController;
|
|
||||||
use App\Models\CounterModel;
|
|
||||||
|
|
||||||
class CounterController extends BaseController {
|
|
||||||
use ResponseTrait;
|
|
||||||
|
|
||||||
protected $model;
|
|
||||||
public function __construct() {
|
|
||||||
$this->model = new CounterModel();
|
|
||||||
}
|
|
||||||
|
|
||||||
public function index() {
|
|
||||||
$rows = $this->model->findAll();
|
|
||||||
|
|
||||||
if (empty($rows)) {
|
|
||||||
return $this->respond([ 'status' => 'success', 'message' => "No Data.", 'data' => [] ], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->respond([ 'status' => 'success', 'message'=> "Data fetched successfully", 'data' => $rows ], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function show($CounterID = null) {
|
|
||||||
$row = $this->model->find($CounterID);
|
|
||||||
|
|
||||||
if (empty($row)) {
|
|
||||||
return $this->respond([ 'status' => 'success', 'message' => "No Data.", 'data' => null ], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->respond([ 'status' => 'success', 'message'=> "Data fetched successfully", 'data' => $row ], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function create() {
|
|
||||||
$input = $this->request->getJSON(true);
|
|
||||||
try {
|
|
||||||
$id = $this->model->insert($input,true);
|
|
||||||
return $this->respondCreated([ 'status' => 'success', 'message' => 'Data created successfully', 'data' => $id ], 201);
|
|
||||||
} catch (\Throwable $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function update($CounterID = null) {
|
|
||||||
$input = $this->request->getJSON(true);
|
|
||||||
if (!$CounterID || !ctype_digit((string) $CounterID)) {
|
|
||||||
return $this->respond(['status' => 'error', 'message' => 'CounterID is required and must be a valid integer'], 400);
|
|
||||||
}
|
|
||||||
$input['CounterID'] = (int) $CounterID;
|
|
||||||
try {
|
|
||||||
$this->model->update($input['CounterID'], $input);
|
|
||||||
return $this->respondCreated([ 'status' => 'success', 'message' => 'Data updated successfully', 'data' => $input['CounterID'] ], 201);
|
|
||||||
} catch (\Throwable $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function delete() {
|
|
||||||
$input = $this->request->getJSON(true);
|
|
||||||
try {
|
|
||||||
$this->model->delete($input['CounterID'], $input);
|
|
||||||
return $this->respondCreated([ 'status' => 'success', 'message' => 'Data deleted successfully', 'data' => $input['CounterID'] ], 201);
|
|
||||||
} catch (\Throwable $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,36 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace App\Controllers;
|
|
||||||
|
|
||||||
use App\Traits\ResponseTrait;
|
|
||||||
use CodeIgniter\Controller;
|
|
||||||
|
|
||||||
use Firebase\JWT\JWT;
|
|
||||||
use Firebase\JWT\Key;
|
|
||||||
use Firebase\JWT\ExpiredException;
|
|
||||||
use Firebase\JWT\SignatureInvalidException;
|
|
||||||
use Firebase\JWT\BeforeValidException;
|
|
||||||
use CodeIgniter\Cookie\Cookie;
|
|
||||||
|
|
||||||
class DashboardController extends Controller
|
|
||||||
{
|
|
||||||
use ResponseTrait;
|
|
||||||
|
|
||||||
public function index()
|
|
||||||
{
|
|
||||||
|
|
||||||
$token = $this->request->getCookie('token');
|
|
||||||
$key = getenv('JWT_SECRET');
|
|
||||||
|
|
||||||
// Decode Token dengan Key yg ada di .env
|
|
||||||
$decodedPayload = JWT::decode($token, new Key($key, 'HS256'));
|
|
||||||
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'success',
|
|
||||||
'code' => 200,
|
|
||||||
'message' => 'Authenticated',
|
|
||||||
'data' => $decodedPayload
|
|
||||||
], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@ -1,169 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace App\Controllers;
|
|
||||||
|
|
||||||
use App\Traits\ResponseTrait;
|
|
||||||
use CodeIgniter\Controller;
|
|
||||||
|
|
||||||
class EdgeController extends Controller
|
|
||||||
{
|
|
||||||
use ResponseTrait;
|
|
||||||
|
|
||||||
protected $db;
|
|
||||||
protected $edgeResModel;
|
|
||||||
|
|
||||||
public function __construct()
|
|
||||||
{
|
|
||||||
$this->db = \Config\Database::connect();
|
|
||||||
$this->edgeResModel = new \App\Models\EdgeResModel();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* POST /api/edge/result
|
|
||||||
* Receive results from tiny-edge
|
|
||||||
*/
|
|
||||||
public function results()
|
|
||||||
{
|
|
||||||
try {
|
|
||||||
$input = $this->request->getJSON(true);
|
|
||||||
|
|
||||||
if (empty($input)) {
|
|
||||||
return $this->failValidationErrors('Invalid JSON payload');
|
|
||||||
}
|
|
||||||
|
|
||||||
// Extract key fields from payload
|
|
||||||
$sampleId = $input['sample_id'] ?? null;
|
|
||||||
$instrumentId = $input['instrument_id'] ?? null;
|
|
||||||
$patientId = $input['patient_id'] ?? null;
|
|
||||||
|
|
||||||
// Store in edgeres table
|
|
||||||
$data = [
|
|
||||||
'SiteID' => 1, // Default site, can be configured
|
|
||||||
'InstrumentID' => $instrumentId,
|
|
||||||
'SampleID' => $sampleId,
|
|
||||||
'PatientID' => $patientId,
|
|
||||||
'Payload' => json_encode($input),
|
|
||||||
'Status' => 'pending',
|
|
||||||
'AutoProcess' => 0, // Default to manual processing
|
|
||||||
'CreateDate' => date('Y-m-d H:i:s')
|
|
||||||
];
|
|
||||||
|
|
||||||
$id = $this->edgeResModel->insert($data);
|
|
||||||
|
|
||||||
if (!$id) {
|
|
||||||
return $this->failServerError('Failed to save result');
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->respondCreated([
|
|
||||||
'status' => 'success',
|
|
||||||
'message' => 'Result received and queued',
|
|
||||||
'data' => [
|
|
||||||
'edge_res_id' => $id,
|
|
||||||
'sample_id' => $sampleId,
|
|
||||||
'instrument_id' => $instrumentId
|
|
||||||
]
|
|
||||||
]);
|
|
||||||
|
|
||||||
} catch (\Throwable $e) {
|
|
||||||
return $this->failServerError('Error processing result: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* GET /api/edge/order
|
|
||||||
* Return pending orders for an instrument
|
|
||||||
*/
|
|
||||||
public function orders()
|
|
||||||
{
|
|
||||||
try {
|
|
||||||
$instrumentId = $this->request->getGet('instrument');
|
|
||||||
|
|
||||||
if (!$instrumentId) {
|
|
||||||
return $this->failValidationErrors('instrument parameter is required');
|
|
||||||
}
|
|
||||||
|
|
||||||
// TODO: Implement order fetching logic
|
|
||||||
// For now, return empty array
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'success',
|
|
||||||
'message' => 'Orders fetched',
|
|
||||||
'data' => []
|
|
||||||
]);
|
|
||||||
|
|
||||||
} catch (\Throwable $e) {
|
|
||||||
return $this->failServerError('Error fetching orders: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* POST /api/edge/order/:id/ack
|
|
||||||
* Acknowledge order delivery
|
|
||||||
*/
|
|
||||||
public function ack($orderId = null)
|
|
||||||
{
|
|
||||||
try {
|
|
||||||
if (!$orderId) {
|
|
||||||
return $this->failValidationErrors('Order ID is required');
|
|
||||||
}
|
|
||||||
|
|
||||||
$input = $this->request->getJSON(true);
|
|
||||||
$instrumentId = $input['instrument_id'] ?? null;
|
|
||||||
|
|
||||||
// Log acknowledgment
|
|
||||||
$this->db->table('edgeack')->insert([
|
|
||||||
'OrderID' => $orderId,
|
|
||||||
'InstrumentID' => $instrumentId,
|
|
||||||
'AckDate' => date('Y-m-d H:i:s'),
|
|
||||||
'CreateDate' => date('Y-m-d H:i:s')
|
|
||||||
]);
|
|
||||||
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'success',
|
|
||||||
'message' => 'Order acknowledged',
|
|
||||||
'data' => [
|
|
||||||
'order_id' => $orderId
|
|
||||||
]
|
|
||||||
]);
|
|
||||||
|
|
||||||
} catch (\Throwable $e) {
|
|
||||||
return $this->failServerError('Error acknowledging order: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* POST /api/edge/status
|
|
||||||
* Log instrument status
|
|
||||||
*/
|
|
||||||
public function status()
|
|
||||||
{
|
|
||||||
try {
|
|
||||||
$input = $this->request->getJSON(true);
|
|
||||||
|
|
||||||
$instrumentId = $input['instrument_id'] ?? null;
|
|
||||||
$status = $input['status'] ?? null;
|
|
||||||
$lastActivity = $input['last_activity'] ?? null;
|
|
||||||
$timestamp = $input['timestamp'] ?? date('Y-m-d H:i:s');
|
|
||||||
|
|
||||||
if (!$instrumentId || !$status) {
|
|
||||||
return $this->failValidationErrors('instrument_id and status are required');
|
|
||||||
}
|
|
||||||
|
|
||||||
// Store status log
|
|
||||||
$this->db->table('edgestatus')->insert([
|
|
||||||
'InstrumentID' => $instrumentId,
|
|
||||||
'Status' => $status,
|
|
||||||
'LastActivity' => $lastActivity,
|
|
||||||
'Timestamp' => $timestamp,
|
|
||||||
'CreateDate' => date('Y-m-d H:i:s')
|
|
||||||
]);
|
|
||||||
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'success',
|
|
||||||
'message' => 'Status logged'
|
|
||||||
]);
|
|
||||||
|
|
||||||
} catch (\Throwable $e) {
|
|
||||||
return $this->failServerError('Error logging status: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
11
app/Controllers/Home.php
Normal file
11
app/Controllers/Home.php
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Controllers;
|
||||||
|
|
||||||
|
class Home extends BaseController
|
||||||
|
{
|
||||||
|
public function index(): string
|
||||||
|
{
|
||||||
|
return view('welcome_message');
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -1,33 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace App\Controllers;
|
|
||||||
|
|
||||||
use App\Traits\ResponseTrait;
|
|
||||||
use CodeIgniter\Controller;
|
|
||||||
|
|
||||||
use Firebase\JWT\JWT;
|
|
||||||
use Firebase\JWT\Key;
|
|
||||||
use Firebase\JWT\ExpiredException;
|
|
||||||
use Firebase\JWT\SignatureInvalidException;
|
|
||||||
use Firebase\JWT\BeforeValidException;
|
|
||||||
use CodeIgniter\Cookie\Cookie;
|
|
||||||
|
|
||||||
class HomeController extends Controller {
|
|
||||||
use ResponseTrait;
|
|
||||||
|
|
||||||
public function index() {
|
|
||||||
|
|
||||||
// $token = $this->request->getCookie('token');
|
|
||||||
// $key = getenv('JWT_SECRET');
|
|
||||||
|
|
||||||
// // Decode Token dengan Key yg ada di .env
|
|
||||||
// $decodedPayload = JWT::decode($token, new Key($key, 'HS256'));
|
|
||||||
|
|
||||||
// return $this->respond([
|
|
||||||
// 'status' => 'success',
|
|
||||||
// 'code' => 200,
|
|
||||||
// 'message' => 'Authenticated',
|
|
||||||
// 'data' => $decodedPayload
|
|
||||||
// ], 200);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,116 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace App\Controllers\Infrastructure;
|
|
||||||
|
|
||||||
use App\Controllers\BaseController;
|
|
||||||
use App\Traits\ResponseTrait;
|
|
||||||
use App\Models\Infrastructure\EquipmentListModel;
|
|
||||||
|
|
||||||
class EquipmentListController extends BaseController {
|
|
||||||
use ResponseTrait;
|
|
||||||
|
|
||||||
protected $db;
|
|
||||||
protected $model;
|
|
||||||
|
|
||||||
public function __construct() {
|
|
||||||
$this->db = \Config\Database::connect();
|
|
||||||
$this->model = new EquipmentListModel();
|
|
||||||
}
|
|
||||||
|
|
||||||
public function index() {
|
|
||||||
$filter = [
|
|
||||||
'IEID' => $this->request->getVar('IEID'),
|
|
||||||
'InstrumentName' => $this->request->getVar('InstrumentName'),
|
|
||||||
'DepartmentID' => $this->request->getVar('DepartmentID'),
|
|
||||||
'WorkstationID' => $this->request->getVar('WorkstationID'),
|
|
||||||
'isEnable' => $this->request->getVar('isEnable'),
|
|
||||||
];
|
|
||||||
|
|
||||||
$rows = $this->model->getEquipmentLists($filter);
|
|
||||||
|
|
||||||
if (empty($rows)) {
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'success',
|
|
||||||
'message' => 'no Data.',
|
|
||||||
'data' => []
|
|
||||||
], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'success',
|
|
||||||
'message' => 'fetch success',
|
|
||||||
'data' => $rows
|
|
||||||
], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function show($EID = null) {
|
|
||||||
$row = $this->model->getEquipmentList($EID);
|
|
||||||
|
|
||||||
if (empty($row)) {
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'success',
|
|
||||||
'message' => 'no Data.',
|
|
||||||
'data' => null
|
|
||||||
], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'success',
|
|
||||||
'message' => 'fetch success',
|
|
||||||
'data' => $row
|
|
||||||
], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function create() {
|
|
||||||
$input = $this->request->getJSON(true);
|
|
||||||
|
|
||||||
try {
|
|
||||||
$EID = $this->model->insert($input, true);
|
|
||||||
return $this->respondCreated([
|
|
||||||
'status' => 'success',
|
|
||||||
'message' => 'data created successfully',
|
|
||||||
'data' => $EID
|
|
||||||
], 201);
|
|
||||||
} catch (\Throwable $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function update($EID = null) {
|
|
||||||
$input = $this->request->getJSON(true);
|
|
||||||
|
|
||||||
try {
|
|
||||||
if (!$EID || !ctype_digit((string) $EID)) {
|
|
||||||
return $this->failValidationErrors('EID is required.');
|
|
||||||
}
|
|
||||||
$input['EID'] = (int) $EID;
|
|
||||||
$this->model->update($EID, $input);
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'success',
|
|
||||||
'message' => 'data updated successfully',
|
|
||||||
'data' => $EID
|
|
||||||
], 200);
|
|
||||||
} catch (\Throwable $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function delete() {
|
|
||||||
try {
|
|
||||||
$input = $this->request->getJSON(true);
|
|
||||||
$EID = $input['EID'];
|
|
||||||
|
|
||||||
if (!$EID) {
|
|
||||||
return $this->failValidationErrors('EID is required.');
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->model->delete($EID);
|
|
||||||
return $this->respondDeleted([
|
|
||||||
'status' => 'success',
|
|
||||||
'message' => "{$EID} deleted successfully."
|
|
||||||
]);
|
|
||||||
} catch (\Throwable $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,126 +0,0 @@
|
|||||||
<?php
|
|
||||||
namespace App\Controllers;
|
|
||||||
|
|
||||||
use App\Traits\PatchValidationTrait;
|
|
||||||
use App\Traits\ResponseTrait;
|
|
||||||
use App\Controllers\BaseController;
|
|
||||||
use App\Models\Location\LocationModel;
|
|
||||||
|
|
||||||
class LocationController extends BaseController {
|
|
||||||
use ResponseTrait;
|
|
||||||
use PatchValidationTrait;
|
|
||||||
|
|
||||||
protected $model;
|
|
||||||
protected $rules;
|
|
||||||
protected $patchRules;
|
|
||||||
|
|
||||||
public function __construct() {
|
|
||||||
$this->model = new LocationModel();
|
|
||||||
$this->rules = [
|
|
||||||
'LocCode' => 'required|max_length[6]',
|
|
||||||
'LocFull' => 'required',
|
|
||||||
];
|
|
||||||
$this->patchRules = [
|
|
||||||
'SiteID' => 'permit_empty|is_natural_no_zero',
|
|
||||||
'LocCode' => 'permit_empty|max_length[6]',
|
|
||||||
'Parent' => 'permit_empty|is_natural',
|
|
||||||
'LocFull' => 'permit_empty',
|
|
||||||
'Description' => 'permit_empty|max_length[255]',
|
|
||||||
'LocType' => 'permit_empty',
|
|
||||||
'Street1' => 'permit_empty|max_length[255]',
|
|
||||||
'Street2' => 'permit_empty|max_length[255]',
|
|
||||||
'City' => 'permit_empty|max_length[255]',
|
|
||||||
'Province' => 'permit_empty|max_length[255]',
|
|
||||||
'PostCode' => 'permit_empty|max_length[20]',
|
|
||||||
'GeoLocationSystem' => 'permit_empty|max_length[255]',
|
|
||||||
'GeoLocationData' => 'permit_empty|max_length[255]',
|
|
||||||
'Phone' => 'permit_empty|max_length[20]',
|
|
||||||
'Email' => 'permit_empty|valid_email|max_length[255]',
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
||||||
public function index() {
|
|
||||||
$LocName = $this->request->getVar('LocName');
|
|
||||||
$LocCode = $this->request->getVar('LocCode');
|
|
||||||
$rows = $this->model->getLocations($LocCode,$LocName);
|
|
||||||
if (empty($rows)) {
|
|
||||||
return $this->respond([ 'status' => 'success', 'message' => "no Data.", 'data' => [] ], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->respond([ 'status' => 'success', 'message'=> "fetch success", 'data' => $rows ], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function show($LocationID = null) {
|
|
||||||
$row = $this->model->getLocation($LocationID);
|
|
||||||
if (empty($row)) {
|
|
||||||
return $this->respond([ 'status' => 'success', 'message' => "no Data.", 'data' => null ], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->respond([ 'status' => 'success', 'message'=> "fetch success", 'data' => $row ], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function create() {
|
|
||||||
$input = $this->request->getJSON(true);
|
|
||||||
if (!$this->validateData($input, $this->rules)) { return $this->failValidationErrors($this->validator->getErrors()); }
|
|
||||||
try {
|
|
||||||
$result = $this->model->saveLocation($input);
|
|
||||||
return $this->respondCreated([ 'status' => 'success', 'message' => 'data created successfully', 'data' => $result ], 201);
|
|
||||||
} catch (\Throwable $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function update($LocationID = null) {
|
|
||||||
$input = $this->requirePatchPayload($this->request->getJSON(true));
|
|
||||||
if ($input === null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$id = $this->requirePatchId($LocationID, 'LocationID');
|
|
||||||
if ($id === null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$existing = $this->model->find($id);
|
|
||||||
if (!$existing) {
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'failed',
|
|
||||||
'message' => 'Location not found',
|
|
||||||
'data' => []
|
|
||||||
], 404);
|
|
||||||
}
|
|
||||||
|
|
||||||
$validationInput = array_intersect_key($input, $this->patchRules);
|
|
||||||
if ($validationInput === []) {
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'failed',
|
|
||||||
'message' => 'No valid fields provided for update.',
|
|
||||||
'data' => []
|
|
||||||
], 422);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!$this->validateData($validationInput, $this->patchRules)) {
|
|
||||||
return $this->failValidationErrors($this->validator->getErrors());
|
|
||||||
}
|
|
||||||
|
|
||||||
$input['LocationID'] = $id;
|
|
||||||
try {
|
|
||||||
$result = $this->model->saveLocation($input);
|
|
||||||
return $this->respond([ 'status' => 'success', 'message' => 'data updated successfully', 'data' => $result ], 200);
|
|
||||||
} catch (\Throwable $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function delete() {
|
|
||||||
$input = $this->request->getJSON(true);
|
|
||||||
try {
|
|
||||||
$LocationID = $input["LocationID"];
|
|
||||||
$this->model->deleteLocation($LocationID);
|
|
||||||
return $this->respondDeleted([ 'status' => 'success', 'message' => "Location with {$LocationID} deleted successfully." ]);
|
|
||||||
} catch (\Throwable $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@ -1,295 +0,0 @@
|
|||||||
<?php
|
|
||||||
namespace App\Controllers;
|
|
||||||
|
|
||||||
use App\Traits\ResponseTrait;
|
|
||||||
use CodeIgniter\Controller;
|
|
||||||
use App\Libraries\ValueSet;
|
|
||||||
use App\Models\OrderTest\OrderTestModel;
|
|
||||||
use App\Models\Patient\PatientModel;
|
|
||||||
use App\Models\PatVisit\PatVisitModel;
|
|
||||||
|
|
||||||
class OrderTestController extends Controller {
|
|
||||||
use ResponseTrait;
|
|
||||||
|
|
||||||
protected $db;
|
|
||||||
protected $model;
|
|
||||||
protected $patientModel;
|
|
||||||
protected $visitModel;
|
|
||||||
protected $rules;
|
|
||||||
|
|
||||||
public function __construct() {
|
|
||||||
$this->db = \Config\Database::connect();
|
|
||||||
$this->model = new OrderTestModel();
|
|
||||||
$this->patientModel = new PatientModel();
|
|
||||||
$this->visitModel = new PatVisitModel();
|
|
||||||
$this->rules = [
|
|
||||||
'InternalPID' => 'required|is_natural'
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
||||||
public function index() {
|
|
||||||
$internalPID = $this->request->getVar('InternalPID');
|
|
||||||
$includeDetails = $this->request->getVar('include') === 'details';
|
|
||||||
|
|
||||||
try {
|
|
||||||
if ($internalPID) {
|
|
||||||
$rows = $this->model->getOrdersByPatient($internalPID);
|
|
||||||
} else {
|
|
||||||
$rows = $this->db->table('ordertest')
|
|
||||||
->where('DelDate', null)
|
|
||||||
->orderBy('TrnDate', 'DESC')
|
|
||||||
->get()
|
|
||||||
->getResultArray();
|
|
||||||
}
|
|
||||||
|
|
||||||
$rows = ValueSet::transformLabels($rows, [
|
|
||||||
'Priority' => 'order_priority',
|
|
||||||
'OrderStatus' => 'order_status',
|
|
||||||
]);
|
|
||||||
|
|
||||||
if ($includeDetails && !empty($rows)) {
|
|
||||||
foreach ($rows as &$row) {
|
|
||||||
$row['Specimens'] = $this->getOrderSpecimens($row['InternalOID']);
|
|
||||||
$row['Tests'] = $this->getOrderTests($row['InternalOID']);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'success',
|
|
||||||
'message' => 'Data fetched successfully',
|
|
||||||
'data' => $rows
|
|
||||||
], 200);
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function show($orderID = null) {
|
|
||||||
try {
|
|
||||||
$row = $this->model->getOrder($orderID);
|
|
||||||
if (empty($row)) {
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'success',
|
|
||||||
'message' => 'Data not found.',
|
|
||||||
'data' => null
|
|
||||||
], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
$row = ValueSet::transformLabels([$row], [
|
|
||||||
'Priority' => 'order_priority',
|
|
||||||
'OrderStatus' => 'order_status',
|
|
||||||
])[0];
|
|
||||||
|
|
||||||
// Include specimens and tests
|
|
||||||
$row['Specimens'] = $this->getOrderSpecimens($row['InternalOID']);
|
|
||||||
$row['Tests'] = $this->getOrderTests($row['InternalOID']);
|
|
||||||
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'success',
|
|
||||||
'message' => 'Data fetched successfully',
|
|
||||||
'data' => $row
|
|
||||||
], 200);
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private function getOrderSpecimens($internalOID) {
|
|
||||||
$specimens = $this->db->table('specimen s')
|
|
||||||
->select('s.*, cd.ConCode, cd.ConName')
|
|
||||||
->join('containerdef cd', 'cd.ConDefID = s.ConDefID', 'left')
|
|
||||||
->where('s.OrderID', $internalOID)
|
|
||||||
->where('s.EndDate IS NULL')
|
|
||||||
->get()
|
|
||||||
->getResultArray();
|
|
||||||
|
|
||||||
// Get status for each specimen
|
|
||||||
foreach ($specimens as &$specimen) {
|
|
||||||
$status = $this->db->table('specimenstatus')
|
|
||||||
->where('SID', $specimen['SID'])
|
|
||||||
->where('EndDate IS NULL')
|
|
||||||
->orderBy('CreateDate', 'DESC')
|
|
||||||
->get()
|
|
||||||
->getRowArray();
|
|
||||||
$specimen['Status'] = $status['SpcStatus'] ?? 'PENDING';
|
|
||||||
}
|
|
||||||
|
|
||||||
return $specimens;
|
|
||||||
}
|
|
||||||
|
|
||||||
private function getOrderTests($internalOID) {
|
|
||||||
$tests = $this->db->table('patres pr')
|
|
||||||
->select('pr.*, tds.TestSiteCode, tds.TestSiteName, tds.TestType, tds.SeqScr AS TestSeqScr, tds.SeqRpt AS TestSeqRpt, tds.DisciplineID, d.DisciplineCode, d.DisciplineName, d.SeqScr AS DisciplineSeqScr, d.SeqRpt AS DisciplineSeqRpt')
|
|
||||||
->join('testdefsite tds', 'tds.TestSiteID = pr.TestSiteID', 'left')
|
|
||||||
->join('discipline d', 'd.DisciplineID = tds.DisciplineID', 'left')
|
|
||||||
->where('pr.OrderID', $internalOID)
|
|
||||||
->where('pr.DelDate IS NULL')
|
|
||||||
->orderBy('COALESCE(d.SeqScr, 999999) ASC')
|
|
||||||
->orderBy('COALESCE(d.SeqRpt, 999999) ASC')
|
|
||||||
->orderBy('COALESCE(tds.SeqScr, 999999) ASC')
|
|
||||||
->orderBy('COALESCE(tds.SeqRpt, 999999) ASC')
|
|
||||||
->orderBy('pr.ResultID ASC')
|
|
||||||
->get()
|
|
||||||
->getResultArray();
|
|
||||||
|
|
||||||
foreach ($tests as &$test) {
|
|
||||||
$discipline = [
|
|
||||||
'DisciplineID' => $test['DisciplineID'] ?? null,
|
|
||||||
'DisciplineCode' => $test['DisciplineCode'] ?? null,
|
|
||||||
'DisciplineName' => $test['DisciplineName'] ?? null,
|
|
||||||
'SeqScr' => $test['DisciplineSeqScr'] ?? null,
|
|
||||||
'SeqRpt' => $test['DisciplineSeqRpt'] ?? null,
|
|
||||||
];
|
|
||||||
|
|
||||||
$test['Discipline'] = $discipline;
|
|
||||||
$test['SeqScr'] = $test['TestSeqScr'] ?? null;
|
|
||||||
$test['SeqRpt'] = $test['TestSeqRpt'] ?? null;
|
|
||||||
$test['DisciplineID'] = $discipline['DisciplineID'];
|
|
||||||
|
|
||||||
unset($test['DisciplineCode'], $test['DisciplineName'], $test['DisciplineSeqScr'], $test['DisciplineSeqRpt'], $test['TestSeqScr'], $test['TestSeqRpt']);
|
|
||||||
}
|
|
||||||
unset($test);
|
|
||||||
|
|
||||||
return $tests;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function create() {
|
|
||||||
$input = $this->request->getJSON(true);
|
|
||||||
|
|
||||||
if (!$this->validateData($input, $this->rules)) {
|
|
||||||
return $this->failValidationErrors($this->validator->getErrors());
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
if (!$this->patientModel->find($input['InternalPID'])) {
|
|
||||||
return $this->failValidationErrors(['InternalPID' => 'Patient not found']);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!empty($input['PatVisitID'])) {
|
|
||||||
$visit = $this->visitModel->find($input['PatVisitID']);
|
|
||||||
if (!$visit) {
|
|
||||||
return $this->failValidationErrors(['PatVisitID' => 'Visit not found']);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$orderID = $this->model->createOrder($input);
|
|
||||||
|
|
||||||
// Fetch complete order details
|
|
||||||
$order = $this->model->getOrder($orderID);
|
|
||||||
$order['Specimens'] = $this->getOrderSpecimens($order['InternalOID']);
|
|
||||||
$order['Tests'] = $this->getOrderTests($order['InternalOID']);
|
|
||||||
|
|
||||||
// Rule engine triggers are fired at the test/result level (test_created, result_updated)
|
|
||||||
|
|
||||||
return $this->respondCreated([
|
|
||||||
'status' => 'success',
|
|
||||||
'message' => 'Order created successfully',
|
|
||||||
'data' => $order
|
|
||||||
], 201);
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function update($OrderID = null) {
|
|
||||||
$input = $this->request->getJSON(true);
|
|
||||||
|
|
||||||
if ($OrderID === null || $OrderID === '') {
|
|
||||||
return $this->failValidationErrors(['OrderID' => 'OrderID is required']);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isset($input['OrderID']) && (string) $input['OrderID'] !== (string) $OrderID) {
|
|
||||||
return $this->failValidationErrors(['OrderID' => 'OrderID in URL does not match body']);
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
$input['OrderID'] = $OrderID;
|
|
||||||
$order = $this->model->getOrder($OrderID);
|
|
||||||
if (!$order) {
|
|
||||||
return $this->failNotFound('Order not found');
|
|
||||||
}
|
|
||||||
|
|
||||||
$updateData = [];
|
|
||||||
if (isset($input['Priority'])) $updateData['Priority'] = $input['Priority'];
|
|
||||||
if (isset($input['OrderStatus'])) $updateData['OrderStatus'] = $input['OrderStatus'];
|
|
||||||
if (isset($input['OrderingProvider'])) $updateData['OrderingProvider'] = $input['OrderingProvider'];
|
|
||||||
if (isset($input['DepartmentID'])) $updateData['DepartmentID'] = $input['DepartmentID'];
|
|
||||||
if (isset($input['WorkstationID'])) $updateData['WorkstationID'] = $input['WorkstationID'];
|
|
||||||
|
|
||||||
if (!empty($updateData)) {
|
|
||||||
$this->model->update($order['InternalOID'], $updateData);
|
|
||||||
}
|
|
||||||
|
|
||||||
$updatedOrder = $this->model->getOrder($OrderID);
|
|
||||||
$updatedOrder['Specimens'] = $this->getOrderSpecimens($updatedOrder['InternalOID']);
|
|
||||||
$updatedOrder['Tests'] = $this->getOrderTests($updatedOrder['InternalOID']);
|
|
||||||
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'success',
|
|
||||||
'message' => 'Order updated successfully',
|
|
||||||
'data' => $updatedOrder
|
|
||||||
], 200);
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function delete() {
|
|
||||||
$input = $this->request->getJSON(true);
|
|
||||||
$orderID = $input['OrderID'] ?? null;
|
|
||||||
|
|
||||||
if (empty($orderID)) {
|
|
||||||
return $this->failValidationErrors(['OrderID' => 'OrderID is required']);
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
$order = $this->model->getOrder($orderID);
|
|
||||||
if (!$order) {
|
|
||||||
return $this->failNotFound('Order not found');
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->model->softDelete($orderID);
|
|
||||||
|
|
||||||
return $this->respondDeleted([
|
|
||||||
'status' => 'success',
|
|
||||||
'message' => 'Order deleted successfully'
|
|
||||||
]);
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function updateStatus() {
|
|
||||||
$input = $this->request->getJSON(true);
|
|
||||||
|
|
||||||
if (empty($input['OrderID']) || empty($input['OrderStatus'])) {
|
|
||||||
return $this->failValidationErrors(['error' => 'OrderID and OrderStatus are required']);
|
|
||||||
}
|
|
||||||
|
|
||||||
$validStatuses = ['ORD', 'SCH', 'ANA', 'VER', 'REV', 'REP'];
|
|
||||||
if (!in_array($input['OrderStatus'], $validStatuses)) {
|
|
||||||
return $this->failValidationErrors(['OrderStatus' => 'Invalid status. Valid: ' . implode(', ', $validStatuses)]);
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
$order = $this->model->getOrder($input['OrderID']);
|
|
||||||
if (!$order) {
|
|
||||||
return $this->failNotFound('Order not found');
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->model->updateStatus($input['OrderID'], $input['OrderStatus']);
|
|
||||||
|
|
||||||
$updatedOrder = $this->model->getOrder($input['OrderID']);
|
|
||||||
$updatedOrder['Specimens'] = $this->getOrderSpecimens($updatedOrder['InternalOID']);
|
|
||||||
$updatedOrder['Tests'] = $this->getOrderTests($updatedOrder['InternalOID']);
|
|
||||||
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'success',
|
|
||||||
'message' => 'Order status updated successfully',
|
|
||||||
'data' => $updatedOrder
|
|
||||||
], 200);
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,117 +0,0 @@
|
|||||||
<?php
|
|
||||||
namespace App\Controllers\Organization;
|
|
||||||
|
|
||||||
use App\Traits\PatchValidationTrait;
|
|
||||||
use App\Traits\ResponseTrait;
|
|
||||||
use App\Controllers\BaseController;
|
|
||||||
|
|
||||||
use App\Models\Organization\AccountModel;
|
|
||||||
|
|
||||||
class AccountController extends BaseController {
|
|
||||||
use ResponseTrait;
|
|
||||||
use PatchValidationTrait;
|
|
||||||
|
|
||||||
protected $db;
|
|
||||||
protected $model;
|
|
||||||
|
|
||||||
public function __construct() {
|
|
||||||
$this->db = \Config\Database::connect();
|
|
||||||
$this->model = new AccountModel();
|
|
||||||
}
|
|
||||||
|
|
||||||
public function index() {
|
|
||||||
$filter = [
|
|
||||||
'Parent' => $this->request->getVar('Parent'),
|
|
||||||
'AccountName' => $this->request->getVar('AccountName'),
|
|
||||||
];
|
|
||||||
|
|
||||||
$rows = $this->model->getAccounts($filter);
|
|
||||||
|
|
||||||
if (empty($rows)) {
|
|
||||||
return $this->respond([ 'status' => 'success', 'message' => "no Data.", 'data' => [] ], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->respond([ 'status' => 'success', 'message'=> "fetch success", 'data' => $rows ], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function show($AccountID = null) {
|
|
||||||
//$rows = $this->model->where('AccountID', $AccountID)->findAll();
|
|
||||||
$row = $this->model->getAccount($AccountID);
|
|
||||||
|
|
||||||
if (empty($row)) {
|
|
||||||
return $this->respond([ 'status' => 'success', 'message' => "no Data.", 'data' => null ], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->respond([ 'status' => 'success', 'message'=> "fetch success", 'data' => $row ], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function delete() {
|
|
||||||
try {
|
|
||||||
$input = $this->request->getJSON(true);
|
|
||||||
$id = $this->requirePatchId($input['AccountID'] ?? null, 'AccountID');
|
|
||||||
if ($id === null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
$this->model->delete($id);
|
|
||||||
return $this->respondDeleted([ 'status' => 'success', 'message' => "{$id} deleted successfully."]);
|
|
||||||
} catch (\Throwable $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function create() {
|
|
||||||
$input = $this->request->getJSON(true);
|
|
||||||
|
|
||||||
$validation = service('validation');
|
|
||||||
$validation->setRules([
|
|
||||||
'AccountName' => 'required|string|max_length[255]',
|
|
||||||
'Parent' => 'permit_empty|integer',
|
|
||||||
]);
|
|
||||||
|
|
||||||
if (!$validation->run($input)) {
|
|
||||||
return $this->failValidationErrors($validation->getErrors());
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
$id = $this->model->insert($input,true);
|
|
||||||
return $this->respondCreated([ 'status' => 'success', 'message' => 'data created successfully', 'data' => $id ], 201);
|
|
||||||
} catch (\Throwable $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function update($AccountID = null) {
|
|
||||||
$input = $this->requirePatchPayload($this->request->getJSON(true));
|
|
||||||
if ($input === null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$id = $this->requirePatchId($AccountID, 'AccountID');
|
|
||||||
if ($id === null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$existing = $this->model->find($id);
|
|
||||||
if (!$existing) {
|
|
||||||
return $this->respond([ 'status' => 'failed', 'message' => 'Account not found', 'data' => [] ], 404);
|
|
||||||
}
|
|
||||||
|
|
||||||
$validation = service('validation');
|
|
||||||
$validation->setRules([
|
|
||||||
'AccountName' => 'permit_empty|string|max_length[255]',
|
|
||||||
'Parent' => 'permit_empty|integer',
|
|
||||||
]);
|
|
||||||
|
|
||||||
if (!$validation->run($input)) {
|
|
||||||
return $this->failValidationErrors($validation->getErrors());
|
|
||||||
}
|
|
||||||
|
|
||||||
$input['AccountID'] = $id;
|
|
||||||
try {
|
|
||||||
$this->model->update($id, $input);
|
|
||||||
return $this->respond([ 'status' => 'success', 'message' => 'data updated successfully', 'data' => $id ], 200);
|
|
||||||
} catch (\Throwable $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,112 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace App\Controllers\Organization;
|
|
||||||
|
|
||||||
use App\Traits\PatchValidationTrait;
|
|
||||||
use App\Traits\ResponseTrait;
|
|
||||||
use App\Controllers\BaseController;
|
|
||||||
use App\Models\Organization\CodingSysModel;
|
|
||||||
|
|
||||||
class CodingSysController extends BaseController {
|
|
||||||
use ResponseTrait;
|
|
||||||
use PatchValidationTrait;
|
|
||||||
|
|
||||||
protected $db;
|
|
||||||
protected $model;
|
|
||||||
|
|
||||||
public function __construct() {
|
|
||||||
$this->db = \Config\Database::connect();
|
|
||||||
$this->model = new CodingSysModel();
|
|
||||||
}
|
|
||||||
|
|
||||||
public function index() {
|
|
||||||
$filter = [
|
|
||||||
'CodingSysAbb' => $this->request->getVar('CodingSysAbb'),
|
|
||||||
'FullText' => $this->request->getVar('FullText'),
|
|
||||||
];
|
|
||||||
|
|
||||||
$builder = $this->model;
|
|
||||||
|
|
||||||
if (!empty($filter['CodingSysAbb'])) {
|
|
||||||
$builder->like('CodingSysAbb', $filter['CodingSysAbb'], 'both');
|
|
||||||
}
|
|
||||||
if (!empty($filter['FullText'])) {
|
|
||||||
$builder->like('FullText', $filter['FullText'], 'both');
|
|
||||||
}
|
|
||||||
|
|
||||||
$rows = $builder->findAll();
|
|
||||||
|
|
||||||
if (empty($rows)) {
|
|
||||||
return $this->respond(['status' => 'success', 'message' => 'no Data.', 'data' => []], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->respond(['status' => 'success', 'message' => 'fetch success', 'data' => $rows], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function show($CodingSysID = null) {
|
|
||||||
$row = $this->model->where('CodingSysID', $CodingSysID)->first();
|
|
||||||
|
|
||||||
if (empty($row)) {
|
|
||||||
return $this->respond(['status' => 'success', 'message' => 'no Data.', 'data' => null], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->respond(['status' => 'success', 'message' => 'fetch success', 'data' => $row], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function delete() {
|
|
||||||
try {
|
|
||||||
$input = $this->request->getJSON(true);
|
|
||||||
$id = $input['CodingSysID'] ?? null;
|
|
||||||
|
|
||||||
if (!$id) {
|
|
||||||
return $this->failValidationErrors('CodingSysID is required.');
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->model->delete($id);
|
|
||||||
return $this->respondDeleted(['status' => 'success', 'message' => "{$id} deleted successfully."]);
|
|
||||||
} catch (\Throwable $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function create() {
|
|
||||||
$input = $this->request->getJSON(true);
|
|
||||||
|
|
||||||
try {
|
|
||||||
$id = $this->model->insert($input, true);
|
|
||||||
return $this->respondCreated(['status' => 'success', 'message' => 'data created successfully', 'data' => $id], 201);
|
|
||||||
} catch (\Throwable $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function update($CodingSysID = null) {
|
|
||||||
$input = $this->requirePatchPayload($this->request->getJSON(true));
|
|
||||||
if ($input === null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$id = $this->requirePatchId($CodingSysID, 'CodingSysID');
|
|
||||||
if ($id === null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$existing = $this->model->find($id);
|
|
||||||
if (!$existing) {
|
|
||||||
return $this->respond(['status' => 'failed', 'message' => 'CodingSys not found', 'data' => []], 404);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isset($input['CodingSysID']) && (string) $input['CodingSysID'] !== (string) $id) {
|
|
||||||
return $this->failValidationErrors('CodingSysID in URL does not match body.');
|
|
||||||
}
|
|
||||||
|
|
||||||
$input['CodingSysID'] = $id;
|
|
||||||
|
|
||||||
try {
|
|
||||||
$this->model->update($id, $input);
|
|
||||||
return $this->respondCreated(['status' => 'success', 'message' => 'data updated successfully', 'data' => $id], 201);
|
|
||||||
} catch (\Throwable $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,91 +0,0 @@
|
|||||||
<?php
|
|
||||||
namespace App\Controllers\Organization;
|
|
||||||
|
|
||||||
use App\Traits\PatchValidationTrait;
|
|
||||||
use App\Traits\ResponseTrait;
|
|
||||||
use App\Controllers\BaseController;
|
|
||||||
|
|
||||||
use App\Models\Organization\DepartmentModel;
|
|
||||||
|
|
||||||
class DepartmentController extends BaseController {
|
|
||||||
use ResponseTrait;
|
|
||||||
use PatchValidationTrait;
|
|
||||||
|
|
||||||
protected $db;
|
|
||||||
protected $model;
|
|
||||||
|
|
||||||
public function __construct() {
|
|
||||||
$this->db = \Config\Database::connect();
|
|
||||||
$this->model = new DepartmentModel();
|
|
||||||
}
|
|
||||||
|
|
||||||
public function index() {
|
|
||||||
$filter = [
|
|
||||||
'DepartmentCode' => $this->request->getVar('DepartmentCode'),
|
|
||||||
'DepartmentName' => $this->request->getVar('DepartmentName'),
|
|
||||||
];
|
|
||||||
$rows = $this->model->getDepartments($filter);
|
|
||||||
|
|
||||||
if (empty($rows)) {
|
|
||||||
return $this->respond([ 'status' => 'success', 'message' => "no Data.", 'data' => [] ], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->respond([ 'status' => 'success', 'message'=> "fetch success", 'data' => $rows ], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function show($DepartmentID = null) {
|
|
||||||
$row = $this->model->getDepartment($DepartmentID);
|
|
||||||
if (empty($row)) {
|
|
||||||
return $this->respond([ 'status' => 'success', 'message' => "no Data.", 'data' => null ], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->respond([ 'status' => 'success', 'message'=> "fetch success", 'data' => $row ], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function delete() {
|
|
||||||
try {
|
|
||||||
$input = $this->request->getJSON(true);
|
|
||||||
$id = $input["DepartmentID"];
|
|
||||||
if (!$id) { return $this->failValidationErrors('ID is required.'); }
|
|
||||||
$this->model->delete($id);
|
|
||||||
return $this->respondDeleted([ 'status' => 'success', 'message' => "{$id} deleted successfully."]);
|
|
||||||
} catch (\Throwable $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function create() {
|
|
||||||
$input = $this->request->getJSON(true);
|
|
||||||
try {
|
|
||||||
$id = $this->model->insert($input,true);
|
|
||||||
return $this->respondCreated([ 'status' => 'success', 'message' => 'data created successfully', 'data' => $id ], 201);
|
|
||||||
} catch (\Throwable $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function update($DepartmentID = null) {
|
|
||||||
$input = $this->requirePatchPayload($this->request->getJSON(true));
|
|
||||||
if ($input === null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$id = $this->requirePatchId($DepartmentID, 'DepartmentID');
|
|
||||||
if ($id === null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$existing = $this->model->find($id);
|
|
||||||
if (!$existing) {
|
|
||||||
return $this->respond([ 'status' => 'failed', 'message' => 'Department not found', 'data' => [] ], 404);
|
|
||||||
}
|
|
||||||
|
|
||||||
$input['DepartmentID'] = $id;
|
|
||||||
try {
|
|
||||||
$this->model->update($id, $input);
|
|
||||||
return $this->respond([ 'status' => 'success', 'message' => 'data updated successfully', 'data' => $id ], 200);
|
|
||||||
} catch (\Throwable $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,131 +0,0 @@
|
|||||||
<?php
|
|
||||||
namespace App\Controllers\Organization;
|
|
||||||
|
|
||||||
use App\Traits\PatchValidationTrait;
|
|
||||||
use App\Traits\ResponseTrait;
|
|
||||||
use App\Controllers\BaseController;
|
|
||||||
|
|
||||||
use App\Models\Organization\DisciplineModel;
|
|
||||||
|
|
||||||
class DisciplineController extends BaseController {
|
|
||||||
use ResponseTrait;
|
|
||||||
use PatchValidationTrait;
|
|
||||||
|
|
||||||
protected $db;
|
|
||||||
protected $model;
|
|
||||||
|
|
||||||
public function __construct() {
|
|
||||||
$this->db = \Config\Database::connect();
|
|
||||||
$this->model = new DisciplineModel();
|
|
||||||
}
|
|
||||||
|
|
||||||
public function index() {
|
|
||||||
$filter = [
|
|
||||||
'DisciplineCode' => $this->request->getVar('DisciplineCode'),
|
|
||||||
'DisciplineName' => $this->request->getVar('DisciplineName'),
|
|
||||||
];
|
|
||||||
$rows = $this->model->getDisciplines($filter);
|
|
||||||
|
|
||||||
if (empty($rows)) {
|
|
||||||
return $this->respond([ 'status' => 'success', 'message' => "no Data.", 'data' => [] ], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->respond([ 'status' => 'success', 'message'=> "fetch success", 'data' => $rows ], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function show($DisciplineID = null) {
|
|
||||||
$row = $this->model->where('DisciplineID', $DisciplineID)->first();
|
|
||||||
|
|
||||||
if (empty($row)) {
|
|
||||||
return $this->respond([ 'status' => 'success', 'message' => "no Data.", 'data' => null ], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->respond([ 'status' => 'success', 'message'=> "fetch success", 'data' => $row ], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function delete() {
|
|
||||||
try {
|
|
||||||
$input = $this->request->getJSON(true);
|
|
||||||
$id = $this->requirePatchId($input['DisciplineID'] ?? null, 'DisciplineID');
|
|
||||||
if ($id === null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
$this->model->delete($id);
|
|
||||||
return $this->respondDeleted([ 'status' => 'success', 'message' => "{$id} deleted successfully."]);
|
|
||||||
} catch (\Throwable $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function create() {
|
|
||||||
$input = $this->request->getJSON(true);
|
|
||||||
|
|
||||||
$validation = service('validation');
|
|
||||||
$validation->setRules([
|
|
||||||
'DisciplineCode' => 'required|string|max_length[50]',
|
|
||||||
'DisciplineName' => 'required|string|max_length[255]',
|
|
||||||
'Parent' => 'permit_empty|integer',
|
|
||||||
'SeqScr' => 'permit_empty|integer',
|
|
||||||
'SeqRpt' => 'permit_empty|integer',
|
|
||||||
]);
|
|
||||||
|
|
||||||
if (!$validation->run($input)) {
|
|
||||||
return $this->failValidationErrors($validation->getErrors());
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
$id = $this->model->insert($input,true);
|
|
||||||
return $this->respondCreated([ 'status' => 'success', 'message' => 'data created successfully', 'data' => $id ], 201);
|
|
||||||
} catch (\Throwable $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function update($DisciplineID = null) {
|
|
||||||
$input = $this->requirePatchPayload($this->request->getJSON(true));
|
|
||||||
if ($input === null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$id = $this->requirePatchId($DisciplineID, 'DisciplineID');
|
|
||||||
if ($id === null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$existing = $this->model->find($id);
|
|
||||||
if (!$existing) {
|
|
||||||
return $this->respond([ 'status' => 'failed', 'message' => 'Discipline not found', 'data' => [] ], 404);
|
|
||||||
}
|
|
||||||
|
|
||||||
$validation = service('validation');
|
|
||||||
$validation->setRules([
|
|
||||||
'DisciplineCode' => 'permit_empty|string|max_length[50]',
|
|
||||||
'DisciplineName' => 'permit_empty|string|max_length[255]',
|
|
||||||
'Parent' => 'permit_empty|integer',
|
|
||||||
'SeqScr' => 'permit_empty|integer',
|
|
||||||
'SeqRpt' => 'permit_empty|integer',
|
|
||||||
]);
|
|
||||||
|
|
||||||
if (!$validation->run($input)) {
|
|
||||||
return $this->failValidationErrors($validation->getErrors());
|
|
||||||
}
|
|
||||||
|
|
||||||
$input['DisciplineID'] = $id;
|
|
||||||
try {
|
|
||||||
$this->model->update($id, $input);
|
|
||||||
return $this->respond([ 'status' => 'success', 'message' => 'data updated successfully', 'data' => $id ], 200);
|
|
||||||
} catch (\Throwable $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
/*
|
|
||||||
try {
|
|
||||||
$id = $input['DisciplineID'];
|
|
||||||
$this->model->where('DisciplineID', $id)->update();
|
|
||||||
echo $this->model->getLastQuery();
|
|
||||||
return $this->respondCreated([ 'status' => 'success', 'message' => 'data updated successfully', 'data' => $id ], 201);
|
|
||||||
} catch (\Throwable $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage() );
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,124 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace App\Controllers\Organization;
|
|
||||||
|
|
||||||
use App\Traits\PatchValidationTrait;
|
|
||||||
use App\Traits\ResponseTrait;
|
|
||||||
use App\Controllers\BaseController;
|
|
||||||
use App\Models\Organization\HostAppModel;
|
|
||||||
|
|
||||||
class HostAppController extends BaseController {
|
|
||||||
use ResponseTrait;
|
|
||||||
use PatchValidationTrait;
|
|
||||||
|
|
||||||
protected $db;
|
|
||||||
protected $model;
|
|
||||||
|
|
||||||
public function __construct() {
|
|
||||||
$this->db = \Config\Database::connect();
|
|
||||||
$this->model = new HostAppModel();
|
|
||||||
}
|
|
||||||
|
|
||||||
public function index() {
|
|
||||||
$filter = [
|
|
||||||
'HostAppID' => $this->request->getVar('HostAppID'),
|
|
||||||
'HostAppName' => $this->request->getVar('HostAppName'),
|
|
||||||
];
|
|
||||||
|
|
||||||
$builder = $this->model->select('hostapp.*, site.SiteName')
|
|
||||||
->join('site', 'site.SiteID = hostapp.SiteID', 'left');
|
|
||||||
|
|
||||||
if (!empty($filter['HostAppID'])) {
|
|
||||||
if (!ctype_digit((string) $filter['HostAppID'])) {
|
|
||||||
return $this->failValidationErrors('HostAppID filter must be a valid integer.');
|
|
||||||
}
|
|
||||||
$builder->where('hostapp.HostAppID', (int) $filter['HostAppID']);
|
|
||||||
}
|
|
||||||
if (!empty($filter['HostAppName'])) {
|
|
||||||
$builder->like('hostapp.HostAppName', $filter['HostAppName'], 'both');
|
|
||||||
}
|
|
||||||
|
|
||||||
$rows = $builder->findAll();
|
|
||||||
|
|
||||||
if (empty($rows)) {
|
|
||||||
return $this->respond(['status' => 'success', 'message' => 'no Data.', 'data' => []], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->respond(['status' => 'success', 'message' => 'fetch success', 'data' => $rows], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function show($HostAppID = null) {
|
|
||||||
$id = $this->requirePatchId($HostAppID, 'HostAppID');
|
|
||||||
if ($id === null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$row = $this->model->select('hostapp.*, site.SiteName')
|
|
||||||
->join('site', 'site.SiteID = hostapp.SiteID', 'left')
|
|
||||||
->where('hostapp.HostAppID', $id)
|
|
||||||
->first();
|
|
||||||
|
|
||||||
if (empty($row)) {
|
|
||||||
return $this->respond(['status' => 'success', 'message' => 'no Data.', 'data' => null], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->respond(['status' => 'success', 'message' => 'fetch success', 'data' => $row], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function delete() {
|
|
||||||
try {
|
|
||||||
$input = $this->request->getJSON(true);
|
|
||||||
$id = $this->requirePatchId($input['HostAppID'] ?? null, 'HostAppID');
|
|
||||||
if ($id === null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->model->delete($id);
|
|
||||||
return $this->respondDeleted(['status' => 'success', 'message' => "{$id} deleted successfully."]);
|
|
||||||
} catch (\Throwable $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function create() {
|
|
||||||
$input = $this->request->getJSON(true);
|
|
||||||
|
|
||||||
try {
|
|
||||||
unset($input['HostAppID']);
|
|
||||||
$id = $this->model->insert($input, true);
|
|
||||||
return $this->respondCreated(['status' => 'success', 'message' => 'data created successfully', 'data' => $id], 201);
|
|
||||||
} catch (\Throwable $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function update($HostAppID = null) {
|
|
||||||
$input = $this->requirePatchPayload($this->request->getJSON(true));
|
|
||||||
if ($input === null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$id = $this->requirePatchId($HostAppID, 'HostAppID');
|
|
||||||
if ($id === null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$existing = $this->model->find($id);
|
|
||||||
if (!$existing) {
|
|
||||||
return $this->respond(['status' => 'failed', 'message' => 'HostApp not found', 'data' => []], 404);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isset($input['HostAppID'])) {
|
|
||||||
if ((string) $input['HostAppID'] !== (string) $id) {
|
|
||||||
return $this->failValidationErrors('HostAppID in URL does not match body.');
|
|
||||||
}
|
|
||||||
unset($input['HostAppID']);
|
|
||||||
}
|
|
||||||
try {
|
|
||||||
$this->model->update($id, $input);
|
|
||||||
return $this->respond(['status' => 'success', 'message' => 'data updated successfully', 'data' => $id], 200);
|
|
||||||
} catch (\Throwable $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,135 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace App\Controllers\Organization;
|
|
||||||
|
|
||||||
use App\Traits\PatchValidationTrait;
|
|
||||||
use App\Traits\ResponseTrait;
|
|
||||||
use App\Controllers\BaseController;
|
|
||||||
use App\Models\Organization\HostComParaModel;
|
|
||||||
|
|
||||||
class HostComParaController extends BaseController {
|
|
||||||
use ResponseTrait;
|
|
||||||
use PatchValidationTrait;
|
|
||||||
|
|
||||||
protected $db;
|
|
||||||
protected $model;
|
|
||||||
|
|
||||||
public function __construct() {
|
|
||||||
$this->db = \Config\Database::connect();
|
|
||||||
$this->model = new HostComParaModel();
|
|
||||||
}
|
|
||||||
|
|
||||||
public function index() {
|
|
||||||
$filter = [
|
|
||||||
'HostAppID' => $this->request->getVar('HostAppID'),
|
|
||||||
'HostIP' => $this->request->getVar('HostIP'),
|
|
||||||
];
|
|
||||||
|
|
||||||
$builder = $this->model->select('hostcompara.*, hostapp.HostAppName')
|
|
||||||
->join('hostapp', 'hostapp.HostAppID = hostcompara.HostAppID', 'left');
|
|
||||||
|
|
||||||
if (!empty($filter['HostAppID'])) {
|
|
||||||
if (!ctype_digit((string) $filter['HostAppID'])) {
|
|
||||||
return $this->failValidationErrors('HostAppID filter must be a valid integer.');
|
|
||||||
}
|
|
||||||
$builder->where('hostcompara.HostAppID', (int) $filter['HostAppID']);
|
|
||||||
}
|
|
||||||
if (!empty($filter['HostIP'])) {
|
|
||||||
$builder->like('hostcompara.HostIP', $filter['HostIP'], 'both');
|
|
||||||
}
|
|
||||||
|
|
||||||
$rows = $builder->findAll();
|
|
||||||
|
|
||||||
if (empty($rows)) {
|
|
||||||
return $this->respond(['status' => 'success', 'message' => 'no Data.', 'data' => []], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->respond(['status' => 'success', 'message' => 'fetch success', 'data' => $rows], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function show($HostAppID = null) {
|
|
||||||
$id = $this->requirePatchId($HostAppID, 'HostAppID');
|
|
||||||
if ($id === null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$row = $this->model->select('hostcompara.*, hostapp.HostAppName')
|
|
||||||
->join('hostapp', 'hostapp.HostAppID = hostcompara.HostAppID', 'left')
|
|
||||||
->where('hostcompara.HostAppID', $id)
|
|
||||||
->first();
|
|
||||||
|
|
||||||
if (empty($row)) {
|
|
||||||
return $this->respond(['status' => 'success', 'message' => 'no Data.', 'data' => null], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->respond(['status' => 'success', 'message' => 'fetch success', 'data' => $row], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function delete() {
|
|
||||||
try {
|
|
||||||
$input = $this->request->getJSON(true);
|
|
||||||
$id = $this->requirePatchId($input['HostAppID'] ?? null, 'HostAppID');
|
|
||||||
if ($id === null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->model->delete($id);
|
|
||||||
return $this->respondDeleted(['status' => 'success', 'message' => "{$id} deleted successfully."]);
|
|
||||||
} catch (\Throwable $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function create() {
|
|
||||||
$input = $this->request->getJSON(true);
|
|
||||||
|
|
||||||
try {
|
|
||||||
$hostAppId = $input['HostAppID'] ?? null;
|
|
||||||
if ($hostAppId === null) {
|
|
||||||
return $this->failValidationErrors('HostAppID is required.');
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!ctype_digit((string) $hostAppId)) {
|
|
||||||
return $this->failValidationErrors('HostAppID must be a valid integer.');
|
|
||||||
}
|
|
||||||
|
|
||||||
$input['HostAppID'] = (int) $hostAppId;
|
|
||||||
|
|
||||||
$id = $this->model->insert($input, true);
|
|
||||||
return $this->respondCreated(['status' => 'success', 'message' => 'data created successfully', 'data' => $id], 201);
|
|
||||||
} catch (\Throwable $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function update($HostAppID = null) {
|
|
||||||
$input = $this->requirePatchPayload($this->request->getJSON(true));
|
|
||||||
if ($input === null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$id = $this->requirePatchId($HostAppID, 'HostAppID');
|
|
||||||
if ($id === null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$existing = $this->model->find($id);
|
|
||||||
if (!$existing) {
|
|
||||||
return $this->respond(['status' => 'failed', 'message' => 'HostComPara not found', 'data' => []], 404);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isset($input['HostAppID'])) {
|
|
||||||
if ((string) $input['HostAppID'] !== (string) $id) {
|
|
||||||
return $this->failValidationErrors('HostAppID in URL does not match body.');
|
|
||||||
}
|
|
||||||
unset($input['HostAppID']);
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
$this->model->update($id, $input);
|
|
||||||
return $this->respond(['status' => 'success', 'message' => 'data updated successfully', 'data' => $id], 200);
|
|
||||||
} catch (\Throwable $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,116 +0,0 @@
|
|||||||
<?php
|
|
||||||
namespace App\Controllers\Organization;
|
|
||||||
|
|
||||||
use App\Traits\PatchValidationTrait;
|
|
||||||
use App\Traits\ResponseTrait;
|
|
||||||
use App\Controllers\BaseController;
|
|
||||||
|
|
||||||
use App\Models\Organization\SiteModel;
|
|
||||||
|
|
||||||
class SiteController extends BaseController {
|
|
||||||
use ResponseTrait;
|
|
||||||
use PatchValidationTrait;
|
|
||||||
|
|
||||||
protected $db;
|
|
||||||
protected $model;
|
|
||||||
|
|
||||||
public function __construct() {
|
|
||||||
$this->db = \Config\Database::connect();
|
|
||||||
$this->model = new SiteModel();
|
|
||||||
}
|
|
||||||
|
|
||||||
public function index() {
|
|
||||||
$filter = [
|
|
||||||
'SiteCode' => $this->request->getVar('SiteCode'),
|
|
||||||
'SiteName' => $this->request->getVar('SiteName'),
|
|
||||||
];
|
|
||||||
$rows = $this->model->getSites($filter);
|
|
||||||
if (empty($rows)) {
|
|
||||||
return $this->respond([ 'status' => 'success', 'message' => "no Data.", 'data' => [] ], 200);
|
|
||||||
}
|
|
||||||
return $this->respond([ 'status' => 'success', 'message'=> "fetch success", 'data' => $rows ], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
public function show($SiteID = null) {
|
|
||||||
//$rows = $this->model->where('SiteID', $SiteID)->findAll();
|
|
||||||
$row = $this->model->getSite($SiteID);
|
|
||||||
|
|
||||||
if (empty($row)) {
|
|
||||||
return $this->respond([ 'status' => 'success', 'message' => "no Data.", 'data' => null ], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->respond([ 'status' => 'success', 'message'=> "fetch success", 'data' => $row ], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function delete() {
|
|
||||||
try {
|
|
||||||
$input = $this->request->getJSON(true);
|
|
||||||
$id = $input["SiteID"];
|
|
||||||
if (!$id) { return $this->failValidationErrors('ID is required.'); }
|
|
||||||
$this->model->delete($id);
|
|
||||||
return $this->respondDeleted([ 'status' => 'success', 'message' => "{$id} deleted successfully."]);
|
|
||||||
} catch (\Throwable $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function create() {
|
|
||||||
$input = $this->request->getJSON(true);
|
|
||||||
|
|
||||||
$validation = service('validation');
|
|
||||||
$validation->setRules([
|
|
||||||
'SiteCode' => 'required|regex_match[/^[A-Z0-9]{2,6}$/]',
|
|
||||||
'SiteName' => 'required',
|
|
||||||
]);
|
|
||||||
|
|
||||||
if (!$validation->run($input)) {
|
|
||||||
return $this->failValidationErrors($validation->getErrors());
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
$id = $this->model->insert($input,true);
|
|
||||||
return $this->respondCreated([ 'status' => 'success', 'message' => 'data created successfully', 'data' => $id ], 201);
|
|
||||||
} catch (\Throwable $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function update($SiteID = null) {
|
|
||||||
$input = $this->requirePatchPayload($this->request->getJSON(true));
|
|
||||||
if ($input === null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$id = $this->requirePatchId($SiteID, 'SiteID');
|
|
||||||
if ($id === null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$existing = $this->model->find($id);
|
|
||||||
if (!$existing) {
|
|
||||||
return $this->respond([ 'status' => 'failed', 'message' => 'Site not found', 'data' => [] ], 404);
|
|
||||||
}
|
|
||||||
|
|
||||||
$input['SiteID'] = $id;
|
|
||||||
|
|
||||||
if (!empty($input['SiteCode'])) {
|
|
||||||
$validation = service('validation');
|
|
||||||
$validation->setRules([
|
|
||||||
'SiteCode' => 'regex_match[/^[A-Z0-9]{2,6}$/]',
|
|
||||||
]);
|
|
||||||
|
|
||||||
if (!$validation->run($input)) {
|
|
||||||
return $this->failValidationErrors($validation->getErrors());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
$this->model->update($id, $input);
|
|
||||||
return $this->respond([ 'status' => 'success', 'message' => 'data updated successfully', 'data' => $id ], 200);
|
|
||||||
} catch (\Throwable $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,92 +0,0 @@
|
|||||||
<?php
|
|
||||||
namespace App\Controllers\Organization;
|
|
||||||
|
|
||||||
use App\Traits\PatchValidationTrait;
|
|
||||||
use App\Traits\ResponseTrait;
|
|
||||||
use App\Controllers\BaseController;
|
|
||||||
|
|
||||||
use App\Models\Organization\WorkstationModel;
|
|
||||||
|
|
||||||
class WorkstationController extends BaseController {
|
|
||||||
use ResponseTrait;
|
|
||||||
use PatchValidationTrait;
|
|
||||||
|
|
||||||
protected $db;
|
|
||||||
protected $model;
|
|
||||||
|
|
||||||
public function __construct() {
|
|
||||||
$this->db = \Config\Database::connect();
|
|
||||||
$this->model = new WorkstationModel();
|
|
||||||
}
|
|
||||||
|
|
||||||
public function index() {
|
|
||||||
$filter = [
|
|
||||||
'WorkstationCode' => $this->request->getVar('WorkstationCode'),
|
|
||||||
'WorkstationName' => $this->request->getVar('WorkstationName'),
|
|
||||||
];
|
|
||||||
$rows = $this->model->getWorkstations($filter);
|
|
||||||
|
|
||||||
if (empty($rows)) {
|
|
||||||
return $this->respond([ 'status' => 'success', 'message' => "no Data.", 'data' => [] ], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->respond([ 'status' => 'success', 'message'=> "fetch success", 'data' => $rows ], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function show($WorkstationID = null) {
|
|
||||||
$row = $this->model->getWorkstation($WorkstationID);
|
|
||||||
|
|
||||||
if (empty($row)) {
|
|
||||||
return $this->respond([ 'status' => 'success', 'message' => "no Data.", 'data' => null ], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->respond([ 'status' => 'success', 'message'=> "fetch success", 'data' => $row ], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function delete() {
|
|
||||||
try {
|
|
||||||
$input = $this->request->getJSON(true);
|
|
||||||
$id = $input["WorkstationID"];
|
|
||||||
if (!$id) { return $this->failValidationErrors('ID is required.'); }
|
|
||||||
$this->model->delete($id);
|
|
||||||
return $this->respondDeleted([ 'status' => 'success', 'message' => "{$id} deleted successfully."]);
|
|
||||||
} catch (\Throwable $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function create() {
|
|
||||||
$input = $this->request->getJSON(true);
|
|
||||||
try {
|
|
||||||
$id = $this->model->insert($input,true);
|
|
||||||
return $this->respondCreated([ 'status' => 'success', 'message' => 'data created successfully', 'data' => $id ], 201);
|
|
||||||
} catch (\Throwable $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function update($WorkstationID = null) {
|
|
||||||
$input = $this->requirePatchPayload($this->request->getJSON(true));
|
|
||||||
if ($input === null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$id = $this->requirePatchId($WorkstationID, 'WorkstationID');
|
|
||||||
if ($id === null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$existing = $this->model->find($id);
|
|
||||||
if (!$existing) {
|
|
||||||
return $this->respond([ 'status' => 'failed', 'message' => 'Workstation not found', 'data' => [] ], 404);
|
|
||||||
}
|
|
||||||
|
|
||||||
$input['WorkstationID'] = $id;
|
|
||||||
try {
|
|
||||||
$this->model->update($id, $input);
|
|
||||||
return $this->respond([ 'status' => 'success', 'message' => 'data updated successfully', 'data' => $id ], 200);
|
|
||||||
} catch (\Throwable $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,14 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace App\Controllers;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* PagesController - Serves view pages
|
|
||||||
*
|
|
||||||
* This controller only returns views. No business logic.
|
|
||||||
* All data is fetched via API calls from the frontend.
|
|
||||||
*/
|
|
||||||
class PagesController extends BaseController
|
|
||||||
{
|
|
||||||
// Add page methods here as needed
|
|
||||||
}
|
|
||||||
@ -1,315 +0,0 @@
|
|||||||
<?php
|
|
||||||
namespace App\Controllers;
|
|
||||||
|
|
||||||
use App\Traits\PatchValidationTrait;
|
|
||||||
use App\Traits\ResponseTrait;
|
|
||||||
use App\Controllers\BaseController;
|
|
||||||
use App\Models\PatVisit\PatVisitModel;
|
|
||||||
use App\Models\PatVisit\PatVisitADTModel;
|
|
||||||
use App\Models\Patient\PatientModel;
|
|
||||||
|
|
||||||
class PatVisitController extends BaseController {
|
|
||||||
use ResponseTrait;
|
|
||||||
use PatchValidationTrait;
|
|
||||||
|
|
||||||
protected $model;
|
|
||||||
|
|
||||||
public function __construct() {
|
|
||||||
$this->model = new PatVisitModel();
|
|
||||||
}
|
|
||||||
|
|
||||||
public function index() {
|
|
||||||
try {
|
|
||||||
$InternalPID = $this->request->getVar('InternalPID');
|
|
||||||
$PVID = $this->request->getVar('PVID');
|
|
||||||
$PatientID = $this->request->getVar('PatientID');
|
|
||||||
$PatientName = $this->request->getVar('PatientName');
|
|
||||||
$CreateDateFrom = $this->request->getVar('CreateDateFrom');
|
|
||||||
$CreateDateTo = $this->request->getVar('CreateDateTo');
|
|
||||||
|
|
||||||
$builder = $this->model->select('patvisit.*, patient.NameFirst, patient.NameLast, patient.PatientID, location.LocFull as LastLocation')
|
|
||||||
->join('patient', 'patient.InternalPID=patvisit.InternalPID', 'left')
|
|
||||||
->join('(SELECT a1.*
|
|
||||||
FROM patvisitadt a1
|
|
||||||
INNER JOIN (
|
|
||||||
SELECT InternalPVID, MAX(PVADTID) AS MaxID
|
|
||||||
FROM patvisitadt
|
|
||||||
GROUP BY InternalPVID
|
|
||||||
) a2 ON a1.InternalPVID = a2.InternalPVID AND a1.PVADTID = a2.MaxID
|
|
||||||
) AS latest_patvisitadt', 'latest_patvisitadt.InternalPVID = patvisit.InternalPVID', 'left')
|
|
||||||
->join('location', 'location.LocationID = latest_patvisitadt.LocationID', 'left');
|
|
||||||
|
|
||||||
if ($InternalPID) {
|
|
||||||
$builder->where('patvisit.InternalPID', $InternalPID);
|
|
||||||
}
|
|
||||||
if ($PVID) {
|
|
||||||
$builder->like('patvisit.PVID', $PVID, 'both');
|
|
||||||
}
|
|
||||||
if ($PatientID) {
|
|
||||||
$builder->like('patient.PatientID', $PatientID, 'both');
|
|
||||||
}
|
|
||||||
if ($PatientName) {
|
|
||||||
$builder->groupStart()
|
|
||||||
->like('patient.NameFirst', $PatientName, 'both')
|
|
||||||
->orLike('patient.NameLast', $PatientName, 'both')
|
|
||||||
->groupEnd();
|
|
||||||
}
|
|
||||||
if ($CreateDateFrom) {
|
|
||||||
$builder->where('patvisit.CreateDate >=', $CreateDateFrom);
|
|
||||||
}
|
|
||||||
if ($CreateDateTo) {
|
|
||||||
$builder->where('patvisit.CreateDate <=', $CreateDateTo);
|
|
||||||
}
|
|
||||||
|
|
||||||
$rows = $builder->orderBy('patvisit.CreateDate', 'DESC')->findAll();
|
|
||||||
|
|
||||||
if (empty($rows)) {
|
|
||||||
return $this->respond(['status' => 'success', 'message' => 'data not found', 'data' => []], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->respond(['status' => 'success', 'message' => 'data found', 'data' => $rows], 200);
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function show($PVID = null) {
|
|
||||||
try {
|
|
||||||
$row = $this->model->show($PVID);
|
|
||||||
if (empty($row)) {
|
|
||||||
return $this->respond([ 'status' => 'success', 'message'=> "data not found", 'data' => [] ], 200);
|
|
||||||
}
|
|
||||||
return $this->respond([ 'status' => 'success', 'message'=> "data found", 'data' => $row ], 200);
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
return $this->failServerError('Something went wrong '.$e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function showByPatient($InternalPID = null) {
|
|
||||||
try {
|
|
||||||
$rows = $this->model->showByPatient($InternalPID);
|
|
||||||
if($rows == []) { $message = "data not found"; }
|
|
||||||
else { $message = "data found"; }
|
|
||||||
return $this->respond(['status' => 'success', 'message'=> $message, 'data' => $rows ], 200);
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
return $this->failServerError('Something went wrong '.$e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function update($InternalPVID = null) {
|
|
||||||
$input = $this->requirePatchPayload($this->request->getJSON(true));
|
|
||||||
if ($input === null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$id = $this->requirePatchId($InternalPVID, 'InternalPVID');
|
|
||||||
if ($id === null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$visit = $this->model->find($id);
|
|
||||||
if (!$visit) {
|
|
||||||
return $this->respond(['status' => 'failed', 'message' => 'Visit not found', 'data' => []], 404);
|
|
||||||
}
|
|
||||||
$input['InternalPVID'] = $id;
|
|
||||||
try {
|
|
||||||
$data = $this->model->updatePatVisit($input);
|
|
||||||
return $this->respond(['status' => 'success', 'message' => 'Data updated successfully', 'data' => $data], 200);
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function create() {
|
|
||||||
$input = $this->request->getJSON(true);
|
|
||||||
try {
|
|
||||||
// Validate required fields
|
|
||||||
if (!isset($input['InternalPID']) || !is_numeric($input['InternalPID'])) {
|
|
||||||
return $this->respond(['status' => 'error', 'message' => 'InternalPID is required and must be numeric'], 400);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Check if patient exists
|
|
||||||
$patientModel = new PatientModel();
|
|
||||||
$patient = $patientModel->find($input['InternalPID']);
|
|
||||||
if (!$patient) {
|
|
||||||
return $this->respond(['status' => 'error', 'message' => 'Patient not found'], 404);
|
|
||||||
}
|
|
||||||
|
|
||||||
$data = $this->model->createPatVisit($input);
|
|
||||||
return $this->respond(['status' => 'success', 'message' => 'Data created successfully', 'data' => $data], 201);
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function delete() {
|
|
||||||
$input = $this->request->getJSON(true);
|
|
||||||
try {
|
|
||||||
if (!isset($input["InternalPVID"]) || !is_numeric($input["InternalPVID"])) {
|
|
||||||
return $this->respond(['status' => 'error', 'message' => 'Invalid or missing ID'], 400);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Check if visit exists
|
|
||||||
$visit = $this->model->find($input["InternalPVID"]);
|
|
||||||
if (!$visit) {
|
|
||||||
return $this->respond(['status' => 'error', 'message' => 'Visit not found'], 404);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Soft delete using EndDate (configured in model)
|
|
||||||
$result = $this->model->delete($input["InternalPVID"]);
|
|
||||||
|
|
||||||
if ($result) {
|
|
||||||
return $this->respond(['status' => 'success', 'message' => 'Data deleted successfully'], 200);
|
|
||||||
} else {
|
|
||||||
return $this->respond(['status' => 'error', 'message' => 'Failed to delete data'], 500);
|
|
||||||
}
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function createADT() {
|
|
||||||
$input = $this->request->getJSON(true);
|
|
||||||
$internalPVID = $input['InternalPVID'] ?? $input['InternalPID'] ?? null;
|
|
||||||
if (!$internalPVID || !is_numeric($internalPVID)) {
|
|
||||||
return $this->respond(['status' => 'error', 'message' => 'Invalid or missing InternalPVID'], 400);
|
|
||||||
}
|
|
||||||
$input['InternalPVID'] = (int) $internalPVID;
|
|
||||||
$modelPVA = new PatVisitADTModel();
|
|
||||||
try {
|
|
||||||
$data = $modelPVA->insert($input, true);
|
|
||||||
$record = $modelPVA->find($data);
|
|
||||||
if ($record) {
|
|
||||||
$record['ADTID'] = $record['PVADTID'];
|
|
||||||
}
|
|
||||||
return $this->respond(['status' => 'success', 'message' => 'Data created successfully', 'data' => $record ?? ['ADTID' => $data]], 201);
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function updateADT($PVADTID = null) {
|
|
||||||
$input = $this->requirePatchPayload($this->request->getJSON(true));
|
|
||||||
if ($input === null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$id = $this->requirePatchId($PVADTID, 'PVADTID');
|
|
||||||
if ($id === null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$modelPVA = new PatVisitADTModel();
|
|
||||||
$adt = $modelPVA->find($id);
|
|
||||||
if (!$adt) {
|
|
||||||
return $this->respond(['status' => 'failed', 'message' => 'ADT record not found', 'data' => []], 404);
|
|
||||||
}
|
|
||||||
|
|
||||||
$internalPVID = null;
|
|
||||||
if (array_key_exists('InternalPVID', $adt) && !empty($adt['InternalPVID'])) {
|
|
||||||
$internalPVID = $adt['InternalPVID'];
|
|
||||||
} elseif (array_key_exists('InternalPID', $adt) && !empty($adt['InternalPID'])) {
|
|
||||||
$internalPVID = $adt['InternalPID'];
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($internalPVID !== null && (!array_key_exists('InternalPVID', $input) || $input['InternalPVID'] === null || $input['InternalPVID'] === '')) {
|
|
||||||
$input['InternalPVID'] = $internalPVID;
|
|
||||||
}
|
|
||||||
|
|
||||||
$input['PVADTID'] = $id;
|
|
||||||
try {
|
|
||||||
$data = $modelPVA->update($id, $input);
|
|
||||||
return $this->respond(['status' => 'success', 'message' => 'Data updated successfully', 'data' => $data], 200);
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getADTByVisit($InternalPVID = null) {
|
|
||||||
try {
|
|
||||||
if (!$InternalPVID || !is_numeric($InternalPVID)) {
|
|
||||||
return $this->respond(['status' => 'error', 'message' => 'Invalid or missing InternalPVID'], 400);
|
|
||||||
}
|
|
||||||
|
|
||||||
$modelPVA = new PatVisitADTModel();
|
|
||||||
$rows = $modelPVA->select('patvisitadt.*, location.LocFull as LocationName,
|
|
||||||
attDoc.NameFirst as AttDocFirstName, attDoc.NameLast as AttDocLastName,
|
|
||||||
refDoc.NameFirst as RefDocFirstName, refDoc.NameLast as RefDocLastName,
|
|
||||||
admDoc.NameFirst as AdmDocFirstName, admDoc.NameLast as AdmDocLastName,
|
|
||||||
cnsDoc.NameFirst as CnsDocFirstName, cnsDoc.NameLast as CnsDocLastName')
|
|
||||||
->join('location', 'location.LocationID = patvisitadt.LocationID', 'left')
|
|
||||||
->join('contact attDoc', 'attDoc.ContactID = patvisitadt.AttDoc', 'left')
|
|
||||||
->join('contact refDoc', 'refDoc.ContactID = patvisitadt.RefDoc', 'left')
|
|
||||||
->join('contact admDoc', 'admDoc.ContactID = patvisitadt.AdmDoc', 'left')
|
|
||||||
->join('contact cnsDoc', 'cnsDoc.ContactID = patvisitadt.CnsDoc', 'left')
|
|
||||||
->where('patvisitadt.InternalPVID', $InternalPVID)
|
|
||||||
->where('patvisitadt.DelDate', null)
|
|
||||||
->orderBy('patvisitadt.CreateDate', 'ASC')
|
|
||||||
->findAll();
|
|
||||||
|
|
||||||
if (empty($rows)) {
|
|
||||||
return $this->respond(['status' => 'success', 'message' => 'No ADT history found', 'data' => []], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->respond(['status' => 'success', 'message' => 'ADT history retrieved', 'data' => $rows], 200);
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function showADT($PVADTID = null) {
|
|
||||||
try {
|
|
||||||
if (!$PVADTID || !is_numeric($PVADTID)) {
|
|
||||||
return $this->respond(['status' => 'error', 'message' => 'Invalid or missing PVADTID'], 400);
|
|
||||||
}
|
|
||||||
|
|
||||||
$modelPVA = new PatVisitADTModel();
|
|
||||||
$row = $modelPVA->select('patvisitadt.*, location.LocFull as LocationName,
|
|
||||||
attDoc.NameFirst as AttDocFirstName, attDoc.NameLast as AttDocLastName,
|
|
||||||
refDoc.NameFirst as RefDocFirstName, refDoc.NameLast as RefDocLastName,
|
|
||||||
admDoc.NameFirst as AdmDocFirstName, admDoc.NameLast as AdmDocLastName,
|
|
||||||
cnsDoc.NameFirst as CnsDocFirstName, cnsDoc.NameLast as CnsDocLastName')
|
|
||||||
->join('location', 'location.LocationID = patvisitadt.LocationID', 'left')
|
|
||||||
->join('contact attDoc', 'attDoc.ContactID = patvisitadt.AttDoc', 'left')
|
|
||||||
->join('contact refDoc', 'refDoc.ContactID = patvisitadt.RefDoc', 'left')
|
|
||||||
->join('contact admDoc', 'admDoc.ContactID = patvisitadt.AdmDoc', 'left')
|
|
||||||
->join('contact cnsDoc', 'cnsDoc.ContactID = patvisitadt.CnsDoc', 'left')
|
|
||||||
->where('patvisitadt.PVADTID', $PVADTID)
|
|
||||||
->where('patvisitadt.DelDate', null)
|
|
||||||
->first();
|
|
||||||
|
|
||||||
if (empty($row)) {
|
|
||||||
return $this->respond(['status' => 'success', 'message' => 'ADT record not found', 'data' => []], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->respond(['status' => 'success', 'message' => 'ADT record retrieved', 'data' => $row], 200);
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function deleteADT() {
|
|
||||||
$input = $this->request->getJSON(true);
|
|
||||||
try {
|
|
||||||
if (!isset($input["PVADTID"]) || !is_numeric($input["PVADTID"])) {
|
|
||||||
return $this->respond(['status' => 'error', 'message' => 'Invalid or missing PVADTID'], 400);
|
|
||||||
}
|
|
||||||
|
|
||||||
$modelPVA = new PatVisitADTModel();
|
|
||||||
$adt = $modelPVA->find($input["PVADTID"]);
|
|
||||||
if (!$adt) {
|
|
||||||
return $this->respond(['status' => 'error', 'message' => 'ADT record not found'], 404);
|
|
||||||
}
|
|
||||||
|
|
||||||
$result = $modelPVA->delete($input["PVADTID"]);
|
|
||||||
|
|
||||||
if ($result) {
|
|
||||||
return $this->respond(['status' => 'success', 'message' => 'ADT record deleted successfully'], 200);
|
|
||||||
} else {
|
|
||||||
return $this->respond(['status' => 'error', 'message' => 'Failed to delete ADT record'], 500);
|
|
||||||
}
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
340
app/Controllers/Patient.php
Normal file
340
app/Controllers/Patient.php
Normal file
@ -0,0 +1,340 @@
|
|||||||
|
<?php
|
||||||
|
namespace App\Controllers;
|
||||||
|
|
||||||
|
use CodeIgniter\API\ResponseTrait;
|
||||||
|
use CodeIgniter\Controller;
|
||||||
|
use CodeIgniter\Database\RawSql;
|
||||||
|
|
||||||
|
class Patient extends Controller {
|
||||||
|
use ResponseTrait;
|
||||||
|
|
||||||
|
public function __construct() {
|
||||||
|
$this->db = \Config\Database::connect();
|
||||||
|
}
|
||||||
|
|
||||||
|
// OK
|
||||||
|
public function index() {
|
||||||
|
|
||||||
|
try {
|
||||||
|
$pat_num = $this->request->getVar('pat_num');
|
||||||
|
$pat_altnum = $this->request->getVar('pat_altnum');
|
||||||
|
$pat_name = $this->request->getVar('pat_name');
|
||||||
|
$pat_dob = $this->request->getVar('pat_dob');
|
||||||
|
$start_date = $this->request->getVar('start_date');
|
||||||
|
$end_date = $this->request->getVar('end_date');
|
||||||
|
|
||||||
|
$builder = $this->db->table('patients');
|
||||||
|
|
||||||
|
if ($pat_name !== null) {
|
||||||
|
$sql = "LOWER(CONCAT_WS(' ', IFNULL(prefix,''), IFNULL(name_first,''), IFNULL(name_middle,''), IFNULL(name_last,''), IFNULL(name_maiden,''), IFNULL(suffix,'')))";
|
||||||
|
$rawSql = new RawSql($sql);
|
||||||
|
$builder->like($rawSql, $pat_name, 'both');
|
||||||
|
}
|
||||||
|
if ($pat_num !== null) { $builder->where('pat_num', $pat_num); }
|
||||||
|
if ($pat_altnum !== null) { $builder->where('pat_altnum', $pat_altnum); }
|
||||||
|
if ($pat_dob !== null) { $builder->where('pat_dob', $pat_dob); }
|
||||||
|
if ($start_date !== null || $end_date !== null) {
|
||||||
|
$builder->join('requests', 'pat_id=patients.pat_id','left');
|
||||||
|
if ($start_date !== null) { $builder->where('requests.req_date >=', $start_date . ' 00:00:00'); }
|
||||||
|
if ($end_date !== null) { $builder->where('requests.req_date <=', $end_date . ' 23:59:00'); }
|
||||||
|
}
|
||||||
|
|
||||||
|
$filteredPatients = $builder->get()->getResultArray();
|
||||||
|
|
||||||
|
// Data pasien tidak ada mengembalikan - success 200
|
||||||
|
if (empty($filteredPatients)) {
|
||||||
|
return $this->respond([
|
||||||
|
'status' => 'success',
|
||||||
|
'message' => 'No patient records found matching the criteria.',
|
||||||
|
'data' => []
|
||||||
|
], 200);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Data pasien ditemukan dan mengembalikan - success 200
|
||||||
|
return $this->respond([
|
||||||
|
'status' => 'success',
|
||||||
|
'message'=> "Patients fetched successfully",
|
||||||
|
'data' => $filteredPatients,
|
||||||
|
], 200);
|
||||||
|
|
||||||
|
} catch (\Exception $e) {
|
||||||
|
|
||||||
|
// Error Server Mengembalikan 500
|
||||||
|
return $this->failServerError('Something went wrong');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// OK
|
||||||
|
public function show($id = null) {
|
||||||
|
|
||||||
|
try {
|
||||||
|
|
||||||
|
$builder = $this->db->table('patients');
|
||||||
|
$patient = $builder->where('pat_num', $id)->get()->getRowArray();
|
||||||
|
|
||||||
|
// Data pasien tidak ada mengembalikan - success 200
|
||||||
|
if (empty($patient)) {
|
||||||
|
return $this->respond([
|
||||||
|
'status' => 'success',
|
||||||
|
'message' => 'Patient with ID ' . $id . ' not found.',
|
||||||
|
'data' => [],
|
||||||
|
], 200);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Data pasien ditemukan dan mengembalikan - success 200
|
||||||
|
return $this->respond([
|
||||||
|
'status' => 'success',
|
||||||
|
'message'=> "Patient Show Successfully",
|
||||||
|
'data' => $patient,
|
||||||
|
], 200);
|
||||||
|
|
||||||
|
} catch (\Exception $e) {
|
||||||
|
|
||||||
|
// Error Server Mengembalikan 500
|
||||||
|
return $this->failServerError('Something went wrong');
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
// OK
|
||||||
|
public function create() {
|
||||||
|
|
||||||
|
try {
|
||||||
|
$input = $this->request->getJSON(true);
|
||||||
|
|
||||||
|
// $datas = [
|
||||||
|
// 'name_first' => $data['name_first'],
|
||||||
|
// 'name_last' => $data['name_last'],
|
||||||
|
// 'name_middle' => $data['name_middle'] ?? null,
|
||||||
|
// 'name_maiden' => $data['name_maiden'] ?? null,
|
||||||
|
// 'pat_num' => $data['pat_num'],
|
||||||
|
// 'prefix' => $data['prefix'] ?? null,
|
||||||
|
// 'suffix' => $data['suffix'] ?? null,
|
||||||
|
// 'birth_date' => $data['pat_dob'] ?? null,
|
||||||
|
// 'pat_altnum' => $data['pat_altnum'] ?? null,
|
||||||
|
// 'address_1' => $data['address_1'] ?? null,
|
||||||
|
// 'address_2' => $data['address_2'] ?? null,
|
||||||
|
// 'address_3' => $data['address_3'] ?? null,
|
||||||
|
// 'city' => $data['city'] ?? null,
|
||||||
|
// 'province' => $data['province'] ?? null,
|
||||||
|
// 'zip' => $data['zip'] ?? null,
|
||||||
|
// 'email_1' => $data['email_1'] ?? null,
|
||||||
|
// 'email_2' => $data['email_2'] ?? null,
|
||||||
|
// 'phone' => $data['phone'] ?? null,
|
||||||
|
// 'mobile_phone' => $data['mobile_phone'] ?? null,
|
||||||
|
// 'mother' => $data['mother'] ?? null,
|
||||||
|
// 'account_number' => $data['account_number'] ?? null,
|
||||||
|
// 'marital_status' => $data['marital_status'] ?? null,
|
||||||
|
// 'country_id' => $data['country_id'] ?? null,
|
||||||
|
// 'race_id' => $data['race_id'] ?? null,
|
||||||
|
// 'religion_id' => $data['religion_id'] ?? null,
|
||||||
|
// 'ethnic_id' => $data['ethnic_id'] ?? null,
|
||||||
|
// 'citizenship' => $data['citizenship'] ?? null,
|
||||||
|
// 'death' => $data['death'] ?? null,
|
||||||
|
// 'death_date' => $data['death_date'] ?? null,
|
||||||
|
// 'create_date' => date('Y-m-d H:i:s'),
|
||||||
|
// ];
|
||||||
|
|
||||||
|
$data = [
|
||||||
|
'name_first' => $input['firstName'], // Mengambil dari firstName
|
||||||
|
'name_last' => $input['lastName'], // Mengambil dari lastName
|
||||||
|
'name_middle' => $input['middleName'] ?? null, // Mengambil dari middleName
|
||||||
|
'name_maiden' => $input['maindenName'] ?? null, // Mengambil dari maindenName
|
||||||
|
'pat_num' => $input['patientID'], // Mengambil dari patientID
|
||||||
|
'prefix' => $input['title'] ?? null, // Mengambil dari title
|
||||||
|
'suffix' => $input['suffixName'] ?? null, // Mengambil dari suffixName
|
||||||
|
'birth_date' => $input['birthdate'] ?? null, // Mengambil dari birthdate
|
||||||
|
'pat_altnum' => $input['alternateID'] ?? null, // Mengambil dari alternateID
|
||||||
|
'address_1' => $input['street1'] ?? null, // Mengambil dari street1
|
||||||
|
'address_2' => $input['street2'] ?? null, // Mengambil dari street2
|
||||||
|
'address_3' => $input['placeOfBirthdate'] ?? null, // Memetakan placeOfBirthdate ke address_3, jika diperlukan
|
||||||
|
'city' => $input['city'] ?? null, // Mengambil dari city
|
||||||
|
'province' => $input['province'] ?? null, // Mengambil dari province
|
||||||
|
'zip' => null, // Tidak ada padanan langsung di newPatientForm, bisa diisi manual atau dari input lain
|
||||||
|
'email_1' => $input['email1'] ?? null, // Mengambil dari email1
|
||||||
|
'email_2' => $input['email2'] ?? null, // Mengambil dari email2
|
||||||
|
'phone' => $input['phone'] ?? null, // Mengambil dari phone
|
||||||
|
'mobile_phone' => $input['mobile'] ?? null, // Mengambil dari mobile
|
||||||
|
'mother' => $input['motherName'] ?? null, // Mengambil dari motherName
|
||||||
|
'account_number' => null, // Tidak ada padanan langsung, bisa diisi manual atau dari input lain
|
||||||
|
'marital_status' => $input['maritalStatus'] ?? null, // Mengambil dari maritalStatus
|
||||||
|
'country_id' => null, // Tidak ada padanan langsung, perlu penyesuaian jika ada input negara
|
||||||
|
// 'race_id' => $data['race'] ?? null, // Mengambil dari race
|
||||||
|
// 'religion_id' => $data['religion'] ?? null, // Mengambil dari religion
|
||||||
|
// 'ethnic_id' => $data['ethnic'] ?? null, // Mengambil dari ethnic
|
||||||
|
'citizenship' => null, // Tidak ada padanan langsung, perlu penyesuaian jika ada input kewarganegaraan
|
||||||
|
'death' => $input['death'] ?? null, // Mengambil dari death (asumsi 0/1 atau boolean)
|
||||||
|
'death_date' => $input['deathTime'] ?? null, // Mengambil dari deathTime
|
||||||
|
'create_date' => date('Y-m-d H:i:s'), // Ini adalah tanggal dan waktu saat ini di server PHP
|
||||||
|
];
|
||||||
|
|
||||||
|
$rules = [
|
||||||
|
'pat_num' => 'required|is_unique[patients.pat_num]|max_length[50]',
|
||||||
|
'name_first' => 'required|min_length[3]|max_length[255]',
|
||||||
|
'name_middle' => 'permit_empty',
|
||||||
|
'name_maiden' => 'permit_empty',
|
||||||
|
'name_last' => 'permit_empty',
|
||||||
|
'birth_date' => 'permit_empty|valid_date[Y-m-d]',
|
||||||
|
'pat_altnum' => 'permit_empty|max_length[50]',
|
||||||
|
'address_1' => 'permit_empty',
|
||||||
|
'address_2' => 'permit_empty',
|
||||||
|
'address_3' => 'permit_empty',
|
||||||
|
'city' => 'permit_empty',
|
||||||
|
];
|
||||||
|
|
||||||
|
// Request dari client tidak valid atau tidak bisa diproses oleh server - 400
|
||||||
|
if (!$this->validateData($data, $rules)) {
|
||||||
|
return $this->respond([
|
||||||
|
'status' => 'error',
|
||||||
|
'message' => 'Validation failed',
|
||||||
|
'errors' => $this->validator->getErrors()
|
||||||
|
], 400);
|
||||||
|
}
|
||||||
|
|
||||||
|
$this->db->table('patients')->insert($data);
|
||||||
|
$newPatientId = $this->db->insertID();
|
||||||
|
|
||||||
|
// Sukses & Insert = 201 - Kirim data patient ID
|
||||||
|
return $this->respondCreated([
|
||||||
|
'status' => 'success',
|
||||||
|
'message' => 'Patient created successfully',
|
||||||
|
'data' => $newPatientId
|
||||||
|
], 201);
|
||||||
|
|
||||||
|
} catch (\Exception $e) {
|
||||||
|
|
||||||
|
// Error Server = 500
|
||||||
|
return $this->failServerError('Something went wrong');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// OK
|
||||||
|
public function update($pat_id = null) {
|
||||||
|
|
||||||
|
try {
|
||||||
|
$input = $this->request->getJSON(true);
|
||||||
|
|
||||||
|
$data = [
|
||||||
|
'name_first' => $input['name_first'], // Mengambil dari firstName
|
||||||
|
'name_last' => $input['name_last'], // Mengambil dari lastName
|
||||||
|
'name_middle' => $input['middleName'] ?? null, // Mengambil dari middleName
|
||||||
|
'name_maiden' => $input['maindenName'] ?? null, // Mengambil dari maindenName
|
||||||
|
'pat_num' => $input['pat_num'], // Mengambil dari patientID
|
||||||
|
'prefix' => $input['title'] ?? null, // Mengambil dari title
|
||||||
|
'suffix' => $input['suffixName'] ?? null, // Mengambil dari suffixName
|
||||||
|
'birth_date' => $input['birthdate'] ?? null, // Mengambil dari birthdate
|
||||||
|
'pat_altnum' => $input['alternateID'] ?? null, // Mengambil dari alternateID
|
||||||
|
'address_1' => $input['street1'] ?? null, // Mengambil dari street1
|
||||||
|
'address_2' => $input['street2'] ?? null, // Mengambil dari street2
|
||||||
|
'address_3' => $input['placeOfBirthdate'] ?? null, // Memetakan placeOfBirthdate ke address_3, jika diperlukan
|
||||||
|
'city' => $input['city'] ?? null, // Mengambil dari city
|
||||||
|
'province' => $input['province'] ?? null, // Mengambil dari province
|
||||||
|
'zip' => null, // Tidak ada padanan langsung di newPatientForm, bisa diisi manual atau dari input lain
|
||||||
|
'email_1' => $input['email1'] ?? null, // Mengambil dari email1
|
||||||
|
'email_2' => $input['email2'] ?? null, // Mengambil dari email2
|
||||||
|
'phone' => $input['phone'] ?? null, // Mengambil dari phone
|
||||||
|
'mobile_phone' => $input['mobile'] ?? null, // Mengambil dari mobile
|
||||||
|
'mother' => $input['motherName'] ?? null, // Mengambil dari motherName
|
||||||
|
'account_number' => null, // Tidak ada padanan langsung, bisa diisi manual atau dari input lain
|
||||||
|
'marital_status' => $input['maritalStatus'] ?? null, // Mengambil dari maritalStatus
|
||||||
|
'country_id' => null, // Tidak ada padanan langsung, perlu penyesuaian jika ada input negara
|
||||||
|
'citizenship' => null, // Tidak ada padanan langsung, perlu penyesuaian jika ada input kewarganegaraan
|
||||||
|
'death' => $input['death'] ?? null, // Mengambil dari death (asumsi 0/1 atau boolean)
|
||||||
|
'death_date' => $input['deathTime'] ?? null, // Mengambil dari deathTime
|
||||||
|
'create_date' => date('Y-m-d H:i:s'), // Ini adalah tanggal dan waktu saat ini di server PHP
|
||||||
|
];
|
||||||
|
|
||||||
|
// Apakah Pasien Ada
|
||||||
|
$existingPatient = $this->db->table('patients')->where('pat_id', $pat_id)->get()->getRowArray();
|
||||||
|
|
||||||
|
// Mengembalikan 404
|
||||||
|
if (empty($existingPatient)) {
|
||||||
|
return $this->failNotFound('Patient with ID ' . $pat_id . ' not found.');
|
||||||
|
}
|
||||||
|
|
||||||
|
$rules = [
|
||||||
|
'pat_num' => 'required|max_length[50]',
|
||||||
|
'name_first' => 'required|min_length[3]|max_length[255]',
|
||||||
|
'name_middle' => 'permit_empty',
|
||||||
|
'name_maiden' => 'permit_empty',
|
||||||
|
'name_last' => 'permit_empty',
|
||||||
|
'birth_date' => 'permit_empty|valid_date[Y-m-d]',
|
||||||
|
'pat_altnum' => 'permit_empty|max_length[50]',
|
||||||
|
'address_1' => 'permit_empty',
|
||||||
|
'address_2' => 'permit_empty',
|
||||||
|
'address_3' => 'permit_empty',
|
||||||
|
'city' => 'permit_empty',
|
||||||
|
];
|
||||||
|
|
||||||
|
// Request dari client tidak valid atau tidak bisa diproses oleh server - 400
|
||||||
|
if (!$this->validateData($data, $rules)) {
|
||||||
|
return $this->failValidationErrors($this->validator->getErrors());
|
||||||
|
}
|
||||||
|
|
||||||
|
$allowedUpdateFields = [
|
||||||
|
'name_first', 'name_last', 'name_middle',
|
||||||
|
'pat_num', 'pat_altnum', 'birth_date', 'birth_place',
|
||||||
|
'address_1', 'address_2', 'address_3', 'city', 'province', 'zip',
|
||||||
|
'email_1', 'email_2', 'phone', 'mobile_phone', 'mother', 'account_number'
|
||||||
|
];
|
||||||
|
|
||||||
|
$datas = [];
|
||||||
|
foreach ($allowedUpdateFields as $field) {
|
||||||
|
if (isset($data[$field])) {
|
||||||
|
$datas[$field] = $data[$field];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (empty($data)) {
|
||||||
|
return $this->failValidationError('No data provided for update.');
|
||||||
|
}
|
||||||
|
|
||||||
|
$this->db->table('patients')->where('pat_id', $pat_id)->update($data);
|
||||||
|
|
||||||
|
// Sukses & Insert = 201 - Kirim data patient ID
|
||||||
|
return $this->respondCreated([
|
||||||
|
'status' => 'success',
|
||||||
|
'message' => 'Patient updated successfully',
|
||||||
|
'data' => $data
|
||||||
|
], 201);
|
||||||
|
|
||||||
|
} catch (\Exception $e) {
|
||||||
|
// Error Server = 500
|
||||||
|
return $this->failServerError('Something went wrong '.$e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// OK
|
||||||
|
public function delete($pat_id = null) {
|
||||||
|
|
||||||
|
try {
|
||||||
|
|
||||||
|
if (!$pat_id) {
|
||||||
|
return $this->failValidationError('Patient ID is required.');
|
||||||
|
}
|
||||||
|
|
||||||
|
// Cari data pasien
|
||||||
|
$patient = $this->db->table('patients')
|
||||||
|
->where('pat_id', $pat_id)
|
||||||
|
->get()
|
||||||
|
->getRow();
|
||||||
|
|
||||||
|
if (!$patient) {
|
||||||
|
return $this->failNotFound("Patient ID with {$pat_id} not found.");
|
||||||
|
}
|
||||||
|
|
||||||
|
// Hapus data pasien berdasarkan pat_num
|
||||||
|
$this->db->table('patients')->where('pat_id', $pat_id)->delete();
|
||||||
|
|
||||||
|
// Mengembalikan 200
|
||||||
|
return $this->respondDeleted([
|
||||||
|
'status' => 'success',
|
||||||
|
'message' => "Patient ID with {$pat_id} deleted successfully."
|
||||||
|
]);
|
||||||
|
|
||||||
|
} catch (\Exception $e) {
|
||||||
|
return $this->failServerError("Internal server error: " . $e->getMessage());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@ -1,318 +0,0 @@
|
|||||||
<?php
|
|
||||||
namespace App\Controllers\Patient;
|
|
||||||
|
|
||||||
use App\Traits\ResponseTrait;
|
|
||||||
use CodeIgniter\Controller;
|
|
||||||
use App\Libraries\ValueSet;
|
|
||||||
use App\Models\Patient\PatientModel;
|
|
||||||
|
|
||||||
class PatientController extends Controller {
|
|
||||||
use ResponseTrait;
|
|
||||||
|
|
||||||
protected $db;
|
|
||||||
protected $model;
|
|
||||||
protected $rules;
|
|
||||||
|
|
||||||
public function __construct() {
|
|
||||||
$this->db = \Config\Database::connect();
|
|
||||||
$this->model = new PatientModel();
|
|
||||||
$this->rules = [
|
|
||||||
'PatientID' => 'required|regex_match[/^[A-Za-z0-9.-]+$/]|max_length[30]',
|
|
||||||
'AlternatePID' => 'permit_empty|regex_match[/^[A-Za-z0-9.-]+$/]|max_length[30]',
|
|
||||||
'Prefix' => 'permit_empty|regex_match[/^[A-Za-z\'\. ]+$/]|max_length[10]',
|
|
||||||
'Sex' => 'required',
|
|
||||||
|
|
||||||
'NameFirst' => 'required|regex_match[/^[A-Za-z\'\. ]+$/]|min_length[1]|max_length[60]',
|
|
||||||
'NameMiddle' => 'permit_empty|regex_match[/^[A-Za-z\'\. ]+$/]|min_length[1]|max_length[60]',
|
|
||||||
'NameMaiden' => 'permit_empty|regex_match[/^[A-Za-z\'\. ]+$/]|min_length[1]|max_length[60]',
|
|
||||||
'NameLast' => 'permit_empty|regex_match[/^[A-Za-z\'\. ]+$/]|min_length[1]|max_length[60]',
|
|
||||||
|
|
||||||
'Suffix' => 'permit_empty|regex_match[/^[A-Za-z\'\. ]+$/]|max_length[10]',
|
|
||||||
'PlaceOfBirth' => 'permit_empty|regex_match[/^[A-Za-z\'\. ]+$/]|max_length[100]',
|
|
||||||
'Citizenship' => 'permit_empty|regex_match[/^[A-Za-z\'\. ]+$/]|max_length[100]',
|
|
||||||
|
|
||||||
'Street_1' => 'permit_empty|regex_match[/^[A-Za-z0-9\'.,\/\- ]+$/]|max_length[255]',
|
|
||||||
'Street_2' => 'permit_empty|regex_match[/^[A-Za-z0-9\'.,\/\- ]+$/]|max_length[255]',
|
|
||||||
'Street_3' => 'permit_empty|regex_match[/^[A-Za-z0-9\'.,\/\- ]+$/]|max_length[255]',
|
|
||||||
|
|
||||||
'EmailAddress1' => 'permit_empty|valid_email|max_length[100]',
|
|
||||||
'EmailAddress2' => 'permit_empty|valid_email|max_length[100]',
|
|
||||||
|
|
||||||
'Birthdate' => 'required',
|
|
||||||
'PatIdt.IdentifierType' => 'permit_empty',
|
|
||||||
'PatIdt.Identifier' => 'permit_empty|max_length[255]',
|
|
||||||
|
|
||||||
'ZIP' => 'permit_empty|is_natural|max_length[10]',
|
|
||||||
'Phone' => 'permit_empty|regex_match[/^\\+?[0-9]{8,15}$/]',
|
|
||||||
'MobilePhone' => 'permit_empty|regex_match[/^\\+?[0-9]{8,15}$/]'
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
||||||
public function index() {
|
|
||||||
$filters = [
|
|
||||||
'InternalPID' => $this->request->getVar('InternalPID'),
|
|
||||||
'PatientID' => $this->request->getVar('PatientID'),
|
|
||||||
'Name' => $this->request->getVar('Name'),
|
|
||||||
'Birthdate' => $this->request->getVar('Birthdate'),
|
|
||||||
];
|
|
||||||
|
|
||||||
try {
|
|
||||||
$rows = $this->model->getPatients($filters);
|
|
||||||
|
|
||||||
$rows = ValueSet::transformLabels($rows, [
|
|
||||||
'Sex' => 'sex',
|
|
||||||
]);
|
|
||||||
|
|
||||||
return $this->respond([ 'status' => 'success', 'message'=> "data fetched successfully", 'data' => $rows ], 200);
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
return $this->failServerError('Exception : '.$e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function show($InternalPID = null) {
|
|
||||||
try {
|
|
||||||
$row = $this->model->getPatient($InternalPID);
|
|
||||||
if (empty($row)) { return $this->respond([ 'status' => 'success', 'message' => "data not found.", 'data' => null ], 200); }
|
|
||||||
|
|
||||||
$row = ValueSet::transformLabels([$row], [
|
|
||||||
'Sex' => 'sex',
|
|
||||||
])[0];
|
|
||||||
|
|
||||||
return $this->respond([ 'status' => 'success', 'message' => "data fetched successfully", 'data' => $row ], 200);
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function create() {
|
|
||||||
$input = $this->request->getJSON(true);
|
|
||||||
|
|
||||||
// Khusus untuk Override PATIDT
|
|
||||||
$type = $input['PatIdt']['IdentifierType'] ?? null;
|
|
||||||
$identifierRulesMap = $this->getPatIdtIdentifierRulesMap();
|
|
||||||
if ($type === null || $type === '' || !is_string($type)) {
|
|
||||||
$identifierRule = 'permit_empty|max_length[255]';
|
|
||||||
$this->rules['PatIdt.IdentifierType'] = 'permit_empty';
|
|
||||||
$this->rules['PatIdt.Identifier'] = $identifierRule;
|
|
||||||
} else {
|
|
||||||
$identifierRule = $identifierRulesMap[$type] ?? 'permit_empty|max_length[255]';
|
|
||||||
$this->rules['PatIdt.IdentifierType'] = 'required';
|
|
||||||
$this->rules['PatIdt.Identifier'] = $identifierRule;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!$this->validateData($input, $this->rules)) { return $this->failValidationErrors($this->validator->getErrors()); }
|
|
||||||
try {
|
|
||||||
$InternalPID = $this->model->createPatient($input);
|
|
||||||
return $this->respondCreated([ 'status' => 'success', 'message' => "data $InternalPID created successfully" ]);
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function update($InternalPID = null) {
|
|
||||||
$input = $this->request->getJSON(true) ?? [];
|
|
||||||
|
|
||||||
if (!$InternalPID || !ctype_digit((string) $InternalPID)) {
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'error',
|
|
||||||
'message' => 'InternalPID is required and must be a valid integer.'
|
|
||||||
], 400);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!is_array($input) || $input === []) {
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'failed',
|
|
||||||
'message' => 'Patch payload is required.'
|
|
||||||
], 400);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (array_key_exists('PatIdt', $input) && $input['PatIdt'] !== null && !is_array($input['PatIdt'])) {
|
|
||||||
return $this->failValidationErrors([
|
|
||||||
'PatIdt' => 'PatIdt must be an object or null.'
|
|
||||||
]);
|
|
||||||
}
|
|
||||||
|
|
||||||
$patchRules = $this->buildPatchRules($input);
|
|
||||||
if ($patchRules !== [] && !$this->validateData($input, $patchRules)) {
|
|
||||||
return $this->failValidationErrors($this->validator->getErrors());
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
$updatedPid = $this->model->updatePatientPartial((int) $InternalPID, $input);
|
|
||||||
if ($updatedPid === null) {
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'failed',
|
|
||||||
'message' => "data $InternalPID not found"
|
|
||||||
], 404);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->respond([ 'status' => 'success', 'message' => "data $updatedPid update successfully" ], 200);
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private function buildPatchRules(array $input): array
|
|
||||||
{
|
|
||||||
$rules = [];
|
|
||||||
|
|
||||||
$fieldRules = [
|
|
||||||
'PatientID' => 'permit_empty|regex_match[/^[A-Za-z0-9.-]+$/]|max_length[30]',
|
|
||||||
'AlternatePID' => 'permit_empty|regex_match[/^[A-Za-z0-9.-]+$/]|max_length[30]',
|
|
||||||
'Prefix' => 'permit_empty|regex_match[/^[A-Za-z\'\. ]+$/]|max_length[10]',
|
|
||||||
'Sex' => 'permit_empty',
|
|
||||||
'NameFirst' => 'required|regex_match[/^[A-Za-z\'\. ]+$/]|min_length[1]|max_length[60]',
|
|
||||||
'NameMiddle' => 'permit_empty|regex_match[/^[A-Za-z\'\. ]+$/]|min_length[1]|max_length[60]',
|
|
||||||
'NameMaiden' => 'permit_empty|regex_match[/^[A-Za-z\'\. ]+$/]|min_length[1]|max_length[60]',
|
|
||||||
'NameLast' => 'permit_empty|regex_match[/^[A-Za-z\'\. ]+$/]|min_length[1]|max_length[60]',
|
|
||||||
'Suffix' => 'permit_empty|regex_match[/^[A-Za-z\'\. ]+$/]|max_length[10]',
|
|
||||||
'PlaceOfBirth' => 'permit_empty|regex_match[/^[A-Za-z\'\. ]+$/]|max_length[100]',
|
|
||||||
'Citizenship' => 'permit_empty|regex_match[/^[A-Za-z\'\. ]+$/]|max_length[100]',
|
|
||||||
'Street_1' => 'permit_empty|regex_match[/^[A-Za-z0-9\'.,\/\- ]+$/]|max_length[255]',
|
|
||||||
'Street_2' => 'permit_empty|regex_match[/^[A-Za-z0-9\'.,\/\- ]+$/]|max_length[255]',
|
|
||||||
'Street_3' => 'permit_empty|regex_match[/^[A-Za-z0-9\'.,\/\- ]+$/]|max_length[255]',
|
|
||||||
'EmailAddress1' => 'permit_empty|valid_email|max_length[100]',
|
|
||||||
'EmailAddress2' => 'permit_empty|valid_email|max_length[100]',
|
|
||||||
'Birthdate' => 'permit_empty',
|
|
||||||
'ZIP' => 'permit_empty|is_natural|max_length[10]',
|
|
||||||
'Phone' => 'permit_empty|regex_match[/^\\+?[0-9]{8,15}$/]',
|
|
||||||
'MobilePhone' => 'permit_empty|regex_match[/^\\+?[0-9]{8,15}$/]',
|
|
||||||
'Country' => 'permit_empty|max_length[10]',
|
|
||||||
'Race' => 'permit_empty|max_length[100]',
|
|
||||||
'MaritalStatus' => 'permit_empty',
|
|
||||||
'Religion' => 'permit_empty|max_length[100]',
|
|
||||||
'Ethnic' => 'permit_empty|max_length[100]',
|
|
||||||
'isDead' => 'permit_empty',
|
|
||||||
'TimeOfDeath' => 'permit_empty',
|
|
||||||
'PatCom' => 'permit_empty|string',
|
|
||||||
'PatAtt' => 'permit_empty',
|
|
||||||
'LinkTo' => 'permit_empty',
|
|
||||||
'Custodian' => 'permit_empty',
|
|
||||||
];
|
|
||||||
|
|
||||||
foreach ($fieldRules as $field => $rule) {
|
|
||||||
if (array_key_exists($field, $input) && $field !== 'PatIdt') {
|
|
||||||
$rules[$field] = $rule;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (array_key_exists('PatIdt', $input) && $input['PatIdt'] !== null) {
|
|
||||||
$type = $input['PatIdt']['IdentifierType'] ?? null;
|
|
||||||
$identifierRulesMap = $this->getPatIdtIdentifierRulesMap();
|
|
||||||
$identifierRule = is_string($type)
|
|
||||||
? ($identifierRulesMap[$type] ?? 'required|max_length[255]')
|
|
||||||
: 'required|max_length[255]';
|
|
||||||
|
|
||||||
$rules['PatIdt.IdentifierType'] = 'required';
|
|
||||||
$rules['PatIdt.Identifier'] = $identifierRule;
|
|
||||||
}
|
|
||||||
|
|
||||||
return $rules;
|
|
||||||
}
|
|
||||||
|
|
||||||
private function getPatIdtIdentifierRulesMap(): array
|
|
||||||
{
|
|
||||||
return [
|
|
||||||
'KTP' => 'required|regex_match[/^[0-9]{16}$/]',
|
|
||||||
'PASS' => 'required|regex_match[/^[A-Za-z0-9]{1,9}$/]',
|
|
||||||
'SSN' => 'required|regex_match[/^[0-9]{9}$/]',
|
|
||||||
'SIM' => 'required|regex_match[/^[0-9]{19,20}$/]',
|
|
||||||
'KTAS' => 'required|regex_match[/^[0-9]{11}$/]',
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
||||||
public function delete() {
|
|
||||||
try {
|
|
||||||
$input = $this->request->getJSON(true);
|
|
||||||
$InternalPID = $input["InternalPID"];
|
|
||||||
|
|
||||||
// Mencegah Inputan 0, [], null, sql injection
|
|
||||||
if (empty($InternalPID) || !ctype_digit((string) $InternalPID)) {
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'error',
|
|
||||||
'message' => "Patient ID must be a valid integer."
|
|
||||||
], 400);
|
|
||||||
}
|
|
||||||
|
|
||||||
$patient = $this->db->table('patient')->where('InternalPID', $InternalPID)->get()->getRow();
|
|
||||||
|
|
||||||
if (!$patient) {
|
|
||||||
return $this->failNotFound("Patient ID with {$InternalPID} not found.");
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->db->table('patient')->where('InternalPID', $InternalPID)->update(['DelDate' => date('Y-m-d H:i:s')]);
|
|
||||||
|
|
||||||
return $this->respondDeleted([
|
|
||||||
'status' => 'success',
|
|
||||||
'message' => "Patient ID with {$InternalPID} deleted successfully."
|
|
||||||
]);
|
|
||||||
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
return $this->failServerError("Internal server error: " . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function patientCheck() {
|
|
||||||
try {
|
|
||||||
$PatientID = $this->request->getVar('PatientID');
|
|
||||||
$EmailAddress = $this->request->getVar('EmailAddress');
|
|
||||||
$Phone = $this->request->getVar('Phone');
|
|
||||||
|
|
||||||
if (!empty($PatientID)){
|
|
||||||
if (!preg_match('/^[A-Za-z0-9.-]+$/', (string) $PatientID)) {
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'error',
|
|
||||||
'message' => 'PatientID format is invalid.',
|
|
||||||
'data' => null
|
|
||||||
], 400);
|
|
||||||
}
|
|
||||||
|
|
||||||
$patient = $this->db->table('patient')
|
|
||||||
->where('PatientID', $PatientID)
|
|
||||||
->get()
|
|
||||||
->getRowArray();
|
|
||||||
} elseif (!empty($EmailAddress)) {
|
|
||||||
$patient = $this->db->table('patient')
|
|
||||||
->groupStart()
|
|
||||||
->where('EmailAddress1', $EmailAddress)
|
|
||||||
->orWhere('EmailAddress2', $EmailAddress)
|
|
||||||
->groupEnd()
|
|
||||||
->get()
|
|
||||||
->getRowArray();
|
|
||||||
} elseif (!empty($Phone)){
|
|
||||||
$patient = $this->db->table('patient')
|
|
||||||
->groupStart()
|
|
||||||
->where('Phone', $Phone)
|
|
||||||
->orWhere('MobilePhone', $Phone)
|
|
||||||
->groupEnd()
|
|
||||||
->get()
|
|
||||||
->getRowArray();
|
|
||||||
} else {
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'error',
|
|
||||||
'message' => 'PatientID, EmailAddress, or Phone parameter is required.',
|
|
||||||
'data' => null
|
|
||||||
], 400);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!$patient) {
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'success',
|
|
||||||
'message' => !empty($PatientID) ? 'PatientID not found.' : (!empty($Phone) ? 'Phone not found.' : 'EmailAddress not found.'),
|
|
||||||
'data' => true,
|
|
||||||
], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'success',
|
|
||||||
'message' => !empty($PatientID) ? 'PatientID already exists.' : (!empty($Phone) ? 'Phone already exists.' : 'EmailAddress already exists.'),
|
|
||||||
'data' => false,
|
|
||||||
], 200);
|
|
||||||
|
|
||||||
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
// Error Server Mengembalikan 500
|
|
||||||
return $this->failServerError('Something went wrong.'.$e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
1265
app/Controllers/PatientCountry.php
Normal file
1265
app/Controllers/PatientCountry.php
Normal file
File diff suppressed because it is too large
Load Diff
27
app/Controllers/PatientRace.php
Normal file
27
app/Controllers/PatientRace.php
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
<?php
|
||||||
|
namespace App\Controllers;
|
||||||
|
|
||||||
|
use CodeIgniter\API\ResponseTrait;
|
||||||
|
use CodeIgniter\Controller;
|
||||||
|
use CodeIgniter\Database\RawSql;
|
||||||
|
|
||||||
|
class PatientRace extends Controller {
|
||||||
|
use ResponseTrait;
|
||||||
|
|
||||||
|
public function index() {
|
||||||
|
$data = [
|
||||||
|
[ 'patraceid'=>'1', 'patracecode'=> 'ASIA', 'full_text'=>'Asian' ],
|
||||||
|
[ 'patraceid'=>'2', 'patracecode'=> 'AMERICA', 'full_text'=>'American Indian or Alaska Native' ],
|
||||||
|
[ 'patraceid'=>'3', 'patracecode'=> 'AFRICA', 'full_text'=>'Black or African-American' ],
|
||||||
|
[ 'patraceid'=>'4', 'patracecode'=> 'LATIN', 'full_text'=>'Hispanic or Latino' ],
|
||||||
|
[ 'patraceid'=>'5', 'patracecode'=> 'HAWAI', 'full_text'=>'Native Hawaiian or Pacific Islander' ],
|
||||||
|
[ 'patraceid'=>'6', 'patracecode'=> 'WHITE', 'full_text'=>'White' ],
|
||||||
|
[ 'patraceid'=>'7', 'patracecode'=> 'UK', 'full_text'=>'Unknown' ]
|
||||||
|
];
|
||||||
|
|
||||||
|
return $this->respond([
|
||||||
|
'status' => 'success',
|
||||||
|
'data' => $data,
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
}
|
||||||
26
app/Controllers/PatientReligion.php
Normal file
26
app/Controllers/PatientReligion.php
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
<?php
|
||||||
|
namespace App\Controllers;
|
||||||
|
|
||||||
|
use CodeIgniter\API\ResponseTrait;
|
||||||
|
use CodeIgniter\Controller;
|
||||||
|
use CodeIgniter\Database\RawSql;
|
||||||
|
|
||||||
|
class PatientReligion extends Controller {
|
||||||
|
use ResponseTrait;
|
||||||
|
|
||||||
|
public function index() {
|
||||||
|
$data = [
|
||||||
|
[ 'patreliid'=>'1', 'patrelicode'=> 'ISL', 'full_text'=>'Islam' ],
|
||||||
|
[ 'patreliid'=>'2', 'patrelicode'=> 'KAT', 'full_text'=>'Katolik' ],
|
||||||
|
[ 'patreliid'=>'3', 'patrelicode'=> 'PRO', 'full_text'=>'Protestan' ],
|
||||||
|
[ 'patreliid'=>'4', 'patrelicode'=> 'BUD', 'full_text'=>'Buddha' ],
|
||||||
|
[ 'patreliid'=>'5', 'patrelicode'=> 'HIN', 'full_text'=>'Hindu' ],
|
||||||
|
[ 'patreliid'=>'6', 'patrelicode'=> 'KON', 'full_text'=>'Kong Hu Chu' ],
|
||||||
|
];
|
||||||
|
|
||||||
|
return $this->respond([
|
||||||
|
'status' => 'success',
|
||||||
|
'data' => $data,
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -1,75 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace App\Controllers;
|
|
||||||
|
|
||||||
use App\Traits\ResponseTrait;
|
|
||||||
use CodeIgniter\Controller;
|
|
||||||
use App\Models\PatResultModel;
|
|
||||||
use App\Models\OrderTest\OrderTestModel;
|
|
||||||
use App\Models\Patient\PatientModel;
|
|
||||||
|
|
||||||
class ReportController extends Controller {
|
|
||||||
use ResponseTrait;
|
|
||||||
|
|
||||||
protected $resultModel;
|
|
||||||
protected $orderModel;
|
|
||||||
protected $patientModel;
|
|
||||||
|
|
||||||
public function __construct() {
|
|
||||||
$this->resultModel = new PatResultModel();
|
|
||||||
$this->orderModel = new OrderTestModel();
|
|
||||||
$this->patientModel = new PatientModel();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Generate HTML lab report for an order
|
|
||||||
* GET /api/report/{orderID}
|
|
||||||
*/
|
|
||||||
public function view($orderID) {
|
|
||||||
try {
|
|
||||||
// Get order details
|
|
||||||
$order = $this->orderModel->find((int)$orderID);
|
|
||||||
|
|
||||||
if (!$order) {
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'failed',
|
|
||||||
'message' => 'Order not found',
|
|
||||||
'data' => []
|
|
||||||
], 404);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Get patient details
|
|
||||||
$patient = $this->patientModel->find($order['InternalPID']);
|
|
||||||
|
|
||||||
if (!$patient) {
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'failed',
|
|
||||||
'message' => 'Patient not found',
|
|
||||||
'data' => []
|
|
||||||
], 404);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Get results for this order
|
|
||||||
$results = $this->resultModel->getByOrder((int)$orderID);
|
|
||||||
|
|
||||||
// Prepare data for the view
|
|
||||||
$data = [
|
|
||||||
'patient' => $patient,
|
|
||||||
'order' => $order,
|
|
||||||
'results' => $results,
|
|
||||||
'generatedAt' => date('Y-m-d H:i:s')
|
|
||||||
];
|
|
||||||
|
|
||||||
// Return HTML view
|
|
||||||
return view('reports/lab_report', $data);
|
|
||||||
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
log_message('error', 'ReportController::view error: ' . $e->getMessage());
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'failed',
|
|
||||||
'message' => 'Failed to generate report',
|
|
||||||
'data' => []
|
|
||||||
], 500);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,144 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace App\Controllers\Result;
|
|
||||||
|
|
||||||
use App\Models\ValueSet\ValueSetModel;
|
|
||||||
use App\Traits\ResponseTrait;
|
|
||||||
|
|
||||||
class ResultValueSetController extends \CodeIgniter\Controller
|
|
||||||
{
|
|
||||||
use ResponseTrait;
|
|
||||||
|
|
||||||
protected $dbModel;
|
|
||||||
|
|
||||||
public function __construct()
|
|
||||||
{
|
|
||||||
$this->dbModel = new ValueSetModel();
|
|
||||||
}
|
|
||||||
|
|
||||||
public function index()
|
|
||||||
{
|
|
||||||
$search = $this->request->getGet('search') ?? $this->request->getGet('param') ?? null;
|
|
||||||
$VSetID = $this->request->getGet('VSetID') ?? null;
|
|
||||||
|
|
||||||
$rows = $this->dbModel->getValueSets($search, $VSetID);
|
|
||||||
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'success',
|
|
||||||
'data' => $rows
|
|
||||||
], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function show($id = null)
|
|
||||||
{
|
|
||||||
$row = $this->dbModel->getValueSet($id);
|
|
||||||
if (!$row) {
|
|
||||||
return $this->failNotFound("ValueSet item not found: $id");
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'success',
|
|
||||||
'data' => $row
|
|
||||||
], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function create()
|
|
||||||
{
|
|
||||||
$input = $this->request->getJSON(true);
|
|
||||||
if (!$input) {
|
|
||||||
return $this->failValidationErrors(['Invalid JSON input']);
|
|
||||||
}
|
|
||||||
|
|
||||||
$data = [
|
|
||||||
'SiteID' => $input['SiteID'] ?? 1,
|
|
||||||
'VSetID' => $input['VSetID'] ?? null,
|
|
||||||
'VOrder' => $input['VOrder'] ?? 0,
|
|
||||||
'VValue' => $input['VValue'] ?? '',
|
|
||||||
'VDesc' => $input['VDesc'] ?? '',
|
|
||||||
'VCategory' => $input['VCategory'] ?? null
|
|
||||||
];
|
|
||||||
|
|
||||||
if ($data['VSetID'] === null) {
|
|
||||||
return $this->failValidationErrors(['VSetID is required']);
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
$id = $this->dbModel->insert($data, true);
|
|
||||||
if (!$id) {
|
|
||||||
return $this->failValidationErrors($this->dbModel->errors());
|
|
||||||
}
|
|
||||||
|
|
||||||
$newRow = $this->dbModel->getValueSet($id);
|
|
||||||
return $this->respondCreated([
|
|
||||||
'status' => 'success',
|
|
||||||
'message' => 'ValueSet item created',
|
|
||||||
'data' => $newRow
|
|
||||||
]);
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
return $this->failServerError('Failed to create: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function update($id = null)
|
|
||||||
{
|
|
||||||
$input = $this->request->getJSON(true);
|
|
||||||
if (!$input) {
|
|
||||||
return $this->failValidationErrors(['Invalid JSON input']);
|
|
||||||
}
|
|
||||||
|
|
||||||
$existing = $this->dbModel->getValueSet($id);
|
|
||||||
if (!$existing) {
|
|
||||||
return $this->failNotFound("ValueSet item not found: $id");
|
|
||||||
}
|
|
||||||
|
|
||||||
$data = [];
|
|
||||||
if (isset($input['VSetID'])) $data['VSetID'] = $input['VSetID'];
|
|
||||||
if (isset($input['VOrder'])) $data['VOrder'] = $input['VOrder'];
|
|
||||||
if (isset($input['VValue'])) $data['VValue'] = $input['VValue'];
|
|
||||||
if (isset($input['VDesc'])) $data['VDesc'] = $input['VDesc'];
|
|
||||||
if (isset($input['SiteID'])) $data['SiteID'] = $input['SiteID'];
|
|
||||||
if (isset($input['VCategory'])) $data['VCategory'] = $input['VCategory'];
|
|
||||||
|
|
||||||
if (empty($data)) {
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'success',
|
|
||||||
'message' => 'No changes to update',
|
|
||||||
'data' => $existing
|
|
||||||
], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
$updated = $this->dbModel->update($id, $data);
|
|
||||||
if (!$updated) {
|
|
||||||
return $this->failValidationErrors($this->dbModel->errors());
|
|
||||||
}
|
|
||||||
|
|
||||||
$newRow = $this->dbModel->getValueSet($id);
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'success',
|
|
||||||
'message' => 'ValueSet item updated',
|
|
||||||
'data' => $newRow
|
|
||||||
], 200);
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
return $this->failServerError('Failed to update: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function delete($id = null)
|
|
||||||
{
|
|
||||||
$existing = $this->dbModel->getValueSet($id);
|
|
||||||
if (!$existing) {
|
|
||||||
return $this->failNotFound("ValueSet item not found: $id");
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
$this->dbModel->delete($id);
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'success',
|
|
||||||
'message' => 'ValueSet item deleted'
|
|
||||||
], 200);
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
return $this->failServerError('Failed to delete: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,280 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace App\Controllers;
|
|
||||||
|
|
||||||
use App\Traits\PatchValidationTrait;
|
|
||||||
use App\Traits\ResponseTrait;
|
|
||||||
use CodeIgniter\Controller;
|
|
||||||
use App\Models\PatResultModel;
|
|
||||||
use Config\Services;
|
|
||||||
|
|
||||||
class ResultController extends Controller {
|
|
||||||
use ResponseTrait;
|
|
||||||
use PatchValidationTrait;
|
|
||||||
|
|
||||||
protected $model;
|
|
||||||
|
|
||||||
public function __construct() {
|
|
||||||
$this->model = new PatResultModel();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* List results with optional filters
|
|
||||||
* GET /api/result
|
|
||||||
*/
|
|
||||||
public function index() {
|
|
||||||
try {
|
|
||||||
$orderID = $this->request->getGet('order_id');
|
|
||||||
$patientID = $this->request->getGet('patient_id');
|
|
||||||
|
|
||||||
if ($orderID) {
|
|
||||||
$results = $this->model->getByOrder((int)$orderID);
|
|
||||||
} elseif ($patientID) {
|
|
||||||
$results = $this->model->getByPatient((int)$patientID);
|
|
||||||
} else {
|
|
||||||
// Get all results with pagination
|
|
||||||
$page = (int)($this->request->getGet('page') ?? 1);
|
|
||||||
$perPage = (int)($this->request->getGet('per_page') ?? 20);
|
|
||||||
|
|
||||||
$results = $this->model
|
|
||||||
->where('DelDate', null)
|
|
||||||
->orderBy('ResultID', 'DESC')
|
|
||||||
->paginate($perPage, 'default', $page);
|
|
||||||
}
|
|
||||||
|
|
||||||
$results = is_array($results)
|
|
||||||
? array_map([$this, 'hydrateResultPayload'], $results)
|
|
||||||
: $results;
|
|
||||||
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'success',
|
|
||||||
'message' => 'Results retrieved successfully',
|
|
||||||
'data' => $results
|
|
||||||
], 200);
|
|
||||||
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
log_message('error', 'ResultController::index error: ' . $e->getMessage());
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'failed',
|
|
||||||
'message' => 'Failed to retrieve results',
|
|
||||||
'data' => []
|
|
||||||
], 500);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get single result
|
|
||||||
* GET /api/result/{id}
|
|
||||||
*/
|
|
||||||
public function show($id) {
|
|
||||||
try {
|
|
||||||
$result = $this->model->getWithRelations((int)$id);
|
|
||||||
|
|
||||||
if (!$result) {
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'failed',
|
|
||||||
'message' => 'Result not found',
|
|
||||||
'data' => []
|
|
||||||
], 404);
|
|
||||||
}
|
|
||||||
|
|
||||||
$result = $this->hydrateResultPayload($result);
|
|
||||||
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'success',
|
|
||||||
'message' => 'Result retrieved successfully',
|
|
||||||
'data' => $result
|
|
||||||
], 200);
|
|
||||||
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
log_message('error', 'ResultController::show error: ' . $e->getMessage());
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'failed',
|
|
||||||
'message' => 'Failed to retrieve result',
|
|
||||||
'data' => []
|
|
||||||
], 500);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Create a new result entry
|
|
||||||
* POST /api/result
|
|
||||||
*/
|
|
||||||
public function create() {
|
|
||||||
$payload = $this->request->getJSON(true);
|
|
||||||
if (!is_array($payload) || empty($payload)) {
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'failed',
|
|
||||||
'message' => 'No data provided',
|
|
||||||
'data' => []
|
|
||||||
], 400);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isset($payload['ResultValue'])) {
|
|
||||||
$payload['Result'] = $payload['ResultValue'];
|
|
||||||
}
|
|
||||||
|
|
||||||
$dbPayload = $payload;
|
|
||||||
unset($dbPayload['ResultValue'], $dbPayload['ResultCode']);
|
|
||||||
|
|
||||||
try {
|
|
||||||
$resultId = $this->model->insert($dbPayload, true);
|
|
||||||
|
|
||||||
if (!$resultId) {
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'failed',
|
|
||||||
'message' => 'Failed to create result',
|
|
||||||
'data' => []
|
|
||||||
], 500);
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->rememberResultCode($resultId, $payload['ResultCode'] ?? null);
|
|
||||||
|
|
||||||
return $this->respondCreated([
|
|
||||||
'status' => 'success',
|
|
||||||
'message' => 'Result created successfully',
|
|
||||||
'data' => [
|
|
||||||
'ResultID' => $resultId,
|
|
||||||
'ResultValue' => $payload['ResultValue'] ?? ($payload['Result'] ?? null),
|
|
||||||
'ResultCode' => $payload['ResultCode'] ?? null,
|
|
||||||
]
|
|
||||||
], 201);
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
log_message('error', 'ResultController::create error: ' . $e->getMessage());
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'failed',
|
|
||||||
'message' => 'Failed to create result',
|
|
||||||
'data' => []
|
|
||||||
], 500);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Update result with validation
|
|
||||||
* PATCH /api/result/{id}
|
|
||||||
*/
|
|
||||||
public function update($id) {
|
|
||||||
try {
|
|
||||||
$data = $this->requirePatchPayload($this->request->getJSON(true));
|
|
||||||
if ($data === null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$validatedId = $this->requirePatchId($id, 'ResultID');
|
|
||||||
if ($validatedId === null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$existing = $this->model->find($validatedId);
|
|
||||||
if (!$existing) {
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'failed',
|
|
||||||
'message' => 'Result not found',
|
|
||||||
'data' => []
|
|
||||||
], 404);
|
|
||||||
}
|
|
||||||
|
|
||||||
$resultCode = $data['ResultCode'] ?? null;
|
|
||||||
$hasResultValue = array_key_exists('ResultValue', $data);
|
|
||||||
|
|
||||||
if ($hasResultValue) {
|
|
||||||
$data['Result'] = $data['ResultValue'];
|
|
||||||
}
|
|
||||||
|
|
||||||
unset($data['ResultValue'], $data['ResultCode']);
|
|
||||||
|
|
||||||
$shouldUpdateModel = $hasResultValue || !empty($data);
|
|
||||||
|
|
||||||
if ($shouldUpdateModel) {
|
|
||||||
$result = $this->model->updateWithValidation($validatedId, $data);
|
|
||||||
} else {
|
|
||||||
$result = [
|
|
||||||
'success' => true,
|
|
||||||
'flag' => null,
|
|
||||||
'message' => 'Result updated successfully'
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!$result['success']) {
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'failed',
|
|
||||||
'message' => $result['message'],
|
|
||||||
'data' => []
|
|
||||||
], 400);
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($resultCode !== null) {
|
|
||||||
$this->rememberResultCode($validatedId, $resultCode);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Get updated result with relations
|
|
||||||
$updatedResult = $this->model->getWithRelations($validatedId);
|
|
||||||
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'success',
|
|
||||||
'message' => $result['message'],
|
|
||||||
'data' => [
|
|
||||||
'result' => $updatedResult ? $this->hydrateResultPayload($updatedResult) : [],
|
|
||||||
'flag' => $result['flag']
|
|
||||||
]
|
|
||||||
], 200);
|
|
||||||
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
log_message('error', 'ResultController::update error: ' . $e->getMessage());
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'failed',
|
|
||||||
'message' => 'Failed to update result',
|
|
||||||
'data' => []
|
|
||||||
], 500);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Soft delete result
|
|
||||||
* DELETE /api/result/{id}
|
|
||||||
*/
|
|
||||||
public function delete($id) {
|
|
||||||
try {
|
|
||||||
$result = $this->model->find((int)$id);
|
|
||||||
|
|
||||||
if (!$result) {
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'failed',
|
|
||||||
'message' => 'Result not found',
|
|
||||||
'data' => []
|
|
||||||
], 404);
|
|
||||||
}
|
|
||||||
|
|
||||||
$deleted = $this->model->softDelete((int)$id);
|
|
||||||
|
|
||||||
if (!$deleted) {
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'failed',
|
|
||||||
'message' => 'Failed to delete result',
|
|
||||||
'data' => []
|
|
||||||
], 500);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'success',
|
|
||||||
'message' => 'Result deleted successfully',
|
|
||||||
'data' => []
|
|
||||||
], 200);
|
|
||||||
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
log_message('error', 'ResultController::delete error: ' . $e->getMessage());
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'failed',
|
|
||||||
'message' => 'Failed to delete result',
|
|
||||||
'data' => []
|
|
||||||
], 500);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private function hydrateResultPayload(array $payload): array {
|
|
||||||
if (!array_key_exists('ResultValue', $payload) && array_key_exists('Result', $payload)) {
|
|
||||||
$payload['ResultValue'] = $payload['Result'];
|
|
||||||
}
|
|
||||||
return $payload;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,372 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace App\Controllers\Rule;
|
|
||||||
|
|
||||||
use App\Controllers\BaseController;
|
|
||||||
use App\Models\Rule\RuleDefModel;
|
|
||||||
use App\Models\Test\TestDefSiteModel;
|
|
||||||
use App\Services\RuleExpressionService;
|
|
||||||
use App\Traits\PatchValidationTrait;
|
|
||||||
use App\Traits\ResponseTrait;
|
|
||||||
|
|
||||||
class RuleController extends BaseController
|
|
||||||
{
|
|
||||||
use ResponseTrait;
|
|
||||||
use PatchValidationTrait;
|
|
||||||
|
|
||||||
protected RuleDefModel $ruleDefModel;
|
|
||||||
|
|
||||||
public function __construct()
|
|
||||||
{
|
|
||||||
$this->ruleDefModel = new RuleDefModel();
|
|
||||||
}
|
|
||||||
|
|
||||||
public function index()
|
|
||||||
{
|
|
||||||
try {
|
|
||||||
$eventCode = $this->request->getGet('EventCode');
|
|
||||||
$testSiteID = $this->request->getGet('TestSiteID');
|
|
||||||
$search = $this->request->getGet('search');
|
|
||||||
|
|
||||||
$builder = $this->ruleDefModel->where('ruledef.EndDate', null);
|
|
||||||
|
|
||||||
if ($eventCode !== null && $eventCode !== '') {
|
|
||||||
$builder->where('ruledef.EventCode', $eventCode);
|
|
||||||
}
|
|
||||||
if ($search !== null && $search !== '') {
|
|
||||||
$builder->like('ruledef.RuleName', $search);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Filter by TestSiteID - join with mapping table
|
|
||||||
if ($testSiteID !== null && $testSiteID !== '' && is_numeric($testSiteID)) {
|
|
||||||
$builder->join('testrule', 'testrule.RuleID = ruledef.RuleID', 'inner');
|
|
||||||
$builder->where('testrule.TestSiteID', (int) $testSiteID);
|
|
||||||
$builder->where('testrule.EndDate IS NULL');
|
|
||||||
}
|
|
||||||
|
|
||||||
$rows = $builder
|
|
||||||
->orderBy('ruledef.RuleID', 'ASC')
|
|
||||||
->findAll();
|
|
||||||
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'success',
|
|
||||||
'message' => 'fetch success',
|
|
||||||
'data' => $rows,
|
|
||||||
], 200);
|
|
||||||
} catch (\Throwable $e) {
|
|
||||||
log_message('error', 'RuleController::index error: ' . $e->getMessage());
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'failed',
|
|
||||||
'message' => 'Failed to fetch rules',
|
|
||||||
'data' => [],
|
|
||||||
], 500);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function show($id = null)
|
|
||||||
{
|
|
||||||
try {
|
|
||||||
if (!$id || !is_numeric($id)) {
|
|
||||||
return $this->failValidationErrors('RuleID is required');
|
|
||||||
}
|
|
||||||
|
|
||||||
$rule = $this->ruleDefModel->where('EndDate', null)->find((int) $id);
|
|
||||||
if (!$rule) {
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'failed',
|
|
||||||
'message' => 'Rule not found',
|
|
||||||
'data' => [],
|
|
||||||
], 404);
|
|
||||||
}
|
|
||||||
|
|
||||||
$linkedTests = $this->ruleDefModel->getLinkedTests((int) $id);
|
|
||||||
|
|
||||||
$rule['linkedTests'] = $linkedTests;
|
|
||||||
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'success',
|
|
||||||
'message' => 'fetch success',
|
|
||||||
'data' => $rule,
|
|
||||||
], 200);
|
|
||||||
} catch (\Throwable $e) {
|
|
||||||
log_message('error', 'RuleController::show error: ' . $e->getMessage());
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'failed',
|
|
||||||
'message' => 'Failed to fetch rule',
|
|
||||||
'data' => [],
|
|
||||||
], 500);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function create()
|
|
||||||
{
|
|
||||||
$input = $this->requirePatchPayload($this->request->getJSON(true) ?? []);
|
|
||||||
if ($input === null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$validation = service('validation');
|
|
||||||
$validation->setRules([
|
|
||||||
'RuleCode' => 'required|max_length[50]',
|
|
||||||
'RuleName' => 'required|max_length[100]',
|
|
||||||
'EventCode' => 'required|max_length[50]',
|
|
||||||
'TestSiteIDs' => 'required',
|
|
||||||
'TestSiteIDs.*' => 'is_natural_no_zero',
|
|
||||||
'ConditionExpr' => 'permit_empty|max_length[1000]',
|
|
||||||
]);
|
|
||||||
|
|
||||||
if (!$validation->run($input)) {
|
|
||||||
return $this->failValidationErrors($validation->getErrors());
|
|
||||||
}
|
|
||||||
|
|
||||||
$testSiteIDs = $input['TestSiteIDs'] ?? [];
|
|
||||||
if (!is_array($testSiteIDs) || empty($testSiteIDs)) {
|
|
||||||
return $this->failValidationErrors(['TestSiteIDs' => 'At least one TestSiteID is required']);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Validate all TestSiteIDs exist
|
|
||||||
$testDef = new TestDefSiteModel();
|
|
||||||
foreach ($testSiteIDs as $testSiteID) {
|
|
||||||
$exists = $testDef->where('EndDate', null)->find((int) $testSiteID);
|
|
||||||
if (!$exists) {
|
|
||||||
return $this->failValidationErrors(['TestSiteIDs' => "TestSiteID {$testSiteID} not found"]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$db = \Config\Database::connect();
|
|
||||||
$db->transStart();
|
|
||||||
|
|
||||||
try {
|
|
||||||
$ruleData = [
|
|
||||||
'RuleCode' => $input['RuleCode'],
|
|
||||||
'RuleName' => $input['RuleName'],
|
|
||||||
'Description' => $input['Description'] ?? null,
|
|
||||||
'EventCode' => $input['EventCode'],
|
|
||||||
'ConditionExpr' => $input['ConditionExpr'] ?? null,
|
|
||||||
'ConditionExprCompiled' => $input['ConditionExprCompiled'] ?? null,
|
|
||||||
];
|
|
||||||
|
|
||||||
$ruleID = $this->ruleDefModel->insert($ruleData, true);
|
|
||||||
if (!$ruleID) {
|
|
||||||
throw new \Exception('Failed to create rule');
|
|
||||||
}
|
|
||||||
|
|
||||||
// Link rule to test sites
|
|
||||||
foreach ($testSiteIDs as $testSiteID) {
|
|
||||||
$this->ruleDefModel->linkTest($ruleID, (int) $testSiteID);
|
|
||||||
}
|
|
||||||
|
|
||||||
$db->transComplete();
|
|
||||||
if ($db->transStatus() === false) {
|
|
||||||
throw new \Exception('Transaction failed');
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->respondCreated([
|
|
||||||
'status' => 'success',
|
|
||||||
'message' => 'Rule created successfully',
|
|
||||||
'data' => ['RuleID' => $ruleID],
|
|
||||||
], 201);
|
|
||||||
} catch (\Throwable $e) {
|
|
||||||
$db->transRollback();
|
|
||||||
log_message('error', 'RuleController::create error: ' . $e->getMessage());
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function update($id = null)
|
|
||||||
{
|
|
||||||
$input = $this->request->getJSON(true) ?? [];
|
|
||||||
|
|
||||||
if (!$id || !is_numeric($id)) {
|
|
||||||
$id = $input['RuleID'] ?? null;
|
|
||||||
}
|
|
||||||
if (!$id || !is_numeric($id)) {
|
|
||||||
return $this->failValidationErrors('RuleID is required');
|
|
||||||
}
|
|
||||||
|
|
||||||
$existing = $this->ruleDefModel->where('EndDate', null)->find((int) $id);
|
|
||||||
if (!$existing) {
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'failed',
|
|
||||||
'message' => 'Rule not found',
|
|
||||||
'data' => [],
|
|
||||||
], 404);
|
|
||||||
}
|
|
||||||
|
|
||||||
$validation = service('validation');
|
|
||||||
$validation->setRules([
|
|
||||||
'RuleCode' => 'permit_empty|max_length[50]',
|
|
||||||
'RuleName' => 'permit_empty|max_length[100]',
|
|
||||||
'EventCode' => 'permit_empty|max_length[50]',
|
|
||||||
'TestSiteIDs' => 'permit_empty',
|
|
||||||
'TestSiteIDs.*' => 'is_natural_no_zero',
|
|
||||||
'ConditionExpr' => 'permit_empty|max_length[1000]',
|
|
||||||
]);
|
|
||||||
|
|
||||||
if (!$validation->run($input)) {
|
|
||||||
return $this->failValidationErrors($validation->getErrors());
|
|
||||||
}
|
|
||||||
|
|
||||||
$db = \Config\Database::connect();
|
|
||||||
$db->transStart();
|
|
||||||
|
|
||||||
try {
|
|
||||||
$updateData = [];
|
|
||||||
foreach (['RuleCode', 'RuleName', 'Description', 'EventCode', 'ConditionExpr', 'ConditionExprCompiled'] as $field) {
|
|
||||||
if (array_key_exists($field, $input)) {
|
|
||||||
$updateData[$field] = $input[$field];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!empty($updateData)) {
|
|
||||||
$this->ruleDefModel->update((int) $id, $updateData);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Update test site mappings if provided
|
|
||||||
if (isset($input['TestSiteIDs']) && is_array($input['TestSiteIDs'])) {
|
|
||||||
$testSiteIDs = $input['TestSiteIDs'];
|
|
||||||
|
|
||||||
// Validate all TestSiteIDs exist
|
|
||||||
$testDef = new TestDefSiteModel();
|
|
||||||
foreach ($testSiteIDs as $testSiteID) {
|
|
||||||
$exists = $testDef->where('EndDate', null)->find((int) $testSiteID);
|
|
||||||
if (!$exists) {
|
|
||||||
throw new \Exception("TestSiteID {$testSiteID} not found");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Get current linked tests
|
|
||||||
$currentLinks = $this->ruleDefModel->getLinkedTests((int) $id);
|
|
||||||
|
|
||||||
// Unlink tests that are no longer in the list
|
|
||||||
foreach ($currentLinks as $currentTestSiteID) {
|
|
||||||
if (!in_array($currentTestSiteID, $testSiteIDs)) {
|
|
||||||
$this->ruleDefModel->unlinkTest((int) $id, $currentTestSiteID);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Link new tests
|
|
||||||
foreach ($testSiteIDs as $testSiteID) {
|
|
||||||
if (!in_array($testSiteID, $currentLinks)) {
|
|
||||||
$this->ruleDefModel->linkTest((int) $id, (int) $testSiteID);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$db->transComplete();
|
|
||||||
if ($db->transStatus() === false) {
|
|
||||||
throw new \Exception('Transaction failed');
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'success',
|
|
||||||
'message' => 'Rule updated successfully',
|
|
||||||
'data' => ['RuleID' => (int) $id],
|
|
||||||
], 200);
|
|
||||||
} catch (\Throwable $e) {
|
|
||||||
$db->transRollback();
|
|
||||||
log_message('error', 'RuleController::update error: ' . $e->getMessage());
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function delete($id = null)
|
|
||||||
{
|
|
||||||
try {
|
|
||||||
if (!$id || !is_numeric($id)) {
|
|
||||||
return $this->failValidationErrors('RuleID is required');
|
|
||||||
}
|
|
||||||
|
|
||||||
$existing = $this->ruleDefModel->where('EndDate', null)->find((int) $id);
|
|
||||||
if (!$existing) {
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'failed',
|
|
||||||
'message' => 'Rule not found',
|
|
||||||
'data' => [],
|
|
||||||
], 404);
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->ruleDefModel->delete((int) $id);
|
|
||||||
|
|
||||||
return $this->respondDeleted([
|
|
||||||
'status' => 'success',
|
|
||||||
'message' => 'Rule deleted successfully',
|
|
||||||
'data' => ['RuleID' => (int) $id],
|
|
||||||
]);
|
|
||||||
} catch (\Throwable $e) {
|
|
||||||
log_message('error', 'RuleController::delete error: ' . $e->getMessage());
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function validateExpr()
|
|
||||||
{
|
|
||||||
$input = $this->request->getJSON(true) ?? [];
|
|
||||||
$expr = $input['expr'] ?? '';
|
|
||||||
$context = $input['context'] ?? [];
|
|
||||||
|
|
||||||
if (!is_string($expr) || trim($expr) === '') {
|
|
||||||
return $this->failValidationErrors(['expr' => 'expr is required']);
|
|
||||||
}
|
|
||||||
if (!is_array($context)) {
|
|
||||||
return $this->failValidationErrors(['context' => 'context must be an object']);
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
$svc = new RuleExpressionService();
|
|
||||||
$result = $svc->evaluate($expr, $context);
|
|
||||||
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'success',
|
|
||||||
'data' => [
|
|
||||||
'valid' => true,
|
|
||||||
'result' => $result,
|
|
||||||
],
|
|
||||||
], 200);
|
|
||||||
} catch (\Throwable $e) {
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'failed',
|
|
||||||
'data' => [
|
|
||||||
'valid' => false,
|
|
||||||
'error' => $e->getMessage(),
|
|
||||||
],
|
|
||||||
], 200);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Compile DSL expression to engine-compatible structure.
|
|
||||||
* Frontend calls this when user clicks "Compile" button.
|
|
||||||
*/
|
|
||||||
public function compile()
|
|
||||||
{
|
|
||||||
$input = $this->request->getJSON(true) ?? [];
|
|
||||||
$expr = $input['expr'] ?? '';
|
|
||||||
|
|
||||||
if (!is_string($expr) || trim($expr) === '') {
|
|
||||||
return $this->failValidationErrors(['expr' => 'Expression is required']);
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
$svc = new RuleExpressionService();
|
|
||||||
$compiled = $svc->compile($expr);
|
|
||||||
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'success',
|
|
||||||
'data' => [
|
|
||||||
'raw' => $expr,
|
|
||||||
'compiled' => $compiled,
|
|
||||||
'conditionExprCompiled' => json_encode($compiled),
|
|
||||||
],
|
|
||||||
], 200);
|
|
||||||
} catch (\Throwable $e) {
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'failed',
|
|
||||||
'message' => 'Compilation failed',
|
|
||||||
'data' => [
|
|
||||||
'error' => $e->getMessage(),
|
|
||||||
],
|
|
||||||
], 400);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,34 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace App\Controllers;
|
|
||||||
|
|
||||||
use App\Traits\ResponseTrait;
|
|
||||||
use CodeIgniter\Controller;
|
|
||||||
|
|
||||||
use Firebase\JWT\JWT;
|
|
||||||
use Firebase\JWT\Key;
|
|
||||||
use Firebase\JWT\ExpiredException;
|
|
||||||
use Firebase\JWT\SignatureInvalidException;
|
|
||||||
use Firebase\JWT\BeforeValidException;
|
|
||||||
use CodeIgniter\Cookie\Cookie;
|
|
||||||
|
|
||||||
class SampleController extends Controller {
|
|
||||||
use ResponseTrait;
|
|
||||||
|
|
||||||
public function index() {
|
|
||||||
|
|
||||||
$token = $this->request->getCookie('token');
|
|
||||||
$key = getenv('JWT_SECRET');
|
|
||||||
|
|
||||||
// Decode Token dengan Key yg ada di .env
|
|
||||||
$decodedPayload = JWT::decode($token, new Key($key, 'HS256'));
|
|
||||||
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'success',
|
|
||||||
'code' => 200,
|
|
||||||
'message' => 'Authenticated',
|
|
||||||
'data' => $decodedPayload
|
|
||||||
], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@ -1,113 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace App\Controllers\Specimen;
|
|
||||||
|
|
||||||
use App\Traits\PatchValidationTrait;
|
|
||||||
use App\Traits\ResponseTrait;
|
|
||||||
use App\Controllers\BaseController;
|
|
||||||
use App\Libraries\ValueSet;
|
|
||||||
use App\Models\Specimen\ContainerDefModel;
|
|
||||||
|
|
||||||
class ContainerDefController extends BaseController {
|
|
||||||
use ResponseTrait;
|
|
||||||
use PatchValidationTrait;
|
|
||||||
|
|
||||||
protected $db;
|
|
||||||
protected $model;
|
|
||||||
protected $rules;
|
|
||||||
protected $patchRules;
|
|
||||||
|
|
||||||
public function __construct() {
|
|
||||||
$this->db = \Config\Database::connect();
|
|
||||||
$this->model = new ContainerDefModel();
|
|
||||||
$this->rules = [
|
|
||||||
'ConCode' => 'required|max_length[50]',
|
|
||||||
'ConName' => 'required|max_length[50]'
|
|
||||||
];
|
|
||||||
$this->patchRules = [
|
|
||||||
'ConCode' => 'permit_empty|max_length[50]',
|
|
||||||
'ConName' => 'permit_empty|max_length[50]'
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
||||||
public function index() {
|
|
||||||
try {
|
|
||||||
$filter = [
|
|
||||||
'ConCode' => $this->request->getVar('ConCode'),
|
|
||||||
'ConName' => $this->request->getVar('ConName')
|
|
||||||
];
|
|
||||||
$rows = $this->model->getContainers($filter);
|
|
||||||
|
|
||||||
$rows = ValueSet::transformLabels($rows, [
|
|
||||||
'ConCategory' => 'container_class',
|
|
||||||
'CapColor' => 'container_cap_color',
|
|
||||||
'ConSize' => 'container_size',
|
|
||||||
]);
|
|
||||||
|
|
||||||
return $this->respond([ 'status' => 'success', 'message'=> "data fetched successfully", 'data' => $rows ], 200);
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
return $this->failServerError('Exception : '.$e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function show($ConDefID) {
|
|
||||||
try {
|
|
||||||
$row = $this->model->getContainer($ConDefID);
|
|
||||||
if (empty($row)) {
|
|
||||||
return $this->respond([ 'status' => 'success', 'message'=> "data not found", 'data' => null ], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
$row = ValueSet::transformLabels([$row], [
|
|
||||||
'ConCategory' => 'container_class',
|
|
||||||
'CapColor' => 'container_cap_color',
|
|
||||||
'ConSize' => 'container_size',
|
|
||||||
])[0];
|
|
||||||
|
|
||||||
return $this->respond([ 'status' => 'success', 'message'=> "data fetched successfully", 'data' => $row ], 200);
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
return $this->failServerError('Exception : '.$e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function create() {
|
|
||||||
$input = $this->request->getJSON(true);
|
|
||||||
if (!$this->validateData($input, $this->rules)) { return $this->failValidationErrors($this->validator->getErrors()); }
|
|
||||||
try {
|
|
||||||
$ConDefID = $this->model->insert($input);
|
|
||||||
return $this->respondCreated([ 'status' => 'success', 'message' => "data $ConDefID created successfully", 'data' => $ConDefID ]);
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function update($ConDefID = null) {
|
|
||||||
$input = $this->requirePatchPayload($this->request->getJSON(true));
|
|
||||||
if ($input === null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$id = $this->requirePatchId($ConDefID, 'ConDefID');
|
|
||||||
if ($id === null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$existing = $this->model->find($id);
|
|
||||||
if (!$existing) {
|
|
||||||
return $this->respond([ 'status' => 'failed', 'message' => 'Container definition not found', 'data' => [] ], 404);
|
|
||||||
}
|
|
||||||
|
|
||||||
$validationInput = array_intersect_key($input, $this->patchRules);
|
|
||||||
if (!empty($validationInput) && !$this->validateData($validationInput, $this->patchRules)) {
|
|
||||||
return $this->failValidationErrors($this->validator->getErrors());
|
|
||||||
}
|
|
||||||
|
|
||||||
$input['ConDefID'] = $id;
|
|
||||||
try {
|
|
||||||
$this->model->update($id, $input);
|
|
||||||
return $this->respondCreated([ 'status' => 'success', 'message' => 'data updated successfully', 'data' => $id ], 201);
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@ -1,99 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace App\Controllers\Specimen;
|
|
||||||
|
|
||||||
use App\Traits\PatchValidationTrait;
|
|
||||||
use App\Traits\ResponseTrait;
|
|
||||||
use App\Controllers\BaseController;
|
|
||||||
use App\Libraries\ValueSet;
|
|
||||||
use App\Models\Specimen\SpecimenCollectionModel;
|
|
||||||
|
|
||||||
class SpecimenCollectionController extends BaseController {
|
|
||||||
use ResponseTrait;
|
|
||||||
use PatchValidationTrait;
|
|
||||||
|
|
||||||
protected $db;
|
|
||||||
protected $model;
|
|
||||||
protected $rules;
|
|
||||||
|
|
||||||
public function __construct() {
|
|
||||||
$this->db = \Config\Database::connect();
|
|
||||||
$this->model = new SpecimenCollectionModel();
|
|
||||||
$this->rules = [];
|
|
||||||
}
|
|
||||||
|
|
||||||
public function index() {
|
|
||||||
try {
|
|
||||||
$rows = $this->model->findAll();
|
|
||||||
|
|
||||||
$rows = ValueSet::transformLabels($rows, [
|
|
||||||
'CollectionMethod' => 'collection_method',
|
|
||||||
'Additive' => 'additive',
|
|
||||||
'SpecimenRole' => 'specimen_role',
|
|
||||||
]);
|
|
||||||
|
|
||||||
return $this->respond([ 'status' => 'success', 'message'=> "data fetched successfully", 'data' => $rows ], 200);
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
return $this->failServerError('Exception : '.$e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function show($id) {
|
|
||||||
try {
|
|
||||||
$row = $this->model->where('SpcColID', $id)->first();
|
|
||||||
if (empty($row)) {
|
|
||||||
return $this->respond([ 'status' => 'success', 'message'=> "data not found", 'data' => null ], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
$row = ValueSet::transformLabels([$row], [
|
|
||||||
'CollectionMethod' => 'collection_method',
|
|
||||||
'Additive' => 'additive',
|
|
||||||
'SpecimenRole' => 'specimen_role',
|
|
||||||
])[0];
|
|
||||||
|
|
||||||
return $this->respond([ 'status' => 'success', 'message'=> "data fetched successfully", 'data' => $row ], 200);
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
return $this->failServerError('Exception : '.$e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function create() {
|
|
||||||
$input = $this->request->getJSON(true);
|
|
||||||
if (!$this->validateData($input, $this->rules)) { return $this->failValidationErrors($this->validator->getErrors()); }
|
|
||||||
try {
|
|
||||||
$id = $this->model->insert($input);
|
|
||||||
return $this->respondCreated([ 'status' => 'success', 'message' => "data $id created successfully" ]);
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function update($SpcColID = null) {
|
|
||||||
$input = $this->requirePatchPayload($this->request->getJSON(true));
|
|
||||||
if ($input === null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$id = $this->requirePatchId($SpcColID, 'SpcColID');
|
|
||||||
if ($id === null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$existing = $this->model->where('SpcColID', $id)->first();
|
|
||||||
if (!$existing) {
|
|
||||||
return $this->respond([ 'status' => 'failed', 'message' => 'Specimen collection not found', 'data' => [] ], 404);
|
|
||||||
}
|
|
||||||
|
|
||||||
$input['SpcColID'] = $id;
|
|
||||||
if ($this->rules !== [] && !$this->validateData($input, $this->rules)) {
|
|
||||||
return $this->failValidationErrors($this->validator->getErrors());
|
|
||||||
}
|
|
||||||
try {
|
|
||||||
$this->model->update($id, $input);
|
|
||||||
return $this->respondCreated([ 'status' => 'success', 'message' => 'data updated successfully', 'data' => $id ], 201);
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@ -1,143 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace App\Controllers\Specimen;
|
|
||||||
|
|
||||||
use App\Traits\PatchValidationTrait;
|
|
||||||
use App\Traits\ResponseTrait;
|
|
||||||
use App\Controllers\BaseController;
|
|
||||||
use App\Libraries\ValueSet;
|
|
||||||
use App\Models\Specimen\SpecimenModel;
|
|
||||||
|
|
||||||
class SpecimenController extends BaseController {
|
|
||||||
use ResponseTrait;
|
|
||||||
use PatchValidationTrait;
|
|
||||||
|
|
||||||
protected $db;
|
|
||||||
protected $model;
|
|
||||||
protected $rules;
|
|
||||||
|
|
||||||
public function __construct() {
|
|
||||||
$this->db = \Config\Database::connect();
|
|
||||||
$this->model = new SpecimenModel();
|
|
||||||
$this->rules = [];
|
|
||||||
}
|
|
||||||
|
|
||||||
public function index() {
|
|
||||||
try {
|
|
||||||
$rows = $this->model->findAll();
|
|
||||||
|
|
||||||
$rows = ValueSet::transformLabels($rows, [
|
|
||||||
'SpecimenType' => 'specimen_type',
|
|
||||||
'SpecimenStatus' => 'specimen_status',
|
|
||||||
'BodySite' => 'body_site',
|
|
||||||
]);
|
|
||||||
|
|
||||||
return $this->respond([ 'status' => 'success', 'message'=> "data fetched successfully", 'data' => $rows ], 200);
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
return $this->failServerError('Exception : '.$e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function show($id) {
|
|
||||||
try {
|
|
||||||
$row = $this->model->where('SID',$id)->first();
|
|
||||||
if (empty($row)) {
|
|
||||||
return $this->respond([ 'status' => 'success', 'message'=> "data not found", 'data' => null ], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
$row = ValueSet::transformLabels([$row], [
|
|
||||||
'SpecimenType' => 'specimen_type',
|
|
||||||
'SpecimenStatus' => 'specimen_status',
|
|
||||||
'BodySite' => 'body_site',
|
|
||||||
])[0];
|
|
||||||
|
|
||||||
return $this->respond([ 'status' => 'success', 'message'=> "data fetched successfully", 'data' => $row ], 200);
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
return $this->failServerError('Exception : '.$e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function create() {
|
|
||||||
$input = $this->request->getJSON(true);
|
|
||||||
if (!$this->validateData($input, $this->rules)) { return $this->failValidationErrors($this->validator->getErrors()); }
|
|
||||||
try {
|
|
||||||
$id = $this->model->insert($input);
|
|
||||||
return $this->respondCreated([ 'status' => 'success', 'message' => "data $id created successfully" ]);
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function update($SID = null) {
|
|
||||||
$input = $this->requirePatchPayload($this->request->getJSON(true));
|
|
||||||
if ($input === null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$id = $this->requirePatchId($SID, 'SID');
|
|
||||||
if ($id === null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$existing = $this->model->where('SID', $id)->first();
|
|
||||||
if (!$existing) {
|
|
||||||
return $this->respond([ 'status' => 'failed', 'message' => 'Specimen not found', 'data' => [] ], 404);
|
|
||||||
}
|
|
||||||
|
|
||||||
$input['SID'] = $id;
|
|
||||||
if (!$this->validateData($input, $this->rules)) { return $this->failValidationErrors($this->validator->getErrors()); }
|
|
||||||
try {
|
|
||||||
$this->model->update($id, $input);
|
|
||||||
return $this->respond([ 'status' => 'success', 'message' => 'data updated successfully', 'data' => $id ], 200);
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Delete a specimen (soft delete)
|
|
||||||
* DELETE /api/specimen/(:num)
|
|
||||||
*/
|
|
||||||
public function delete($id) {
|
|
||||||
try {
|
|
||||||
// Check if specimen exists
|
|
||||||
$specimen = $this->model->where('SID', $id)->first();
|
|
||||||
|
|
||||||
if (empty($specimen)) {
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'failed',
|
|
||||||
'message' => 'Specimen not found',
|
|
||||||
'data' => null
|
|
||||||
], 404);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Perform soft delete (set DelDate)
|
|
||||||
$deleted = $this->model->update($id, [
|
|
||||||
'DelDate' => date('Y-m-d H:i:s')
|
|
||||||
]);
|
|
||||||
|
|
||||||
if (!$deleted) {
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'failed',
|
|
||||||
'message' => 'Failed to delete specimen',
|
|
||||||
'data' => null
|
|
||||||
], 500);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'success',
|
|
||||||
'message' => 'Specimen deleted successfully',
|
|
||||||
'data' => ['SID' => $id]
|
|
||||||
], 200);
|
|
||||||
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
log_message('error', 'SpecimenController::delete error: ' . $e->getMessage());
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'failed',
|
|
||||||
'message' => 'Failed to delete specimen',
|
|
||||||
'data' => null
|
|
||||||
], 500);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@ -1,84 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace App\Controllers\Specimen;
|
|
||||||
|
|
||||||
use App\Traits\PatchValidationTrait;
|
|
||||||
use App\Traits\ResponseTrait;
|
|
||||||
use App\Controllers\BaseController;
|
|
||||||
use App\Models\Specimen\SpecimenPrepModel;
|
|
||||||
|
|
||||||
class SpecimenPrepController extends BaseController {
|
|
||||||
use ResponseTrait;
|
|
||||||
use PatchValidationTrait;
|
|
||||||
|
|
||||||
protected $db;
|
|
||||||
protected $model;
|
|
||||||
protected $rules;
|
|
||||||
|
|
||||||
public function __construct() {
|
|
||||||
$this->db = \Config\Database::connect();
|
|
||||||
$this->model = new SpecimenPrepModel();
|
|
||||||
$this->rules = [];
|
|
||||||
}
|
|
||||||
|
|
||||||
public function index() {
|
|
||||||
try {
|
|
||||||
$rows = $this->model->findAll();
|
|
||||||
return $this->respond([ 'status' => 'success', 'message'=> "data fetched successfully", 'data' => $rows ], 200);
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
return $this->failServerError('Exception : '.$e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function show($id) {
|
|
||||||
try {
|
|
||||||
$row = $this->model->where('SpcPrpID', $id)->first();
|
|
||||||
if (empty($row)) {
|
|
||||||
return $this->respond([ 'status' => 'success', 'message'=> "data not found", 'data' => null ], 200);
|
|
||||||
}
|
|
||||||
return $this->respond([ 'status' => 'success', 'message'=> "data fetched successfully", 'data' => $row ], 200);
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
return $this->failServerError('Exception : '.$e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function create() {
|
|
||||||
$input = $this->request->getJSON(true);
|
|
||||||
if (!$this->validateData($input, $this->rules)) { return $this->failValidationErrors($this->validator->getErrors()); }
|
|
||||||
try {
|
|
||||||
$id = $this->model->insert($input);
|
|
||||||
return $this->respondCreated([ 'status' => 'success', 'message' => "data $id created successfully" ]);
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function update($SpcPrpID = null) {
|
|
||||||
$input = $this->requirePatchPayload($this->request->getJSON(true));
|
|
||||||
if ($input === null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$id = $this->requirePatchId($SpcPrpID, 'SpcPrpID');
|
|
||||||
if ($id === null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$existing = $this->model->where('SpcPrpID', $id)->first();
|
|
||||||
if (!$existing) {
|
|
||||||
return $this->respond([ 'status' => 'failed', 'message' => 'Specimen prep not found', 'data' => [] ], 404);
|
|
||||||
}
|
|
||||||
|
|
||||||
$input['SpcPrpID'] = $id;
|
|
||||||
if ($this->rules !== [] && !$this->validateData($input, $this->rules)) {
|
|
||||||
return $this->failValidationErrors($this->validator->getErrors());
|
|
||||||
}
|
|
||||||
try {
|
|
||||||
$this->model->update($id, $input);
|
|
||||||
return $this->respondCreated([ 'status' => 'success', 'message' => 'data updated successfully', 'data' => $id ], 201);
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@ -1,97 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace App\Controllers\Specimen;
|
|
||||||
|
|
||||||
use App\Traits\PatchValidationTrait;
|
|
||||||
use App\Traits\ResponseTrait;
|
|
||||||
use App\Controllers\BaseController;
|
|
||||||
use App\Libraries\ValueSet;
|
|
||||||
use App\Models\Specimen\SpecimenStatusModel;
|
|
||||||
|
|
||||||
class SpecimenStatusController extends BaseController {
|
|
||||||
use ResponseTrait;
|
|
||||||
use PatchValidationTrait;
|
|
||||||
|
|
||||||
protected $db;
|
|
||||||
protected $model;
|
|
||||||
protected $rules;
|
|
||||||
|
|
||||||
public function __construct() {
|
|
||||||
$this->db = \Config\Database::connect();
|
|
||||||
$this->model = new SpecimenStatusModel();
|
|
||||||
$this->rules = [];
|
|
||||||
}
|
|
||||||
|
|
||||||
public function index() {
|
|
||||||
try {
|
|
||||||
$rows = $this->model->findAll();
|
|
||||||
|
|
||||||
$rows = ValueSet::transformLabels($rows, [
|
|
||||||
'Status' => 'specimen_status',
|
|
||||||
'Activity' => 'specimen_activity',
|
|
||||||
]);
|
|
||||||
|
|
||||||
return $this->respond([ 'status' => 'success', 'message'=> "data fetched successfully", 'data' => $rows ], 200);
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
return $this->failServerError('Exception : '.$e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function show($id) {
|
|
||||||
try {
|
|
||||||
$row = $this->model->where('SpcStaID', $id)->first();
|
|
||||||
if (empty($row)) {
|
|
||||||
return $this->respond([ 'status' => 'success', 'message'=> "data not found", 'data' => null ], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
$row = ValueSet::transformLabels([$row], [
|
|
||||||
'Status' => 'specimen_status',
|
|
||||||
'Activity' => 'specimen_activity',
|
|
||||||
])[0];
|
|
||||||
|
|
||||||
return $this->respond([ 'status' => 'success', 'message'=> "data fetched successfully", 'data' => $row ], 200);
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
return $this->failServerError('Exception : '.$e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function create() {
|
|
||||||
$input = $this->request->getJSON(true);
|
|
||||||
if (!$this->validateData($input, $this->rules)) { return $this->failValidationErrors($this->validator->getErrors()); }
|
|
||||||
try {
|
|
||||||
$id = $this->model->insert($input);
|
|
||||||
return $this->respondCreated([ 'status' => 'success', 'message' => "data $id created successfully" ]);
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function update($SpcStaID = null) {
|
|
||||||
$input = $this->requirePatchPayload($this->request->getJSON(true));
|
|
||||||
if ($input === null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$id = $this->requirePatchId($SpcStaID, 'SpcStaID');
|
|
||||||
if ($id === null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$existing = $this->model->where('SpcStaID', $id)->first();
|
|
||||||
if (!$existing) {
|
|
||||||
return $this->respond([ 'status' => 'failed', 'message' => 'Specimen status not found', 'data' => [] ], 404);
|
|
||||||
}
|
|
||||||
|
|
||||||
$input['SpcStaID'] = $id;
|
|
||||||
if ($this->rules !== [] && !$this->validateData($input, $this->rules)) {
|
|
||||||
return $this->failValidationErrors($this->validator->getErrors());
|
|
||||||
}
|
|
||||||
try {
|
|
||||||
$this->model->update($id, $input);
|
|
||||||
return $this->respondCreated([ 'status' => 'success', 'message' => 'data updated successfully', 'data' => $id ], 201);
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@ -1,85 +0,0 @@
|
|||||||
<?php
|
|
||||||
namespace App\Controllers\Test;
|
|
||||||
|
|
||||||
use App\Traits\ResponseTrait;
|
|
||||||
use CodeIgniter\Controller;
|
|
||||||
use App\Libraries\ValueSet;
|
|
||||||
use App\Models\Patient\PatientModel;
|
|
||||||
use App\Models\OrderTestModel;
|
|
||||||
|
|
||||||
class DemoOrderController extends Controller {
|
|
||||||
use ResponseTrait;
|
|
||||||
|
|
||||||
protected $db;
|
|
||||||
protected $patientModel;
|
|
||||||
protected $orderModel;
|
|
||||||
|
|
||||||
public function __construct() {
|
|
||||||
$this->db = \Config\Database::connect();
|
|
||||||
$this->patientModel = new PatientModel();
|
|
||||||
$this->orderModel = new OrderTestModel();
|
|
||||||
}
|
|
||||||
|
|
||||||
public function createDemoOrder() {
|
|
||||||
$input = $this->request->getJSON(true);
|
|
||||||
|
|
||||||
$patientData = [
|
|
||||||
'PatientID' => $input['PatientID'] ?? 'DEMO' . time(),
|
|
||||||
'Gender' => $input['Gender'] ?? '1',
|
|
||||||
'NameFirst' => $input['NameFirst'] ?? 'Demo',
|
|
||||||
'NameLast' => $input['NameLast'] ?? 'Patient',
|
|
||||||
'Birthdate' => $input['Birthdate'] ?? '1990-01-01'
|
|
||||||
];
|
|
||||||
|
|
||||||
$patient = $this->patientModel->where('PatientID', $patientData['PatientID'])->findAll();
|
|
||||||
if (empty($patient)) {
|
|
||||||
$internalPID = $this->patientModel->createPatient($patientData);
|
|
||||||
} else {
|
|
||||||
$internalPID = $patient[0]['InternalPID'];
|
|
||||||
}
|
|
||||||
|
|
||||||
$orderData = [
|
|
||||||
'InternalPID' => $internalPID,
|
|
||||||
'PatVisitID' => $input['PatVisitID'] ?? null,
|
|
||||||
'Priority' => $input['Priority'] ?? 'R',
|
|
||||||
'OrderingProvider' => $input['OrderingProvider'] ?? 'Dr. Demo',
|
|
||||||
'DepartmentID' => $input['DepartmentID'] ?? 1,
|
|
||||||
'Tests' => $input['Tests'] ?? []
|
|
||||||
];
|
|
||||||
|
|
||||||
$orderID = $this->orderModel->createOrder($orderData);
|
|
||||||
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'success',
|
|
||||||
'message' => 'Demo order created successfully',
|
|
||||||
'data' => [
|
|
||||||
'PatientID' => $patientData['PatientID'],
|
|
||||||
'InternalPID' => $internalPID,
|
|
||||||
'OrderID' => $orderID,
|
|
||||||
'OrderStatus' => 'ORD'
|
|
||||||
]
|
|
||||||
], 201);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function listDemoOrders() {
|
|
||||||
$orders = $this->db->table('ordertest ot')
|
|
||||||
->select('ot.OrderID, ot.InternalPID, p.PatientID, ot.OrderDateTime, ot.Priority, ot.OrderStatus')
|
|
||||||
->join('patient p', 'p.InternalPID = ot.InternalPID')
|
|
||||||
->where('ot.DelDate', null)
|
|
||||||
->orderBy('ot.OrderDateTime', 'DESC')
|
|
||||||
->limit(50)
|
|
||||||
->get()
|
|
||||||
->getResultArray();
|
|
||||||
|
|
||||||
$orders = ValueSet::transformLabels($orders, [
|
|
||||||
'Priority' => 'order_priority',
|
|
||||||
'OrderStatus' => 'order_status',
|
|
||||||
]);
|
|
||||||
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'success',
|
|
||||||
'message' => 'Data fetched successfully',
|
|
||||||
'data' => $orders
|
|
||||||
], 200);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,570 +0,0 @@
|
|||||||
<?php
|
|
||||||
namespace App\Controllers\Test;
|
|
||||||
|
|
||||||
use App\Traits\PatchValidationTrait;
|
|
||||||
use App\Traits\ResponseTrait;
|
|
||||||
use App\Controllers\BaseController;
|
|
||||||
use App\Libraries\ValueSet;
|
|
||||||
use App\Models\Test\TestMapModel;
|
|
||||||
use App\Models\Test\TestMapDetailModel;
|
|
||||||
|
|
||||||
class TestMapController extends BaseController {
|
|
||||||
use ResponseTrait;
|
|
||||||
use PatchValidationTrait;
|
|
||||||
|
|
||||||
protected $db;
|
|
||||||
protected $rules;
|
|
||||||
protected $patchRules;
|
|
||||||
protected $model;
|
|
||||||
protected $modelDetail;
|
|
||||||
protected array $headerFields = ['HostType', 'HostID', 'ClientType', 'ClientID'];
|
|
||||||
protected array $detailFields = ['HostTestCode', 'HostTestName', 'ConDefID', 'ClientTestCode', 'ClientTestName'];
|
|
||||||
protected array $detailRules;
|
|
||||||
protected array $detailPatchRules;
|
|
||||||
|
|
||||||
public function __construct() {
|
|
||||||
$this->db = \Config\Database::connect();
|
|
||||||
$this->model = new TestMapModel;
|
|
||||||
$this->modelDetail = new TestMapDetailModel;
|
|
||||||
$this->rules = [
|
|
||||||
'HostID' => 'required|integer',
|
|
||||||
'ClientID' => 'required|integer',
|
|
||||||
];
|
|
||||||
$this->patchRules = [
|
|
||||||
'HostID' => 'permit_empty|integer',
|
|
||||||
'ClientID' => 'permit_empty|integer',
|
|
||||||
'HostType' => 'permit_empty|string',
|
|
||||||
'ClientType' => 'permit_empty|string',
|
|
||||||
];
|
|
||||||
$this->detailRules = [
|
|
||||||
'HostTestCode' => 'permit_empty|max_length[10]',
|
|
||||||
'HostTestName' => 'permit_empty|max_length[100]',
|
|
||||||
'ConDefID' => 'permit_empty|integer',
|
|
||||||
'ClientTestCode' => 'permit_empty|max_length[10]',
|
|
||||||
'ClientTestName' => 'permit_empty|max_length[100]',
|
|
||||||
];
|
|
||||||
$this->detailPatchRules = $this->detailRules;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function index() {
|
|
||||||
$rows = $this->model->getUniqueGroupings();
|
|
||||||
$rows = $this->applyIndexFilters($rows);
|
|
||||||
if (empty($rows)) { return $this->respond([ 'status' => 'success', 'message' => "no Data.", 'data' => [] ], 200); }
|
|
||||||
|
|
||||||
$rows = ValueSet::transformLabels($rows, [
|
|
||||||
'HostType' => 'entity_type',
|
|
||||||
'ClientType' => 'entity_type',
|
|
||||||
]);
|
|
||||||
|
|
||||||
$rows = array_map([$this, 'sanitizeTopLevelPayload'], $rows);
|
|
||||||
|
|
||||||
return $this->respond([ 'status' => 'success', 'message'=> "Data fetched successfully", 'data' => $rows ], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function show($id = null) {
|
|
||||||
$row = $this->model->getByIdWithNames($id);
|
|
||||||
if (empty($row)) { return $this->respond([ 'status' => 'success', 'message' => "no Data.", 'data' => null ], 200); }
|
|
||||||
|
|
||||||
$row = ValueSet::transformLabels([$row], [
|
|
||||||
'HostType' => 'entity_type',
|
|
||||||
'ClientType' => 'entity_type',
|
|
||||||
])[0];
|
|
||||||
|
|
||||||
$row = $this->sanitizeTopLevelPayload($row);
|
|
||||||
|
|
||||||
// Include testmapdetail records
|
|
||||||
$row['details'] = $this->modelDetail->getDetailsByTestMap($id);
|
|
||||||
|
|
||||||
return $this->respond([ 'status' => 'success', 'message'=> "Data fetched successfully", 'data' => $row ], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function create() {
|
|
||||||
$input = $this->request->getJSON(true);
|
|
||||||
$detailsPayload = null;
|
|
||||||
if (array_key_exists('details', $input)) {
|
|
||||||
$detailsPayload = $this->resolveDetailOperations($input['details']);
|
|
||||||
if ($detailsPayload === null) { return; }
|
|
||||||
}
|
|
||||||
|
|
||||||
$headerInput = array_intersect_key($input, array_flip($this->headerFields));
|
|
||||||
if (!$this->validateData($headerInput, $this->rules)) {
|
|
||||||
log_message('error', 'TestMap create validation failed: ' . json_encode($this->validator->getErrors()));
|
|
||||||
return $this->failValidationErrors($this->validator->getErrors());
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->db->transStart();
|
|
||||||
try {
|
|
||||||
$id = $this->model->insert($headerInput);
|
|
||||||
|
|
||||||
if ($detailsPayload !== null && !empty($detailsPayload['created'])) {
|
|
||||||
if (!$this->insertDetailRows($id, $detailsPayload['created'])) {
|
|
||||||
$this->db->transRollback();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->db->transComplete();
|
|
||||||
if ($this->db->transStatus() === false) {
|
|
||||||
return $this->failServerError('Something went wrong while saving the test map.');
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->respondCreated([ 'status' => 'success', 'message' => "data created successfully", 'data' => $id ]);
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
$this->db->transRollback();
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function update($TestMapID = null) {
|
|
||||||
$input = $this->requirePatchPayload($this->request->getJSON(true));
|
|
||||||
if ($input === null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$detailsPayload = null;
|
|
||||||
if (array_key_exists('details', $input)) {
|
|
||||||
$detailsPayload = $this->resolveDetailOperations($input['details']);
|
|
||||||
if ($detailsPayload === null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$id = $this->requirePatchId($TestMapID, 'TestMapID');
|
|
||||||
if ($id === null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$existing = $this->model->where('TestMapID', $id)->where('EndDate', null)->first();
|
|
||||||
if (!$existing) {
|
|
||||||
return $this->respond([ 'status' => 'failed', 'message' => 'Test map not found', 'data' => [] ], 404);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isset($input['TestMapID']) && (string) $input['TestMapID'] !== (string) $id) {
|
|
||||||
return $this->failValidationErrors('TestMapID in URL does not match body.');
|
|
||||||
}
|
|
||||||
|
|
||||||
$validationInput = array_intersect_key($headerInput = array_intersect_key($input, array_flip($this->headerFields)), $this->patchRules);
|
|
||||||
if (!empty($validationInput) && !$this->validateData($validationInput, $this->patchRules)) {
|
|
||||||
return $this->failValidationErrors($this->validator->getErrors());
|
|
||||||
}
|
|
||||||
|
|
||||||
$input['TestMapID'] = $id;
|
|
||||||
$this->db->transStart();
|
|
||||||
try {
|
|
||||||
if (!empty($headerInput)) {
|
|
||||||
$this->model->update($id, $headerInput);
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($detailsPayload !== null && !$this->applyDetailOperations($id, $detailsPayload)) {
|
|
||||||
$this->db->transRollback();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->db->transComplete();
|
|
||||||
if ($this->db->transStatus() === false) {
|
|
||||||
return $this->failServerError('Something went wrong while updating the test map.');
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->respond([ 'status' => 'success', 'message' => 'data updated successfully', 'data' => $id ], 200);
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
$this->db->transRollback();
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function delete() {
|
|
||||||
$input = $this->request->getJSON(true);
|
|
||||||
$id = $input["TestMapID"] ?? null;
|
|
||||||
if (!$id) { return $this->failValidationErrors('TestMapID is required.'); }
|
|
||||||
|
|
||||||
try {
|
|
||||||
$row = $this->model->where('TestMapID', $id)->where('EndDate', null)->first();
|
|
||||||
if (empty($row)) { return $this->respond([ 'status' => 'failed', 'message' => "Data not found or already deleted.", 'data' => null ], 404); }
|
|
||||||
|
|
||||||
$this->db->transStart();
|
|
||||||
$timestamp = date('Y-m-d H:i:s');
|
|
||||||
$this->model->update($id, ['EndDate' => $timestamp]);
|
|
||||||
|
|
||||||
$this->modelDetail->where('TestMapID', $id)
|
|
||||||
->where('EndDate', null)
|
|
||||||
->set('EndDate', $timestamp)
|
|
||||||
->update();
|
|
||||||
|
|
||||||
$this->db->transComplete();
|
|
||||||
|
|
||||||
if ($this->db->transStatus() === false) {
|
|
||||||
return $this->failServerError('Something went wrong while deleting the test map.');
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->respond([ 'status' => 'success', 'message' => "data deleted successfully", 'data' => $id ], 200);
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function showByTestCode($testCode = null) {
|
|
||||||
if (!$testCode) { return $this->failValidationErrors('TestCode is required.'); }
|
|
||||||
|
|
||||||
$rows = $this->model->getMappingsByTestCode($testCode);
|
|
||||||
if (empty($rows)) { return $this->respond([ 'status' => 'success', 'message' => "no Data.", 'data' => [] ], 200); }
|
|
||||||
|
|
||||||
$rows = ValueSet::transformLabels($rows, [
|
|
||||||
'HostType' => 'entity_type',
|
|
||||||
'ClientType' => 'entity_type',
|
|
||||||
]);
|
|
||||||
|
|
||||||
$rows = array_map([$this, 'sanitizeTopLevelPayload'], $rows);
|
|
||||||
|
|
||||||
return $this->respond([ 'status' => 'success', 'message'=> "Data fetched successfully", 'data' => $rows ], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
private function sanitizeTopLevelPayload(array $row): array
|
|
||||||
{
|
|
||||||
unset($row['TestCode'], $row['testcode']);
|
|
||||||
return $row;
|
|
||||||
}
|
|
||||||
|
|
||||||
private function applyIndexFilters(array $rows): array
|
|
||||||
{
|
|
||||||
$hostFilter = trim((string) $this->request->getGet('host'));
|
|
||||||
$clientFilter = trim((string) $this->request->getGet('client'));
|
|
||||||
|
|
||||||
if ($hostFilter === '' && $clientFilter === '') {
|
|
||||||
return $rows;
|
|
||||||
}
|
|
||||||
|
|
||||||
return array_values(array_filter($rows, function (array $row) use ($hostFilter, $clientFilter): bool {
|
|
||||||
if ($hostFilter !== '' && !$this->matchesSearch($row, 'Host', $hostFilter)) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($clientFilter !== '' && !$this->matchesSearch($row, 'Client', $clientFilter)) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}));
|
|
||||||
}
|
|
||||||
|
|
||||||
private function matchesSearch(array $row, string $prefix, string $filter): bool
|
|
||||||
{
|
|
||||||
$haystacks = [
|
|
||||||
(string) ($row[$prefix . 'Name'] ?? ''),
|
|
||||||
(string) ($row[$prefix . 'ID'] ?? ''),
|
|
||||||
(string) ($row[$prefix . 'Type'] ?? ''),
|
|
||||||
];
|
|
||||||
|
|
||||||
$needle = strtolower($filter);
|
|
||||||
|
|
||||||
foreach ($haystacks as $value) {
|
|
||||||
if ($value !== '' && str_contains(strtolower($value), $needle)) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
private function resolveDetailOperations(mixed $detailsPayload): ?array
|
|
||||||
{
|
|
||||||
if ($detailsPayload === null) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!is_array($detailsPayload)) {
|
|
||||||
$this->failValidationErrors('details must be an array or object.');
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($this->isDetailOpsPayload($detailsPayload)) {
|
|
||||||
$createdItems = $this->normalizeDetailList($detailsPayload['created'] ?? [], 'details.created');
|
|
||||||
if ($createdItems === null) { return null; }
|
|
||||||
$editedItems = $this->normalizeDetailList($detailsPayload['edited'] ?? [], 'details.edited');
|
|
||||||
if ($editedItems === null) { return null; }
|
|
||||||
$deletedIds = $this->normalizeDetailIds($detailsPayload['deleted'] ?? []);
|
|
||||||
if ($deletedIds === null) { return null; }
|
|
||||||
|
|
||||||
return ['created' => $createdItems, 'edited' => $editedItems, 'deleted' => $deletedIds];
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($this->isListPayload($detailsPayload)) {
|
|
||||||
$items = $this->normalizeDetailList($detailsPayload, 'details');
|
|
||||||
if ($items === null) { return null; }
|
|
||||||
return ['created' => $items, 'edited' => [], 'deleted' => []];
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($this->isAssocArray($detailsPayload)) {
|
|
||||||
$items = $this->normalizeDetailList([$detailsPayload], 'details');
|
|
||||||
if ($items === null) { return null; }
|
|
||||||
return ['created' => $items, 'edited' => [], 'deleted' => []];
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->failValidationErrors('details must be an array of objects or contain created/edited/deleted arrays.');
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
private function applyDetailOperations(int $testMapID, array $operations): bool
|
|
||||||
{
|
|
||||||
if (!empty($operations['edited']) && !$this->updateDetails($testMapID, $operations['edited'])) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!empty($operations['deleted']) && !$this->softDeleteDetails($testMapID, $operations['deleted'])) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!empty($operations['created']) && !$this->insertDetailRows($testMapID, $operations['created'])) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
private function insertDetailRows(int $testMapID, array $items): bool
|
|
||||||
{
|
|
||||||
if (empty($items)) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
$prepared = [];
|
|
||||||
foreach ($items as $index => $item) {
|
|
||||||
if (!$this->validateData($item, $this->detailRules)) {
|
|
||||||
$this->failValidationErrors(['details.created' => $this->validator->getErrors()]);
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
$prepared[] = array_merge(['TestMapID' => $testMapID], $item);
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->modelDetail->insertBatch($prepared);
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
private function updateDetails(int $testMapID, array $items): bool
|
|
||||||
{
|
|
||||||
foreach ($items as $index => $detail) {
|
|
||||||
$detailID = $detail['TestMapDetailID'] ?? null;
|
|
||||||
if (!$detailID || !ctype_digit((string) $detailID)) {
|
|
||||||
$this->failValidationErrors("details.edited[{$index}].TestMapDetailID is required and must be an integer.");
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (array_key_exists('TestMapID', $detail) && (int) $detail['TestMapID'] !== $testMapID) {
|
|
||||||
$this->failValidationErrors("details.edited[{$index}] must belong to TestMap {$testMapID}.");
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
$existing = $this->modelDetail->where('TestMapDetailID', $detailID)
|
|
||||||
->where('TestMapID', $testMapID)
|
|
||||||
->where('EndDate', null)
|
|
||||||
->first();
|
|
||||||
|
|
||||||
if (empty($existing)) {
|
|
||||||
$this->failValidationErrors("Detail record {$detailID} not found for this test map.");
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
$updateData = array_intersect_key($detail, array_flip($this->detailFields));
|
|
||||||
if ($updateData === []) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!$this->validateData($updateData, $this->detailPatchRules)) {
|
|
||||||
$this->failValidationErrors($this->validator->getErrors());
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->modelDetail->update($detailID, $updateData);
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
private function softDeleteDetails(int $testMapID, array $ids): bool
|
|
||||||
{
|
|
||||||
if (empty($ids)) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
$existing = $this->modelDetail->select('TestMapDetailID')
|
|
||||||
->whereIn('TestMapDetailID', $ids)
|
|
||||||
->where('TestMapID', $testMapID)
|
|
||||||
->where('EndDate', null)
|
|
||||||
->findAll();
|
|
||||||
|
|
||||||
$foundIds = array_column($existing, 'TestMapDetailID');
|
|
||||||
$missing = array_diff($ids, $foundIds);
|
|
||||||
if (!empty($missing)) {
|
|
||||||
$this->failValidationErrors('Some detail IDs do not exist or belong to another test map: ' . implode(', ', $missing));
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->modelDetail->whereIn('TestMapDetailID', $ids)
|
|
||||||
->where('TestMapID', $testMapID)
|
|
||||||
->where('EndDate', null)
|
|
||||||
->set('EndDate', date('Y-m-d H:i:s'))
|
|
||||||
->update();
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
private function isDetailOpsPayload(array $payload): bool
|
|
||||||
{
|
|
||||||
return (bool) array_intersect(array_keys($payload), ['created', 'edited', 'deleted']);
|
|
||||||
}
|
|
||||||
|
|
||||||
private function isListPayload(array $payload): bool
|
|
||||||
{
|
|
||||||
if ($payload === []) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
return array_keys($payload) === range(0, count($payload) - 1);
|
|
||||||
}
|
|
||||||
|
|
||||||
private function isAssocArray(array $payload): bool
|
|
||||||
{
|
|
||||||
if ($payload === []) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
return array_keys($payload) !== range(0, count($payload) - 1);
|
|
||||||
}
|
|
||||||
|
|
||||||
private function normalizeDetailList(mixed $value, string $fieldPath): ?array
|
|
||||||
{
|
|
||||||
if ($value === null) {
|
|
||||||
return [];
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!is_array($value)) {
|
|
||||||
$this->failValidationErrors("{$fieldPath} must be an array of objects.");
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($value !== [] && $this->isAssocArray($value)) {
|
|
||||||
$value = [$value];
|
|
||||||
}
|
|
||||||
|
|
||||||
$results = [];
|
|
||||||
foreach ($value as $index => $item) {
|
|
||||||
if (!is_array($item)) {
|
|
||||||
$this->failValidationErrors("{$fieldPath}[{$index}] must be an object.");
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
$results[] = $item;
|
|
||||||
}
|
|
||||||
|
|
||||||
return $results;
|
|
||||||
}
|
|
||||||
|
|
||||||
private function normalizeDetailIds(mixed $value): ?array
|
|
||||||
{
|
|
||||||
if ($value === null) {
|
|
||||||
return [];
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!is_array($value)) {
|
|
||||||
$value = [$value];
|
|
||||||
}
|
|
||||||
|
|
||||||
$results = [];
|
|
||||||
foreach ($value as $index => $item) {
|
|
||||||
if (!ctype_digit((string) $item)) {
|
|
||||||
$this->failValidationErrors("details.deleted[{$index}] must be an integer.");
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
$results[] = (int) $item;
|
|
||||||
}
|
|
||||||
|
|
||||||
return array_values(array_unique($results));
|
|
||||||
}
|
|
||||||
|
|
||||||
public function batchCreate() {
|
|
||||||
$items = $this->request->getJSON(true);
|
|
||||||
if (!is_array($items)) { return $this->failValidationErrors('Expected array of items'); }
|
|
||||||
|
|
||||||
$results = ['success' => [], 'failed' => []];
|
|
||||||
$this->db->transStart();
|
|
||||||
|
|
||||||
foreach ($items as $index => $item) {
|
|
||||||
if (!$this->validateData($item, $this->rules)) {
|
|
||||||
$results['failed'][] = ['index' => $index, 'errors' => $this->validator->getErrors()];
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
try {
|
|
||||||
$id = $this->model->insert($item);
|
|
||||||
$results['success'][] = ['index' => $index, 'TestMapID' => $id];
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
$results['failed'][] = ['index' => $index, 'error' => $e->getMessage()];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->db->transComplete();
|
|
||||||
return $this->respond([
|
|
||||||
'status' => empty($results['failed']) ? 'success' : 'partial',
|
|
||||||
'message' => 'Batch create completed',
|
|
||||||
'data' => $results
|
|
||||||
], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function batchUpdate() {
|
|
||||||
$items = $this->request->getJSON(true);
|
|
||||||
if (!is_array($items)) { return $this->failValidationErrors('Expected array of items'); }
|
|
||||||
|
|
||||||
$results = ['success' => [], 'failed' => []];
|
|
||||||
$this->db->transStart();
|
|
||||||
|
|
||||||
foreach ($items as $index => $item) {
|
|
||||||
$id = $item['TestMapID'] ?? null;
|
|
||||||
if (!$id) {
|
|
||||||
$results['failed'][] = ['index' => $index, 'error' => 'TestMapID required'];
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
if (!$this->validateData($item, $this->rules)) {
|
|
||||||
$results['failed'][] = ['index' => $index, 'errors' => $this->validator->getErrors()];
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
try {
|
|
||||||
$this->model->update($id, $item);
|
|
||||||
$results['success'][] = ['index' => $index, 'TestMapID' => $id];
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
$results['failed'][] = ['index' => $index, 'error' => $e->getMessage()];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->db->transComplete();
|
|
||||||
return $this->respond([
|
|
||||||
'status' => empty($results['failed']) ? 'success' : 'partial',
|
|
||||||
'message' => 'Batch update completed',
|
|
||||||
'data' => $results
|
|
||||||
], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function batchDelete() {
|
|
||||||
$ids = $this->request->getJSON(true);
|
|
||||||
if (!is_array($ids)) { return $this->failValidationErrors('Expected array of TestMapIDs'); }
|
|
||||||
|
|
||||||
$results = ['success' => [], 'failed' => []];
|
|
||||||
$this->db->transStart();
|
|
||||||
|
|
||||||
foreach ($ids as $id) {
|
|
||||||
try {
|
|
||||||
$row = $this->model->where('TestMapID', $id)->where('EndDate', null)->first();
|
|
||||||
if (empty($row)) {
|
|
||||||
$results['failed'][] = ['TestMapID' => $id, 'error' => 'Not found or already deleted'];
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
$this->model->update($id, ['EndDate' => date('Y-m-d H:i:s')]);
|
|
||||||
$results['success'][] = $id;
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
$results['failed'][] = ['TestMapID' => $id, 'error' => $e->getMessage()];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->db->transComplete();
|
|
||||||
return $this->respond([
|
|
||||||
'status' => empty($results['failed']) ? 'success' : 'partial',
|
|
||||||
'message' => 'Batch delete completed',
|
|
||||||
'data' => $results
|
|
||||||
], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@ -1,286 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace App\Controllers\Test;
|
|
||||||
|
|
||||||
use App\Controllers\BaseController;
|
|
||||||
use App\Traits\PatchValidationTrait;
|
|
||||||
use App\Traits\ResponseTrait;
|
|
||||||
use App\Models\Test\TestMapDetailModel;
|
|
||||||
|
|
||||||
class TestMapDetailController extends BaseController {
|
|
||||||
use ResponseTrait;
|
|
||||||
use PatchValidationTrait;
|
|
||||||
|
|
||||||
protected $db;
|
|
||||||
protected $rules;
|
|
||||||
protected $patchRules;
|
|
||||||
protected $model;
|
|
||||||
|
|
||||||
public function __construct() {
|
|
||||||
$this->db = \Config\Database::connect();
|
|
||||||
$this->model = new TestMapDetailModel;
|
|
||||||
$this->rules = [
|
|
||||||
'TestMapID' => 'required|integer',
|
|
||||||
'HostTestCode' => 'permit_empty|max_length[10]',
|
|
||||||
'HostTestName' => 'permit_empty|max_length[100]',
|
|
||||||
'ConDefID' => 'permit_empty|integer',
|
|
||||||
'ClientTestCode' => 'permit_empty|max_length[10]',
|
|
||||||
'ClientTestName' => 'permit_empty|max_length[100]',
|
|
||||||
];
|
|
||||||
$this->patchRules = [
|
|
||||||
'TestMapID' => 'permit_empty|integer',
|
|
||||||
'HostTestCode' => 'permit_empty|max_length[10]',
|
|
||||||
'HostTestName' => 'permit_empty|max_length[100]',
|
|
||||||
'ConDefID' => 'permit_empty|integer',
|
|
||||||
'ClientTestCode' => 'permit_empty|max_length[10]',
|
|
||||||
'ClientTestName' => 'permit_empty|max_length[100]',
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
||||||
public function index() {
|
|
||||||
$testMapID = $this->request->getGet('TestMapID');
|
|
||||||
|
|
||||||
if ($testMapID) {
|
|
||||||
$rows = $this->model->getDetailsByTestMap($testMapID);
|
|
||||||
} else {
|
|
||||||
$rows = $this->model->where('EndDate', null)->findAll();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (empty($rows)) {
|
|
||||||
return $this->respond([ 'status' => 'success', 'message' => "no Data.", 'data' => [] ], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->respond([ 'status' => 'success', 'message'=> "Data fetched successfully", 'data' => $rows ], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function show($id = null) {
|
|
||||||
if (!$id) {
|
|
||||||
return $this->failValidationErrors('TestMapDetailID is required.');
|
|
||||||
}
|
|
||||||
|
|
||||||
$row = $this->model->where('TestMapDetailID', $id)->where('EndDate', null)->first();
|
|
||||||
|
|
||||||
if (empty($row)) {
|
|
||||||
return $this->respond([ 'status' => 'success', 'message' => "no Data.", 'data' => null ], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->respond([ 'status' => 'success', 'message'=> "Data fetched successfully", 'data' => $row ], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function showByTestMap($testMapID = null) {
|
|
||||||
if (!$testMapID) {
|
|
||||||
return $this->failValidationErrors('TestMapID is required.');
|
|
||||||
}
|
|
||||||
|
|
||||||
$rows = $this->model->getDetailsByTestMap($testMapID);
|
|
||||||
|
|
||||||
if (empty($rows)) {
|
|
||||||
return $this->respond([ 'status' => 'success', 'message' => "no Data.", 'data' => [] ], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->respond([ 'status' => 'success', 'message'=> "Data fetched successfully", 'data' => $rows ], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function create() {
|
|
||||||
$input = $this->request->getJSON(true);
|
|
||||||
|
|
||||||
if (!$this->validateData($input, $this->rules)) {
|
|
||||||
return $this->failValidationErrors($this->validator->getErrors());
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
$id = $this->model->insert($input);
|
|
||||||
return $this->respondCreated([
|
|
||||||
'status' => 'success',
|
|
||||||
'message' => "data created successfully",
|
|
||||||
'data' => $id
|
|
||||||
]);
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function update($TestMapDetailID = null) {
|
|
||||||
$input = $this->requirePatchPayload($this->request->getJSON(true));
|
|
||||||
if ($input === null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$id = $this->requirePatchId($TestMapDetailID, 'TestMapDetailID');
|
|
||||||
if ($id === null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$existing = $this->model->where('TestMapDetailID', $id)->where('EndDate', null)->first();
|
|
||||||
if (!$existing) {
|
|
||||||
return $this->respond([ 'status' => 'failed', 'message' => 'Test map detail not found', 'data' => [] ], 404);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isset($input['TestMapDetailID']) && (string) $input['TestMapDetailID'] !== (string) $id) {
|
|
||||||
return $this->failValidationErrors('TestMapDetailID in URL does not match body.');
|
|
||||||
}
|
|
||||||
|
|
||||||
$input['TestMapDetailID'] = $id;
|
|
||||||
$validationInput = array_intersect_key($input, $this->patchRules);
|
|
||||||
if (!empty($validationInput) && !$this->validateData($validationInput, $this->patchRules)) {
|
|
||||||
return $this->failValidationErrors($this->validator->getErrors());
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
$this->model->update($id, $input);
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'success',
|
|
||||||
'message' => 'data updated successfully',
|
|
||||||
'data' => $id
|
|
||||||
], 200);
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function delete() {
|
|
||||||
$input = $this->request->getJSON(true);
|
|
||||||
$id = $input["TestMapDetailID"] ?? null;
|
|
||||||
|
|
||||||
if (!$id) {
|
|
||||||
return $this->failValidationErrors('TestMapDetailID is required.');
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
$row = $this->model->where('TestMapDetailID', $id)->where('EndDate', null)->first();
|
|
||||||
|
|
||||||
if (empty($row)) {
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'failed',
|
|
||||||
'message' => "Data not found or already deleted.",
|
|
||||||
'data' => null
|
|
||||||
], 404);
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->model->update($id, ['EndDate' => date('Y-m-d H:i:s')]);
|
|
||||||
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'success',
|
|
||||||
'message' => "data deleted successfully",
|
|
||||||
'data' => $id
|
|
||||||
], 200);
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function batchCreate() {
|
|
||||||
$items = $this->request->getJSON(true);
|
|
||||||
|
|
||||||
if (!is_array($items)) {
|
|
||||||
return $this->failValidationErrors('Expected array of items');
|
|
||||||
}
|
|
||||||
|
|
||||||
$results = ['success' => [], 'failed' => []];
|
|
||||||
$this->db->transStart();
|
|
||||||
|
|
||||||
foreach ($items as $index => $item) {
|
|
||||||
if (!$this->validateData($item, $this->rules)) {
|
|
||||||
$results['failed'][] = ['index' => $index, 'errors' => $this->validator->getErrors()];
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
try {
|
|
||||||
$id = $this->model->insert($item);
|
|
||||||
$results['success'][] = ['index' => $index, 'TestMapDetailID' => $id];
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
$results['failed'][] = ['index' => $index, 'error' => $e->getMessage()];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->db->transComplete();
|
|
||||||
|
|
||||||
return $this->respond([
|
|
||||||
'status' => empty($results['failed']) ? 'success' : 'partial',
|
|
||||||
'message' => 'Batch create completed',
|
|
||||||
'data' => $results
|
|
||||||
], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function batchUpdate() {
|
|
||||||
$items = $this->request->getJSON(true);
|
|
||||||
|
|
||||||
if (!is_array($items)) {
|
|
||||||
return $this->failValidationErrors('Expected array of items');
|
|
||||||
}
|
|
||||||
|
|
||||||
$results = ['success' => [], 'failed' => []];
|
|
||||||
$this->db->transStart();
|
|
||||||
|
|
||||||
foreach ($items as $index => $item) {
|
|
||||||
$id = $item['TestMapDetailID'] ?? null;
|
|
||||||
|
|
||||||
if (!$id) {
|
|
||||||
$results['failed'][] = ['index' => $index, 'error' => 'TestMapDetailID required'];
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
$updateData = $item;
|
|
||||||
unset($updateData['TestMapDetailID']);
|
|
||||||
|
|
||||||
if ($updateData === []) {
|
|
||||||
$results['failed'][] = ['index' => $index, 'error' => 'No fields to update'];
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!$this->validateData($updateData, $this->patchRules)) {
|
|
||||||
$results['failed'][] = ['index' => $index, 'errors' => $this->validator->getErrors()];
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
$this->model->update($id, $updateData);
|
|
||||||
$results['success'][] = ['index' => $index, 'TestMapDetailID' => $id];
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
$results['failed'][] = ['index' => $index, 'error' => $e->getMessage()];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->db->transComplete();
|
|
||||||
|
|
||||||
return $this->respond([
|
|
||||||
'status' => empty($results['failed']) ? 'success' : 'partial',
|
|
||||||
'message' => 'Batch update completed',
|
|
||||||
'data' => $results
|
|
||||||
], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function batchDelete() {
|
|
||||||
$ids = $this->request->getJSON(true);
|
|
||||||
|
|
||||||
if (!is_array($ids)) {
|
|
||||||
return $this->failValidationErrors('Expected array of TestMapDetailIDs');
|
|
||||||
}
|
|
||||||
|
|
||||||
$results = ['success' => [], 'failed' => []];
|
|
||||||
$this->db->transStart();
|
|
||||||
|
|
||||||
foreach ($ids as $id) {
|
|
||||||
try {
|
|
||||||
$row = $this->model->where('TestMapDetailID', $id)->where('EndDate', null)->first();
|
|
||||||
|
|
||||||
if (empty($row)) {
|
|
||||||
$results['failed'][] = ['TestMapDetailID' => $id, 'error' => 'Not found or already deleted'];
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->model->update($id, ['EndDate' => date('Y-m-d H:i:s')]);
|
|
||||||
$results['success'][] = $id;
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
$results['failed'][] = ['TestMapDetailID' => $id, 'error' => $e->getMessage()];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->db->transComplete();
|
|
||||||
|
|
||||||
return $this->respond([
|
|
||||||
'status' => empty($results['failed']) ? 'success' : 'partial',
|
|
||||||
'message' => 'Batch delete completed',
|
|
||||||
'data' => $results
|
|
||||||
], 200);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,735 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace App\Controllers\Test;
|
|
||||||
|
|
||||||
use App\Controllers\BaseController;
|
|
||||||
use App\Libraries\TestValidationService;
|
|
||||||
use App\Libraries\ValueSet;
|
|
||||||
use App\Traits\PatchValidationTrait;
|
|
||||||
use App\Traits\ResponseTrait;
|
|
||||||
|
|
||||||
class TestsController extends BaseController
|
|
||||||
{
|
|
||||||
use ResponseTrait;
|
|
||||||
use PatchValidationTrait;
|
|
||||||
|
|
||||||
protected $model;
|
|
||||||
protected $modelCal;
|
|
||||||
protected $modelGrp;
|
|
||||||
protected $modelMap;
|
|
||||||
protected $modelMapDetail;
|
|
||||||
protected $modelRefNum;
|
|
||||||
protected $modelRefTxt;
|
|
||||||
protected $rules;
|
|
||||||
|
|
||||||
public function __construct()
|
|
||||||
{
|
|
||||||
$this->model = new \App\Models\Test\TestDefSiteModel;
|
|
||||||
$this->modelCal = new \App\Models\Test\TestDefCalModel;
|
|
||||||
$this->modelGrp = new \App\Models\Test\TestDefGrpModel;
|
|
||||||
$this->modelMap = new \App\Models\Test\TestMapModel;
|
|
||||||
$this->modelMapDetail = new \App\Models\Test\TestMapDetailModel;
|
|
||||||
$this->modelRefNum = new \App\Models\RefRange\RefNumModel;
|
|
||||||
$this->modelRefTxt = new \App\Models\RefRange\RefTxtModel;
|
|
||||||
|
|
||||||
$this->rules = [
|
|
||||||
'TestSiteCode' => 'required',
|
|
||||||
'TestSiteName' => 'required',
|
|
||||||
'TestType' => 'required',
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
||||||
public function index()
|
|
||||||
{
|
|
||||||
$search = $this->request->getGet('search');
|
|
||||||
|
|
||||||
$filters = [
|
|
||||||
'SiteID' => $this->request->getGet('SiteID'),
|
|
||||||
'TestType' => $this->request->getGet('TestType'),
|
|
||||||
'isVisibleScr' => $this->request->getGet('isVisibleScr'),
|
|
||||||
'isVisibleRpt' => $this->request->getGet('isVisibleRpt'),
|
|
||||||
'TestSiteName' => $this->request->getGet('TestSiteName'),
|
|
||||||
'TestSiteCode' => $this->request->getGet('TestSiteCode'),
|
|
||||||
'search' => $search,
|
|
||||||
];
|
|
||||||
|
|
||||||
$rows = $this->model->getTestsWithRelations($filters);
|
|
||||||
|
|
||||||
if (empty($rows)) {
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'success',
|
|
||||||
'message' => 'No data.',
|
|
||||||
'data' => [],
|
|
||||||
], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
$rows = ValueSet::transformLabels($rows, [
|
|
||||||
'TestType' => 'test_type',
|
|
||||||
]);
|
|
||||||
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'success',
|
|
||||||
'message' => 'Data fetched successfully',
|
|
||||||
'data' => $rows,
|
|
||||||
], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function show($id = null)
|
|
||||||
{
|
|
||||||
if (!$id) {
|
|
||||||
return $this->failValidationErrors('TestSiteID is required');
|
|
||||||
}
|
|
||||||
|
|
||||||
$row = $this->model->getTestById($id);
|
|
||||||
|
|
||||||
if (!$row) {
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'success',
|
|
||||||
'message' => 'No data.',
|
|
||||||
'data' => null,
|
|
||||||
], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
$typeCode = $row['TestType'] ?? '';
|
|
||||||
|
|
||||||
if ($typeCode === 'CALC') {
|
|
||||||
$row['testdefcal'] = $this->modelCal->getByTestSiteID($id);
|
|
||||||
$row['testdefgrp'] = [
|
|
||||||
'members' => $this->modelGrp->getGroupMembers($id),
|
|
||||||
];
|
|
||||||
} elseif ($typeCode === 'GROUP') {
|
|
||||||
$row['testdefgrp'] = [
|
|
||||||
'members' => $this->modelGrp->getGroupMembers($id),
|
|
||||||
];
|
|
||||||
} elseif ($typeCode !== 'TITLE') {
|
|
||||||
$refType = $row['RefType'] ?? '';
|
|
||||||
$resultType = $row['ResultType'] ?? '';
|
|
||||||
|
|
||||||
if (TestValidationService::usesRefNum($resultType, $refType)) {
|
|
||||||
$row['refnum'] = $this->modelRefNum->getFormattedByTestSiteID($id);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (TestValidationService::usesRefTxt($resultType, $refType)) {
|
|
||||||
$row['reftxt'] = $this->modelRefTxt->getFormattedByTestSiteID($id);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Keep /api/test payload focused on test definition fields.
|
|
||||||
unset($row['testmap']);
|
|
||||||
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'success',
|
|
||||||
'message' => 'Data fetched successfully',
|
|
||||||
'data' => $row,
|
|
||||||
], 200);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function create()
|
|
||||||
{
|
|
||||||
$input = $this->request->getJSON(true);
|
|
||||||
|
|
||||||
if (!$this->validateData($input, $this->rules)) {
|
|
||||||
return $this->failValidationErrors($this->validator->getErrors());
|
|
||||||
}
|
|
||||||
|
|
||||||
$testType = $input['TestType'] ?? '';
|
|
||||||
$details = $input['details'] ?? $input;
|
|
||||||
$resultType = $details['ResultType'] ?? '';
|
|
||||||
$refType = $details['RefType'] ?? '';
|
|
||||||
|
|
||||||
if (TestValidationService::isCalc($testType)) {
|
|
||||||
$resultType = 'NMRIC';
|
|
||||||
$refType = $refType ?: 'RANGE';
|
|
||||||
} elseif (TestValidationService::isGroup($testType) || TestValidationService::isTitle($testType)) {
|
|
||||||
$resultType = 'NORES';
|
|
||||||
$refType = 'NOREF';
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($resultType && $refType) {
|
|
||||||
$validation = TestValidationService::validate($testType, $resultType, $refType);
|
|
||||||
if (!$validation['valid']) {
|
|
||||||
return $this->failValidationErrors(['type_validation' => $validation['error']]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$db = \Config\Database::connect();
|
|
||||||
$db->transStart();
|
|
||||||
|
|
||||||
try {
|
|
||||||
$testSiteData = [
|
|
||||||
'SiteID' => array_key_exists('SiteID', $input) ? $input['SiteID'] : null,
|
|
||||||
'TestSiteCode'=> $input['TestSiteCode'],
|
|
||||||
'TestSiteName'=> $input['TestSiteName'],
|
|
||||||
'TestType' => $input['TestType'],
|
|
||||||
'Description' => $input['Description'] ?? null,
|
|
||||||
'SeqScr' => array_key_exists('SeqScr', $input) ? $input['SeqScr'] : null,
|
|
||||||
'SeqRpt' => array_key_exists('SeqRpt', $input) ? $input['SeqRpt'] : null,
|
|
||||||
'IndentLeft' => $input['IndentLeft'] ?? 0,
|
|
||||||
'FontStyle' => $input['FontStyle'] ?? null,
|
|
||||||
'isVisibleScr' => $input['isVisibleScr'] ?? 1,
|
|
||||||
'isVisibleRpt' => $input['isVisibleRpt'] ?? 1,
|
|
||||||
'isCountStat' => $input['isCountStat'] ?? 1,
|
|
||||||
'isRequestable' => $input['isRequestable'] ?? 1,
|
|
||||||
'StartDate' => $input['StartDate'] ?? date('Y-m-d H:i:s'),
|
|
||||||
];
|
|
||||||
|
|
||||||
$id = $this->model->insert($testSiteData);
|
|
||||||
if (!$id) {
|
|
||||||
$dbError = $db->error();
|
|
||||||
log_message('error', 'Test insert failed: ' . json_encode($dbError, JSON_UNESCAPED_SLASHES));
|
|
||||||
$message = $dbError['message'] ?? 'Failed to insert main test definition';
|
|
||||||
throw new \Exception('Failed to insert main test definition: ' . $message);
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->handleDetails($id, $input, 'insert');
|
|
||||||
|
|
||||||
$db->transComplete();
|
|
||||||
|
|
||||||
if ($db->transStatus() === false) {
|
|
||||||
$dbError = $db->error();
|
|
||||||
$lastQuery = $db->showLastQuery();
|
|
||||||
log_message('error', 'TestController transaction failed: ' . json_encode([
|
|
||||||
'error' => $dbError,
|
|
||||||
'last_query' => $lastQuery,
|
|
||||||
], JSON_UNESCAPED_SLASHES));
|
|
||||||
return $this->failServerError('Transaction failed');
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->respondCreated([
|
|
||||||
'status' => 'success',
|
|
||||||
'message' => 'Test created successfully',
|
|
||||||
'data' => ['TestSiteId' => $id],
|
|
||||||
]);
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
$db->transRollback();
|
|
||||||
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function update($id = null)
|
|
||||||
{
|
|
||||||
$input = $this->requirePatchPayload($this->request->getJSON(true));
|
|
||||||
if ($input === null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!$id && isset($input['TestSiteID'])) {
|
|
||||||
$id = $input['TestSiteID'];
|
|
||||||
}
|
|
||||||
|
|
||||||
$id = $this->requirePatchId($id, 'TestSiteID');
|
|
||||||
if ($id === null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$existing = $this->model->find($id);
|
|
||||||
if (!$existing) {
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'failed',
|
|
||||||
'message' => 'Test not found',
|
|
||||||
'data' => []
|
|
||||||
], 404);
|
|
||||||
}
|
|
||||||
|
|
||||||
$testType = $input['TestType'] ?? $existing['TestType'] ?? '';
|
|
||||||
$details = $input['details'] ?? $input;
|
|
||||||
$resultType = $details['ResultType'] ?? $existing['ResultType'] ?? '';
|
|
||||||
$refType = $details['RefType'] ?? $existing['RefType'] ?? '';
|
|
||||||
|
|
||||||
if (TestValidationService::isCalc($testType)) {
|
|
||||||
$resultType = 'NMRIC';
|
|
||||||
$refType = $refType ?: 'RANGE';
|
|
||||||
} elseif (TestValidationService::isGroup($testType) || TestValidationService::isTitle($testType)) {
|
|
||||||
$resultType = 'NORES';
|
|
||||||
$refType = 'NOREF';
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($resultType && $refType) {
|
|
||||||
$validation = TestValidationService::validate($testType, $resultType, $refType);
|
|
||||||
if (!$validation['valid']) {
|
|
||||||
return $this->failValidationErrors(['type_validation' => $validation['error']]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$db = \Config\Database::connect();
|
|
||||||
$db->transStart();
|
|
||||||
|
|
||||||
try {
|
|
||||||
$testSiteData = [];
|
|
||||||
$allowedUpdateFields = [
|
|
||||||
'TestSiteCode',
|
|
||||||
'TestSiteName',
|
|
||||||
'TestType',
|
|
||||||
'Description',
|
|
||||||
'SeqScr',
|
|
||||||
'SeqRpt',
|
|
||||||
'IndentLeft',
|
|
||||||
'FontStyle',
|
|
||||||
'isVisibleScr',
|
|
||||||
'isVisibleRpt',
|
|
||||||
'isCountStat',
|
|
||||||
'isRequestable',
|
|
||||||
'StartDate',
|
|
||||||
];
|
|
||||||
|
|
||||||
foreach ($allowedUpdateFields as $field) {
|
|
||||||
if (array_key_exists($field, $input)) {
|
|
||||||
$testSiteData[$field] = $input[$field];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!empty($testSiteData)) {
|
|
||||||
$this->model->update($id, $testSiteData);
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->handleDetails($id, $input, 'update');
|
|
||||||
|
|
||||||
$db->transComplete();
|
|
||||||
|
|
||||||
if ($db->transStatus() === false) {
|
|
||||||
return $this->failServerError('Transaction failed');
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'success',
|
|
||||||
'message' => 'Test updated successfully',
|
|
||||||
'data' => ['TestSiteId' => $id],
|
|
||||||
]);
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
$db->transRollback();
|
|
||||||
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function delete($id = null)
|
|
||||||
{
|
|
||||||
$input = $this->request->getJSON(true);
|
|
||||||
|
|
||||||
if (!$id && isset($input['TestSiteID'])) {
|
|
||||||
$id = $input['TestSiteID'];
|
|
||||||
}
|
|
||||||
if (!$id) {
|
|
||||||
return $this->failValidationErrors('TestSiteID is required.');
|
|
||||||
}
|
|
||||||
|
|
||||||
$existing = $this->model->find($id);
|
|
||||||
if (!$existing) {
|
|
||||||
return $this->failNotFound('Test not found');
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!empty($existing['EndDate'])) {
|
|
||||||
return $this->failValidationErrors('Test is already disabled');
|
|
||||||
}
|
|
||||||
|
|
||||||
$db = \Config\Database::connect();
|
|
||||||
$db->transStart();
|
|
||||||
|
|
||||||
try {
|
|
||||||
$now = date('Y-m-d H:i:s');
|
|
||||||
|
|
||||||
$this->model->update($id, ['EndDate' => $now]);
|
|
||||||
|
|
||||||
$testType = $existing['TestType'];
|
|
||||||
$typeCode = $testType;
|
|
||||||
|
|
||||||
if (TestValidationService::isCalc($typeCode)) {
|
|
||||||
$this->modelCal->disableByTestSiteID($id);
|
|
||||||
$this->modelGrp->disableByTestSiteID($id);
|
|
||||||
} elseif (TestValidationService::isGroup($typeCode)) {
|
|
||||||
$this->modelGrp->disableByTestSiteID($id);
|
|
||||||
} elseif (TestValidationService::isTechnicalTest($typeCode)) {
|
|
||||||
$this->modelRefNum->disableByTestSiteID($id);
|
|
||||||
$this->modelRefTxt->disableByTestSiteID($id);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Disable testmap by test code
|
|
||||||
$testSiteCode = $existing['TestSiteCode'] ?? null;
|
|
||||||
if ($testSiteCode) {
|
|
||||||
$existingMaps = $this->modelMap->getMappingsByTestCode($testSiteCode);
|
|
||||||
foreach ($existingMaps as $existingMap) {
|
|
||||||
$this->modelMapDetail->disableByTestMapID($existingMap['TestMapID']);
|
|
||||||
$this->modelMap->update($existingMap['TestMapID'], ['EndDate' => $now]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$db->transComplete();
|
|
||||||
|
|
||||||
if ($db->transStatus() === false) {
|
|
||||||
return $this->failServerError('Transaction failed');
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->respond([
|
|
||||||
'status' => 'success',
|
|
||||||
'message' => 'Test disabled successfully',
|
|
||||||
'data' => ['TestSiteId' => $id, 'EndDate' => $now],
|
|
||||||
]);
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
$db->transRollback();
|
|
||||||
|
|
||||||
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private function handleDetails($testSiteID, $input, $action)
|
|
||||||
{
|
|
||||||
$testTypeID = $input['TestType'] ?? null;
|
|
||||||
$testSiteCode = null;
|
|
||||||
|
|
||||||
if (!$testTypeID && $action === 'update') {
|
|
||||||
$existing = $this->model->find($testSiteID);
|
|
||||||
$testTypeID = $existing['TestType'] ?? null;
|
|
||||||
$testSiteCode = $existing['TestSiteCode'] ?? null;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!$testTypeID) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$typeCode = $testTypeID;
|
|
||||||
|
|
||||||
$details = $input['details'] ?? $input;
|
|
||||||
$details['TestSiteID'] = $testSiteID;
|
|
||||||
$details['SiteID'] = array_key_exists('SiteID', $input) ? $input['SiteID'] : null;
|
|
||||||
|
|
||||||
switch ($typeCode) {
|
|
||||||
case 'CALC':
|
|
||||||
$this->saveCalcDetails($testSiteID, $details, $input, $action);
|
|
||||||
|
|
||||||
break;
|
|
||||||
|
|
||||||
case 'GROUP':
|
|
||||||
$this->saveGroupDetails($testSiteID, $details, $input, $action);
|
|
||||||
|
|
||||||
break;
|
|
||||||
|
|
||||||
case 'TITLE':
|
|
||||||
break;
|
|
||||||
|
|
||||||
case 'TEST':
|
|
||||||
case 'PARAM':
|
|
||||||
default:
|
|
||||||
$this->saveTechDetails($testSiteID, $details, $action, $typeCode);
|
|
||||||
|
|
||||||
if (in_array($typeCode, ['TEST', 'PARAM']) && isset($details['RefType'])) {
|
|
||||||
$refType = (string) $details['RefType'];
|
|
||||||
$resultType = $details['ResultType'] ?? '';
|
|
||||||
|
|
||||||
if (TestValidationService::usesRefNum($resultType, $refType) && isset($input['refnum']) && is_array($input['refnum'])) {
|
|
||||||
$this->saveRefNumRanges($testSiteID, $input['refnum'], $action, array_key_exists('SiteID', $input) ? $input['SiteID'] : null);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (TestValidationService::usesRefTxt($resultType, $refType) && isset($input['reftxt']) && is_array($input['reftxt'])) {
|
|
||||||
$this->saveRefTxtRanges($testSiteID, $input['reftxt'], $action, array_key_exists('SiteID', $input) ? $input['SiteID'] : null);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
private function saveTechDetails($testSiteID, $data, $action, $typeCode)
|
|
||||||
{
|
|
||||||
$allowedFields = [
|
|
||||||
'DisciplineID',
|
|
||||||
'DepartmentID',
|
|
||||||
'ResultType',
|
|
||||||
'RefType',
|
|
||||||
'VSet',
|
|
||||||
'ReqQty',
|
|
||||||
'ReqQtyUnit',
|
|
||||||
'Unit1',
|
|
||||||
'Factor',
|
|
||||||
'Unit2',
|
|
||||||
'Decimal',
|
|
||||||
'CollReq',
|
|
||||||
'Method',
|
|
||||||
'ExpectedTAT',
|
|
||||||
];
|
|
||||||
|
|
||||||
$techData = [];
|
|
||||||
foreach ($allowedFields as $field) {
|
|
||||||
if (array_key_exists($field, $data)) {
|
|
||||||
$techData[$field] = $data[$field];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($techData !== []) {
|
|
||||||
$this->model->update($testSiteID, $techData);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private function saveRefNumRanges($testSiteID, $ranges, $action, $siteID)
|
|
||||||
{
|
|
||||||
if ($action === 'update') {
|
|
||||||
$this->modelRefNum->disableByTestSiteID($testSiteID);
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->modelRefNum->batchInsert($testSiteID, $siteID, $ranges);
|
|
||||||
}
|
|
||||||
|
|
||||||
private function saveRefTxtRanges($testSiteID, $ranges, $action, $siteID)
|
|
||||||
{
|
|
||||||
if ($action === 'update') {
|
|
||||||
$this->modelRefTxt->disableByTestSiteID($testSiteID);
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->modelRefTxt->batchInsert($testSiteID, $siteID, $ranges);
|
|
||||||
}
|
|
||||||
|
|
||||||
private function saveCalcDetails($testSiteID, $data, $input, $action)
|
|
||||||
{
|
|
||||||
$calcData = [];
|
|
||||||
$fieldMap = [
|
|
||||||
'DisciplineID' => 'DisciplineID',
|
|
||||||
'DepartmentID' => 'DepartmentID',
|
|
||||||
'Factor' => 'Factor',
|
|
||||||
'Unit2' => 'Unit2',
|
|
||||||
'Decimal' => 'Decimal',
|
|
||||||
'Method' => 'Method',
|
|
||||||
];
|
|
||||||
|
|
||||||
foreach ($fieldMap as $source => $target) {
|
|
||||||
if (array_key_exists($source, $data)) {
|
|
||||||
$calcData[$target] = $data[$source];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (array_key_exists('FormulaCode', $data) || array_key_exists('Formula', $data)) {
|
|
||||||
$calcData['FormulaCode'] = $data['FormulaCode'] ?? $data['Formula'] ?? null;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (array_key_exists('RefType', $data)) {
|
|
||||||
$calcData['RefType'] = $data['RefType'];
|
|
||||||
}
|
|
||||||
|
|
||||||
if (array_key_exists('Unit1', $data) || array_key_exists('ResultUnit', $data)) {
|
|
||||||
$calcData['Unit1'] = $data['Unit1'] ?? $data['ResultUnit'] ?? null;
|
|
||||||
}
|
|
||||||
|
|
||||||
$hasMemberPayload = isset($input['testdefgrp'])
|
|
||||||
&& is_array($input['testdefgrp'])
|
|
||||||
&& array_key_exists('members', $input['testdefgrp']);
|
|
||||||
|
|
||||||
if ($action === 'insert' && !array_key_exists('ResultType', $calcData)) {
|
|
||||||
$calcData['ResultType'] = 'NMRIC';
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($action === 'insert' && !array_key_exists('RefType', $calcData)) {
|
|
||||||
$calcData['RefType'] = 'RANGE';
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($calcData !== []) {
|
|
||||||
$calcData['TestSiteID'] = $testSiteID;
|
|
||||||
if ($action === 'update') {
|
|
||||||
$exists = $this->modelCal->existsByTestSiteID($testSiteID);
|
|
||||||
|
|
||||||
if ($exists) {
|
|
||||||
unset($calcData['TestSiteID']);
|
|
||||||
$this->modelCal->update($exists['TestCalID'], $calcData);
|
|
||||||
} else {
|
|
||||||
if (!array_key_exists('ResultType', $calcData)) {
|
|
||||||
$calcData['ResultType'] = 'NMRIC';
|
|
||||||
}
|
|
||||||
if (!array_key_exists('RefType', $calcData)) {
|
|
||||||
$calcData['RefType'] = 'RANGE';
|
|
||||||
}
|
|
||||||
$this->modelCal->insert($calcData);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
$this->modelCal->insert($calcData);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($action === 'update' && !$hasMemberPayload) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($action === 'update') {
|
|
||||||
$this->modelGrp->disableByTestSiteID($testSiteID);
|
|
||||||
}
|
|
||||||
|
|
||||||
$memberIDs = $this->resolveMemberIDs($input);
|
|
||||||
|
|
||||||
$validation = $this->validateMemberIDs($memberIDs);
|
|
||||||
if (!$validation['valid']) {
|
|
||||||
throw new \Exception('Invalid member TestSiteID(s): ' . implode(', ', $validation['invalid']) . '. Make sure to use TestSiteID, not SeqScr or other values.');
|
|
||||||
}
|
|
||||||
|
|
||||||
foreach ($memberIDs as $memberID) {
|
|
||||||
$this->modelGrp->insert([
|
|
||||||
'TestSiteID' => $testSiteID,
|
|
||||||
'Member' => $memberID,
|
|
||||||
]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private function resolveMemberIDs(array $input): array
|
|
||||||
{
|
|
||||||
$memberIDs = [];
|
|
||||||
|
|
||||||
$rawMembers = $input['testdefgrp']['members'] ?? [];
|
|
||||||
if (is_array($rawMembers)) {
|
|
||||||
foreach ($rawMembers as $member) {
|
|
||||||
if (is_array($member)) {
|
|
||||||
$rawID = $member['TestSiteID'] ?? null;
|
|
||||||
} else {
|
|
||||||
$rawID = is_numeric($member) ? $member : null;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($rawID !== null && is_numeric($rawID)) {
|
|
||||||
$memberIDs[] = (int) $rawID;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$memberIDs = array_values(array_unique(array_filter($memberIDs)));
|
|
||||||
|
|
||||||
return $memberIDs;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Validate that member IDs exist in testdefsite table
|
|
||||||
*
|
|
||||||
* @param array $memberIDs Array of TestSiteID values to validate
|
|
||||||
* @return array ['valid' => bool, 'invalid' => array]
|
|
||||||
*/
|
|
||||||
private function validateMemberIDs(array $memberIDs): array
|
|
||||||
{
|
|
||||||
if (empty($memberIDs)) {
|
|
||||||
return ['valid' => true, 'invalid' => []];
|
|
||||||
}
|
|
||||||
|
|
||||||
$existing = $this->model->whereIn('TestSiteID', $memberIDs)
|
|
||||||
->where('EndDate IS NULL')
|
|
||||||
->findAll();
|
|
||||||
|
|
||||||
$existingIDs = array_column($existing, 'TestSiteID');
|
|
||||||
$invalidIDs = array_diff($memberIDs, $existingIDs);
|
|
||||||
|
|
||||||
return [
|
|
||||||
'valid' => empty($invalidIDs),
|
|
||||||
'invalid' => array_values($invalidIDs)
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
||||||
private function saveGroupDetails($testSiteID, $data, $input, $action)
|
|
||||||
{
|
|
||||||
$hasMemberPayload = isset($input['testdefgrp'])
|
|
||||||
&& is_array($input['testdefgrp'])
|
|
||||||
&& array_key_exists('members', $input['testdefgrp']);
|
|
||||||
|
|
||||||
if ($action === 'update' && !$hasMemberPayload) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($action === 'update') {
|
|
||||||
$this->modelGrp->disableByTestSiteID($testSiteID);
|
|
||||||
}
|
|
||||||
|
|
||||||
$memberIDs = $this->resolveMemberIDs($input);
|
|
||||||
|
|
||||||
// Validate member IDs before insertion
|
|
||||||
$validation = $this->validateMemberIDs($memberIDs);
|
|
||||||
if (!$validation['valid']) {
|
|
||||||
throw new \Exception('Invalid member TestSiteID(s): ' . implode(', ', $validation['invalid']) . '. Make sure to use TestSiteID, not SeqScr or other values.');
|
|
||||||
}
|
|
||||||
|
|
||||||
foreach ($memberIDs as $memberID) {
|
|
||||||
$this->modelGrp->insert([
|
|
||||||
'TestSiteID' => $testSiteID,
|
|
||||||
'Member' => $memberID,
|
|
||||||
]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private function saveTestMap($testSiteID, $testSiteCode, $mappings, $action)
|
|
||||||
{
|
|
||||||
if ($action === 'update' && $testSiteCode) {
|
|
||||||
// Find existing mappings by test code through testmapdetail
|
|
||||||
$existingMaps = $this->modelMap->getMappingsByTestCode($testSiteCode);
|
|
||||||
|
|
||||||
foreach ($existingMaps as $existingMap) {
|
|
||||||
$this->modelMapDetail->disableByTestMapID($existingMap['TestMapID']);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Soft delete the testmap headers
|
|
||||||
foreach ($existingMaps as $existingMap) {
|
|
||||||
$this->modelMap->update($existingMap['TestMapID'], ['EndDate' => date('Y-m-d H:i:s')]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
foreach ($this->normalizeTestMapPayload($mappings) as $map) {
|
|
||||||
$mapData = [
|
|
||||||
'HostType' => $map['HostType'] ?? null,
|
|
||||||
'HostID' => $map['HostID'] ?? null,
|
|
||||||
'ClientType' => $map['ClientType'] ?? null,
|
|
||||||
'ClientID' => $map['ClientID'] ?? null,
|
|
||||||
];
|
|
||||||
|
|
||||||
$testMapID = $this->modelMap->insert($mapData);
|
|
||||||
if (!$testMapID) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
foreach ($this->extractTestMapDetails($map) as $detail) {
|
|
||||||
$detailData = [
|
|
||||||
'TestMapID' => $testMapID,
|
|
||||||
'HostTestCode' => $detail['HostTestCode'] ?? null,
|
|
||||||
'HostTestName' => $detail['HostTestName'] ?? null,
|
|
||||||
'ConDefID' => $detail['ConDefID'] ?? null,
|
|
||||||
'ClientTestCode' => $detail['ClientTestCode'] ?? null,
|
|
||||||
'ClientTestName' => $detail['ClientTestName'] ?? null,
|
|
||||||
];
|
|
||||||
$this->modelMapDetail->insert($detailData);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private function normalizeTestMapPayload($mappings): array
|
|
||||||
{
|
|
||||||
if (!is_array($mappings)) {
|
|
||||||
return [];
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($this->isAssoc($mappings)) {
|
|
||||||
return [$mappings];
|
|
||||||
}
|
|
||||||
|
|
||||||
return array_values(array_filter($mappings, static fn ($map) => is_array($map)));
|
|
||||||
}
|
|
||||||
|
|
||||||
private function extractTestMapDetails(array $map): array
|
|
||||||
{
|
|
||||||
if (isset($map['details']) && is_array($map['details'])) {
|
|
||||||
return array_values(array_filter($map['details'], static fn ($detail) => is_array($detail)));
|
|
||||||
}
|
|
||||||
|
|
||||||
$flatDetail = [
|
|
||||||
'HostTestCode' => $map['HostTestCode'] ?? null,
|
|
||||||
'HostTestName' => $map['HostTestName'] ?? null,
|
|
||||||
'ConDefID' => $map['ConDefID'] ?? null,
|
|
||||||
'ClientTestCode' => $map['ClientTestCode'] ?? null,
|
|
||||||
'ClientTestName' => $map['ClientTestName'] ?? null,
|
|
||||||
];
|
|
||||||
|
|
||||||
foreach ($flatDetail as $value) {
|
|
||||||
if ($value !== null && $value !== '') {
|
|
||||||
return [$flatDetail];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return [];
|
|
||||||
}
|
|
||||||
|
|
||||||
private function isAssoc(array $array): bool
|
|
||||||
{
|
|
||||||
if ($array === []) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return array_keys($array) !== range(0, count($array) - 1);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user