|
| 1 | +<?php |
| 2 | +declare(strict_types=1); |
| 3 | + |
| 4 | +namespace Canvas\Models; |
| 5 | + |
| 6 | +use Phalcon\Di; |
| 7 | + |
| 8 | +class NotificationsUnsubscribe extends AbstractModel |
| 9 | +{ |
| 10 | + public ?int $users_id = 0; |
| 11 | + public ?int $companies_id = 0; |
| 12 | + public ?int $apps_id = 0; |
| 13 | + public ?int $system_modules_id = 0; |
| 14 | + public ?int $notification_type_id = 0; |
| 15 | + public ?string $email = null; |
| 16 | + |
| 17 | + /** |
| 18 | + * Initialize method for model. |
| 19 | + */ |
| 20 | + public function initialize() |
| 21 | + { |
| 22 | + $this->setSource('notifications_unsubscribe'); |
| 23 | + |
| 24 | + $this->belongsTo( |
| 25 | + 'users_id', |
| 26 | + 'Canvas\Models\Users', |
| 27 | + 'id', |
| 28 | + ['alias' => 'user'] |
| 29 | + ); |
| 30 | + |
| 31 | + $this->belongsTo( |
| 32 | + 'notification_type_id', |
| 33 | + 'Canvas\Models\NotificationType', |
| 34 | + 'id', |
| 35 | + ['alias' => 'type'] |
| 36 | + ); |
| 37 | + } |
| 38 | + |
| 39 | + /** |
| 40 | + * get NotificationsUnsubscribe by NotificationType |
| 41 | + * @param Users $user |
| 42 | + * @param int $notificationTypeId |
| 43 | + * @return NotificationsUnsubscribe |
| 44 | + */ |
| 45 | + public static function getByNotificationType(Users $user, int $notificationTypeId) : ?NotificationsUnsubscribe |
| 46 | + { |
| 47 | + return NotificationsUnsubscribe::findFirst([ |
| 48 | + 'conditions' => 'users_id = ?0 AND companies_id = ?1 AND apps_id = ?2 AND \notification_type_id = ?3 AND is_deleted = 0', |
| 49 | + 'bind' => [ |
| 50 | + 0 => $user->getId(), |
| 51 | + 1 => $user->currentCompanyId(), |
| 52 | + 2 => Di::getDefault()->getApp()->getId(), |
| 53 | + 3 => $notificationTypeId |
| 54 | + ] |
| 55 | + ]); |
| 56 | + } |
| 57 | + |
| 58 | + /** |
| 59 | + * Verify that the user is unsubscribed |
| 60 | + * @param Users $user |
| 61 | + * @param int $notificationType |
| 62 | + * @return bool |
| 63 | + */ |
| 64 | + public static function isUnsubscribe(Users $user, int $notificationTypeId) : bool |
| 65 | + { |
| 66 | + //-1 means it is out of all lists |
| 67 | + $userNotification = NotificationsUnsubscribe::getByNotificationType($user, -1); |
| 68 | + |
| 69 | + if (!$userNotification) { |
| 70 | + $userNotification = NotificationsUnsubscribe::getByNotificationType($user, $notificationTypeId); |
| 71 | + } |
| 72 | + |
| 73 | + return $userNotification ? true : false; |
| 74 | + } |
| 75 | + |
| 76 | + /** |
| 77 | + * unsubscribe user for NotificationType |
| 78 | + * @param Users $user |
| 79 | + * @param int $notificationTypeId |
| 80 | + * @param int $systemModulesId |
| 81 | + * @return NotificationsUnsubscribe |
| 82 | + */ |
| 83 | + public static function unsubscribe(Users $user, int $notificationTypeId, int $systemModulesId) : NotificationsUnsubscribe |
| 84 | + { |
| 85 | + $userNotification = NotificationsUnsubscribe::getByNotificationType($user, $notificationTypeId); |
| 86 | + |
| 87 | + if (!$userNotification) { |
| 88 | + $userNotification = new NotificationsUnsubscribe(); |
| 89 | + $userNotification->users_id = $user->getId(); |
| 90 | + $userNotification->companies_id = $user->currentCompanyId(); |
| 91 | + $userNotification->apps_id = Di::getDefault()->getApp()->getId(); |
| 92 | + $userNotification->notification_type_id = $notificationTypeId; |
| 93 | + $userNotification->system_modules_id = $systemModulesId; |
| 94 | + $userNotification->email = $user->getEmail(); |
| 95 | + } |
| 96 | + |
| 97 | + $userNotification->is_deleted = 0; |
| 98 | + $userNotification->saveOrFail(); |
| 99 | + return $userNotification; |
| 100 | + } |
| 101 | +} |
0 commit comments