Accounts.php 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  1. <?php
  2. namespace app\models\entity;
  3. /**
  4. * This is the model class for table "accounts".
  5. *
  6. * @property int $id
  7. * @property string $name
  8. * @property int $cmdlevel
  9. * @property string $phone
  10. * @property string $password
  11. * @property string $login
  12. * @property string $email
  13. * @property string $skype
  14. * @property int $company_id
  15. * @property int $active_company
  16. * @property string $active_device_id
  17. * @property string $active_task_ids
  18. * @property string $created
  19. * @property string $jobtypes
  20. * @property string $last_seen_mobile
  21. * @property string $last_seen_web
  22. *
  23. * @property Companies $company
  24. * @property AccountsJobtypes[] $accountsJobtypes
  25. * @property string $uuid [char(36)]
  26. * @property string $last_push_message_sent [datetime]
  27. * @property string $employee_status [varchar(255)]
  28. * @property string $position [char(36)]
  29. * @property string $repair_site [char(36)]
  30. * @property string $hash [varchar(255)]
  31. * @property bool $basic_jobs_count [tinyint(3) unsigned]
  32. * @property int $shift_id [smallint(5)]
  33. * @property string $android_token_id [varchar(255)]
  34. * @property bool $overplan_mode [tinyint(3) unsigned]
  35. * @property string $last_action [datetime]
  36. * @property bool $quit_set [tinyint(4)]
  37. *
  38. * @property FaceFeature $faceFeature
  39. */
  40. class Accounts extends \yii\db\ActiveRecord
  41. {
  42. /**
  43. * {@inheritdoc}
  44. */
  45. public static function tableName()
  46. {
  47. return 'accounts_internal';
  48. }
  49. /**
  50. * {@inheritdoc}
  51. */
  52. public function rules()
  53. {
  54. return [
  55. [['name', 'cmdlevel', 'password', 'login', 'active_company', 'jobtypes'], 'required'],
  56. [['cmdlevel', 'company_id', 'active_company'], 'integer'],
  57. [['created', 'last_seen_mobile', 'last_seen_web'], 'safe'],
  58. [['name', 'phone', 'password', 'login', 'email', 'active_device_id', 'jobtypes'], 'string', 'max' => 255],
  59. [['skype'], 'string', 'max' => 32],
  60. //[['active_task_ids'], 'string', 'max' => 100],
  61. //[['login'], 'unique'],
  62. //[['name'], 'unique'],
  63. //[['company_id'], 'exist', 'skipOnError' => true, 'targetClass' => Companies::className(), 'targetAttribute' => ['company_id' => 'id']],
  64. ];
  65. }
  66. /**
  67. * {@inheritdoc}
  68. */
  69. public function attributeLabels()
  70. {
  71. return [
  72. 'id' => 'ID',
  73. 'name' => 'Name',
  74. 'cmdlevel' => 'Cmdlevel',
  75. 'phone' => 'Phone',
  76. 'password' => 'Password',
  77. 'login' => 'Login',
  78. 'email' => 'Email',
  79. 'skype' => 'Skype',
  80. 'company_id' => 'Company ID',
  81. 'active_company' => 'Active Company',
  82. 'active_device_id' => 'Active Device ID',
  83. 'active_task_ids' => 'Active Task Ids',
  84. 'created' => 'Created',
  85. 'jobtypes' => 'Jobtypes',
  86. 'last_seen_mobile' => 'Last Seen Mobile',
  87. 'last_seen_web' => 'Last Seen Web',
  88. ];
  89. }
  90. /**
  91. * @return \yii\db\ActiveQuery
  92. */
  93. public function getCompanies()
  94. {
  95. return $this->hasOne(Companies::className(), ['id' => 'company']);
  96. }
  97. /**
  98. * @return \yii\db\ActiveQuery
  99. */
  100. public function getAccountsJobtypes()
  101. {
  102. return $this->hasMany(AccountsJobtypes::className(), ['account_id' => 'id'])->orderBy(['priority' => SORT_ASC]);
  103. }
  104. public function getAccountsJobtypesPriority()
  105. {
  106. return $this->hasMany(AccountsJobtypes::className(), ['account_id' => 'id'])->where(['priority' => 0]);
  107. }
  108. /**
  109. * @return \yii\db\ActiveQuery
  110. */
  111. public function getJobtype()
  112. {
  113. return $this->hasMany(Jobtypes::class, ['id' => 'jobtype_id'])
  114. ->via('accountsJobtypes');
  115. }
  116. /**
  117. * @return \yii\db\ActiveQuery
  118. */
  119. public function getTasks()
  120. {
  121. return $this->hasMany(Tasks::class, ['assignees_arr' => 'id'])->andWhere(['<>','status', 5]);
  122. }
  123. public function isAdmin()
  124. {
  125. return $this->cmdlevel == 10;
  126. }
  127. public function getFaceFeature()
  128. {
  129. return $this->hasOne(FaceFeature::className(), ['id_account' => 'id']);
  130. }
  131. public function getFaceFeatureCurrent($id = null)
  132. {
  133. $row_last = (new \yii\db\Query())
  134. ->select(['id_account','face_feature','date'])
  135. ->from('face_feature')
  136. ->where(['id_account' => $id])
  137. ->orderBy(['id' => SORT_DESC])
  138. ->one();
  139. return $row_last;
  140. }
  141. /**
  142. * Возвращает массив ID должностей
  143. *
  144. * @return int[]
  145. */
  146. public function getPositionIds()
  147. {
  148. $positions = AccountsJobtypes::find()
  149. ->select('jobtype_id')
  150. ->where(['account_id' => $this->id])
  151. ->asArray()
  152. ->all()
  153. ;
  154. return array_column($positions, 'jobtype_id');
  155. }
  156. /**
  157. * Возвращает информацию по должностям
  158. *
  159. * @return array
  160. */
  161. public function getPositionsList()
  162. {
  163. $positionIds = $this->getPositionIds();
  164. $accountJobTypes = AccountsJobtypes::find()->all();
  165. $priorities = [];
  166. foreach ($accountJobTypes as $type) {
  167. $priorities[$type->jobtype_id] = $type->priority;
  168. }
  169. $positions = [];
  170. foreach (Jobtypes::findAll($positionIds) as $position) {
  171. $positions[] = [
  172. 'id' => $position->id,
  173. 'name' => $position->name,
  174. 'main' => $priorities[$position->id],
  175. ];
  176. }
  177. return $positions;
  178. }
  179. /**
  180. * Возвращает названия должностей
  181. *
  182. * @return string[]
  183. */
  184. public function getPositionsNames()
  185. {
  186. $positionIds = $this->getPositionIds();
  187. $positions = [];
  188. foreach (Jobtypes::findAll($positionIds) as $position) {
  189. $positions[] = $position->name;
  190. }
  191. return $positions;
  192. }
  193. /**
  194. * Проверяет онлайн ли пользователь в мобильном приложении
  195. *
  196. * @param $time
  197. * @return bool
  198. * @throws \Exception
  199. */
  200. public function isOnline(): bool
  201. {
  202. if (null == $this->last_seen_mobile) return false;
  203. $now = new \DateTime();
  204. $tenMin = new \DateInterval('PT10M');
  205. $now->sub($tenMin);
  206. return $now->format('Y-m-d H:i:s') <= $this->last_seen_mobile;
  207. }
  208. }