guild/common/services/ProfileService.php

109 lines
3.0 KiB
PHP
Raw Normal View History

<?php
namespace common\services;
use common\models\Manager;
use common\models\ManagerEmployee;
2022-03-21 14:56:21 +03:00
use common\models\UserCard;
use frontend\modules\api\models\ProfileSearchForm;
use Yii;
use yii\web\BadRequestHttpException;
class ProfileService
{
2022-03-21 14:56:21 +03:00
/**
* @throws BadRequestHttpException
*/
public static function getProfile($id, $request): ?array
{
$searchModel = new ProfileSearchForm();
$searchModel->attributes = $request;
if ($id) {
return $searchModel->byId();
}
return $searchModel->byParams();
}
/**
* @throws BadRequestHttpException
*/
public static function getProfileWithReportPermission($user_card_id): ?array
{
if (UserCard::find()->where(['id' => $user_card_id])->exists()) {
$searchModel = new ProfileSearchForm();
$searchModel->id = $user_card_id;
$profile = $searchModel->byId();
self::addPermission($profile, $user_card_id);
return $profile;
}
throw new BadRequestHttpException(json_encode('There is no user with this id'));
}
private static function addPermission(&$profile, $user_card_id)
{
$searcherCardID = self::getSearcherCardID(Yii::$app->user->getId());
if (self::checkReportPermission($user_card_id, $searcherCardID)) {
$profile += ['report_permission' => '1'];
} else {
$profile += ['report_permission' => '0'];
}
}
2022-03-21 14:56:21 +03:00
private static function getSearcherCardID($user_id): int
{
2022-03-21 14:56:21 +03:00
return UserCard::findOne(['id_user' => $user_id])->id;
}
2022-03-21 14:56:21 +03:00
private static function checkReportPermission($user_card_id, $searcherCardID): bool
{
2022-03-21 14:56:21 +03:00
if (self::isMyProfile($user_card_id, $searcherCardID)
or self::isMyEmployee($user_card_id, $searcherCardID)) {
return true;
}
return false;
}
2022-03-21 14:56:21 +03:00
private static function isMyProfile($user_card_id, $searcherCardID): bool
{
2022-03-21 14:56:21 +03:00
if ($user_card_id == $searcherCardID) {
return true;
}
return false;
}
2022-03-21 14:56:21 +03:00
private static function isMyEmployee($user_card_id, $searcherCardID): bool
{
2022-03-21 14:56:21 +03:00
if (!self::amIManager($searcherCardID)) {
return false;
}
if (self::isMyEmployer($user_card_id, $searcherCardID)) {
return true;
}
return false;
}
2022-03-21 14:56:21 +03:00
private static function amIManager($searcherCardID): bool
{
2022-03-21 14:56:21 +03:00
if (Manager::find()->where(['user_card_id' => $searcherCardID])->exists()) {
return true;
}
return false;
}
2022-03-21 14:56:21 +03:00
private static function isMyEmployer($user_card_id, $searcherCardID): bool
{
2022-03-21 14:56:21 +03:00
$manager = Manager::find()->where(['user_card_id' => $searcherCardID])->one();
$exist = ManagerEmployee::find()
2022-03-21 14:56:21 +03:00
->where(['manager_id' => $manager->id, 'user_card_id' => $user_card_id])
->exists();
if ($exist) {
return true;
}
return false;
}
}