mirror of
https://github.com/JGH0/Todo-App-Backend.git
synced 2026-06-03 13:28:47 +02:00
- BaseController: paginatedResponse() helper with meta (page/perPage/total/lastPage/hasMore), getSortParams(), getFilterParams(), encodeJwt()/decodeJwt(), logActivity() helper, validateWithModel() - TodoController: paginated/sortable/filterable index, model-based validation, boolean conversion on write, activity logging - CategoryController: same pagination/sort/filter patterns + duplicate-name check (409) - ProjectController: paginated index + activity logging - RecurringTaskController: paginated/sortable/filterable index + junction-table category linking - AuthController: JWT register/login/refresh endpoints (firebase/php-jwt v7) - Routes: JWT routes added as public endpoints - Models: all have proper validationRules with exact error messages (field-level, user-facing) - ApiAuthFilter: scoped API key auth + UserThemeController generateUuid visibility fix - composer.json: add firebase/php-jwt ^7.0
111 lines
2.9 KiB
PHP
111 lines
2.9 KiB
PHP
<?php
|
|
|
|
namespace App\Controllers\Api\V1;
|
|
|
|
use App\Controllers\Api\BaseController;
|
|
use App\Models\UserThemeModel;
|
|
|
|
class UserThemeController extends BaseController
|
|
{
|
|
protected $userThemeModel;
|
|
|
|
public function __construct()
|
|
{
|
|
$this->userThemeModel = new UserThemeModel();
|
|
}
|
|
|
|
/**
|
|
* Get all themes for the authenticated user
|
|
* GET /api/v1/user/themes
|
|
*/
|
|
public function index()
|
|
{
|
|
$userId = $this->getUserId();
|
|
$themes = $this->userThemeModel->getByUser($userId);
|
|
|
|
return $this->successResponse($themes, 'User themes retrieved successfully');
|
|
}
|
|
|
|
/**
|
|
* Create a new user theme
|
|
* POST /api/v1/user/themes
|
|
*/
|
|
public function create()
|
|
{
|
|
$userId = $this->getUserId();
|
|
$json = $this->request->getJSON(true);
|
|
|
|
$rules = [
|
|
'theme_id' => 'required',
|
|
];
|
|
|
|
if (!$this->validateRequest($rules)) {
|
|
return;
|
|
}
|
|
|
|
$data = [
|
|
'id' => $this->generateUuid(),
|
|
'user_id' => $userId,
|
|
'theme_id' => $json['theme_id'],
|
|
'is_active' => $json['is_active'] ?? false,
|
|
'custom_settings' => $json['custom_settings'] ? json_encode($json['custom_settings']) : null,
|
|
];
|
|
|
|
$this->userThemeModel->insert($data);
|
|
$theme = $this->userThemeModel->find($data['id']);
|
|
|
|
return $this->successResponse($theme, 'User theme created successfully', 201);
|
|
}
|
|
|
|
/**
|
|
* Update a user theme
|
|
* PUT /api/v1/user/themes/{id}
|
|
*/
|
|
public function update($id = null)
|
|
{
|
|
$userId = $this->getUserId();
|
|
$theme = $this->userThemeModel->where('id', $id)->where('user_id', $userId)->first();
|
|
|
|
if (!$theme) {
|
|
return $this->errorResponse('User theme not found', 404);
|
|
}
|
|
|
|
$json = $this->request->getJSON(true);
|
|
$allowedFields = ['is_active', 'custom_settings'];
|
|
$updateData = array_intersect_key($json, array_flip($allowedFields));
|
|
|
|
if (isset($updateData['custom_settings'])) {
|
|
$updateData['custom_settings'] = json_encode($updateData['custom_settings']);
|
|
}
|
|
|
|
if (empty($updateData)) {
|
|
return $this->errorResponse('No valid fields to update');
|
|
}
|
|
|
|
$this->userThemeModel->update($id, $updateData);
|
|
$theme = $this->userThemeModel->find($id);
|
|
|
|
return $this->successResponse($theme, 'User theme updated successfully');
|
|
}
|
|
|
|
/**
|
|
* Delete a user theme
|
|
* DELETE /api/v1/user/themes/{id}
|
|
*/
|
|
public function delete($id = null)
|
|
{
|
|
$userId = $this->getUserId();
|
|
$theme = $this->userThemeModel->where('id', $id)->where('user_id', $userId)->first();
|
|
|
|
if (!$theme) {
|
|
return $this->errorResponse('User theme not found', 404);
|
|
}
|
|
|
|
$this->userThemeModel->delete($id);
|
|
|
|
return $this->successResponse(null, 'User theme deleted successfully');
|
|
}
|
|
|
|
|
|
}
|