Files
BarangaySystem/app/Models/User.php
Jonathan Sykes fbb7e3ff37
Some checks failed
tests / PHP 8.2 (swoole-5.1.6) (push) Has been cancelled
tests / PHP 8.3 (swoole-5.1.6) (push) Has been cancelled
tests / PHP 8.4 (swoole-6.0) (push) Has been cancelled
feat: implement barangay system phases 2-14
Complete adaptation from BukidBountyApp to Philippine barangay governance:

- Barangay models: Resident, Household, HouseholdMember, Blotter, BlotterHearing,
  DocumentRequest, RequestPayment, RequestType, BarangayProject, BarangayBudget
- Controllers: ResidentController, HouseholdController, BlotterController,
  BlotterHearingController, DocumentRequestController, RequestTypeController,
  ProjectController, BudgetController, QRPHController, AdminConsoleController,
  UserController, FileController, ChapterController, LoginController
- Vue pages: Home, ManageResidents, ResidentProfile, ManageHouseholds, ManageBlotters,
  BlotterDetail, RequestDocument, ManageDocumentRequests, DocumentRequestDetail,
  ManageRequestTypes, ManageProjects, BudgetLedger, AdminConsole
- Barangay roles: PunongBarangay, Kagawad, Secretary, Treasurer, SK, Tanod, BHW, Staff, Resident
- UserPermissions matrix rewritten with barangay-specific permission mappings
- VueRouteMap replaced with barangay SPA routes
- UserActions enum references corrected across all controllers
- Removed all market/cooperative/POS/subscription code and models
2026-06-07 03:09:09 +08:00

191 lines
4.7 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
declare(strict_types=1);
namespace App\Models;
use App\Enums\UserActions;
use App\Enums\UserTypes;
use App\Models\PersonalAccessToken;
use App\Support\HasApiTokens;
use Hypervel\Foundation\Auth\User as Authenticatable;
use Hypervel\Support\Collection;
class User extends Authenticatable
{
use HasApiTokens;
public ?PersonalAccessToken $accessToken = null;
protected ?string $table = 'users';
public bool $incrementing = true;
protected array $attributes = [
'active' => true,
];
protected array $hidden = [
'password',
'remember_token',
// add anything else you dont want exposed
];
/**
* The attributes that are mass assignable.
*/
protected array $fillable = [
'name',
'fullname',
'hashkey',
'mobile_number',
'landline',
'nickname',
'username',
'email',
'email_verified_at',
'mobile_verified_at',
'password',
'acct_type',
'total_balance',
'total_credit',
'created_by',
'updated_by',
'active',
'parentuid',
'targetuids',
'notes',
'exec_command',
'settings',
'multiple_logins',
'referralcode',
'photourl',
'logs',
'cart',
'details',
'additional_roles',
'denied_roles',
];
protected array $casts = [
'email_verified_at' => 'datetime',
'mobile_verified_at' => 'datetime',
'targetuids' => 'array',
'settings' => 'array',
'photourl' => 'array',
'logs' => 'array',
'cart' => 'array',
'multiple_logins' => 'boolean',
'active' => 'boolean',
'details' => 'array',
'acct_type' => UserTypes::class ,
'additional_roles' => \App\Casts\UserActionsArrayCast::class ,
'denied_roles' => \App\Casts\UserActionsArrayCast::class ,
];
public function resident()
{
return $this->hasOne(\App\Models\Barangay\Resident::class, 'user_id');
}
public function creator()
{
return $this->belongsTo(User::class , 'created_by');
}
public function updater()
{
return $this->belongsTo(User::class , 'updated_by');
}
public function parent()
{
return $this->belongsTo(User::class , 'parentuid');
}
public function getAllDescendants(): Collection
{
$descendants = collect();
$children = self::where('parentuid', $this->id)->get();
foreach ($children as $child) {
$descendants->push($child);
// Recursively get each child's descendants
$descendants = $descendants->merge($child->getAllDescendants());
}
return $descendants;
}
public function children()
{
return $this->hasMany(User::class , 'parentuid');
}
/**
* Check if the user has a specific role.
*/
public function hasRole(UserTypes|string|array $role): bool
{
if (is_array($role)) {
foreach ($role as $r) {
if ($this->hasRole($r)) {
return true;
}
}
return false;
}
$roleValue = $role instanceof UserTypes ? $role->value : $role;
return $this->acct_type->value === $roleValue;
}
/**
* Convenience methods for common roles.
*/
public function isUltimate(): bool
{
return $this->acct_type === UserTypes::SUPER_ADMIN;
}
public function isPunongBarangay(): bool
{
return $this->acct_type === UserTypes::PUNONG_BARANGAY;
}
public function isBarangayStaff(): bool
{
return in_array($this->acct_type, [
UserTypes::PUNONG_BARANGAY, UserTypes::KAGAWAD, UserTypes::SECRETARY,
UserTypes::TREASURER, UserTypes::SK_CHAIRPERSON, UserTypes::SK_COUNCILOR,
UserTypes::TANOD, UserTypes::BHW, UserTypes::DAYCARE_WORKER, UserTypes::STAFF,
]);
}
/**
* Get cooperatives from settings.
*/
public function getCooperativesAttribute(): array
{
return $this->settings['cooperatives'] ?? [];
}
/**
* Check if the user has joined a specific cooperative via settings.
*/
public function hasJoinedCooperative(string $cooperativeHash): bool
{
return in_array($cooperativeHash, $this->cooperatives);
}
/**
* Check if the user has a specific permission (action).
*/
public function canDo(\App\Enums\UserActions $action, string|int|UserTypes $target = null): bool
{
return \App\Http\Controllers\Helpers\Permissions\UserPermissions::isActionPermitted($target ?? $this->acct_type, $action);
}
}