1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-22 19:44:02 +08:00
2022-01-13 11:01:06 +08:00

128 lines
2.1 KiB
PHP

<?php
/**
* @copyright Copyright (c) 2021 深圳市酷瓜软件有限公司
* @license https://opensource.org/licenses/GPL-2.0
* @link https://www.koogua.com
*/
namespace App\Models;
use Phalcon\Mvc\Model\Behavior\SoftDelete;
class Account extends Model
{
/**
* 主键编号
*
* @var int
*/
public $id = 0;
/**
* 邮箱
*
* @var string
*/
public $email = '';
/**
* 手机
*
* @var string
*/
public $phone = '';
/**
* 密码
*
* @var string
*/
public $password = '';
/**
* 密盐
*
* @var string
*/
public $salt = '';
/**
* 删除标识
*
* @var int
*/
public $deleted = 0;
/**
* 创建时间
*
* @var int
*/
public $create_time = 0;
/**
* 更新时间
*
* @var int
*/
public $update_time = 0;
public function getSource(): string
{
return 'kg_account';
}
public function initialize()
{
parent::initialize();
$this->addBehavior(
new SoftDelete([
'field' => 'deleted',
'value' => 1,
])
);
}
public function beforeCreate()
{
$this->create_time = time();
}
public function beforeUpdate()
{
$this->update_time = time();
}
public function afterCreate()
{
$user = new User();
$user->id = $this->id;
$user->name = "user:{$this->id}";
if ($user->create() === false) {
throw new \RuntimeException('Create User Failed');
}
$userBalance = new UserBalance();
$userBalance->user_id = $user->id;
if ($userBalance->create() === false) {
throw new \RuntimeException('Create User Balance Failed');
}
$imUser = new ImUser();
$imUser->id = $user->id;
$imUser->name = $user->name;
if ($imUser->create() === false) {
throw new \RuntimeException('Create Im User Failed');
}
}
}