|
|
|
<?php
|
|
|
|
// +----------------------------------------------------------------------
|
|
|
|
// | 萤火商城系统 [ 致力于通过产品和服务,帮助商家高效化开拓市场 ]
|
|
|
|
// +----------------------------------------------------------------------
|
|
|
|
// | Copyright (c) 2017~2023 https://www.yiovo.com All rights reserved.
|
|
|
|
// +----------------------------------------------------------------------
|
|
|
|
// | Licensed 这不是一个自由软件,不允许对程序代码以任何形式任何目的的再发行
|
|
|
|
// +----------------------------------------------------------------------
|
|
|
|
// | Author: 萤火科技 <admin@yiovo.com>
|
|
|
|
// +----------------------------------------------------------------------
|
|
|
|
declare (strict_types=1);
|
|
|
|
|
|
|
|
namespace app\admin\model;
|
|
|
|
|
|
|
|
use app\admin\model\Page as PageModel;
|
|
|
|
use app\admin\model\store\User as StoreUserModel;
|
|
|
|
use app\admin\model\user\User;
|
|
|
|
use app\common\model\Store as StoreModel;
|
|
|
|
use app\common\model\User as UserModel;
|
|
|
|
use think\facade\Db;
|
|
|
|
use app\store\model\Category as CategoryModel;
|
|
|
|
use app\common\model\UploadFile;
|
|
|
|
/**
|
|
|
|
* 商家记录表模型
|
|
|
|
* Class Store
|
|
|
|
* @package app\admin\model
|
|
|
|
*/
|
|
|
|
class Store extends StoreModel
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* 获取列表数据
|
|
|
|
* @param bool $isRecycle
|
|
|
|
* @return \think\Paginator
|
|
|
|
* @throws \think\db\exception\DbException
|
|
|
|
*/
|
|
|
|
public function getList(bool $isRecycle = false): \think\Paginator
|
|
|
|
{
|
|
|
|
return $this->where('is_recycle', '=', (int)$isRecycle)
|
|
|
|
->where('is_delete', '=', 0)
|
|
|
|
->order(['sort' => 'asc', 'create_time' => 'desc'])
|
|
|
|
->paginate(15);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 新增记录
|
|
|
|
* @param array $data
|
|
|
|
* @return bool|mixed
|
|
|
|
*/
|
|
|
|
public function add(array $data)
|
|
|
|
{
|
|
|
|
if ($data['password'] !== $data['password_confirm']) {
|
|
|
|
$this->error = '确认密码不正确';
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (StoreUserModel::checkExist($data['user_name'])) {
|
|
|
|
$this->error = '商家用户名已存在';
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return $this->transaction(function () use ($data) {
|
|
|
|
// 添加小程序记录
|
|
|
|
$data['is_recycle'] = 0;
|
|
|
|
if ($status = $this->save($data)) {
|
|
|
|
// 新增商家用户信息
|
|
|
|
(new StoreUserModel)->add((int)$this['store_id'], $data);
|
|
|
|
// 新增默认首页数据
|
|
|
|
(new PageModel)->insertDefault((int)$this['store_id']);
|
|
|
|
//注册用户
|
|
|
|
$user_id = (new User())->register($data, $this['store_id']);
|
|
|
|
if ($user_id) {
|
|
|
|
(new StoreUserModel)->where(['store_id' => $this['store_id']])->save(['user_id' => $user_id]);
|
|
|
|
}
|
|
|
|
$this->copyCategory((int)$this['store_id']);
|
|
|
|
}
|
|
|
|
return $status;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
public function copyCategory(int $new_store_id){
|
|
|
|
$store_id = 0;
|
|
|
|
$model = new CategoryModel;
|
|
|
|
$list = $model->getList(['store_id' =>$store_id]);
|
|
|
|
if (!$list) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
foreach ($list as $value) {
|
|
|
|
$value = $value->toArray();
|
|
|
|
$value['store_id'] = $new_store_id;
|
|
|
|
$value['create_time'] = time();
|
|
|
|
$value['update_time'] = time();
|
|
|
|
$value['image_id'] = $value['image_id'] ? $this->copyImage($value['image_id'], $new_store_id) : 0;
|
|
|
|
$value['rank_image_id'] = $value['rank_image_id'] ? $this->copyImage($value['rank_image_id'], $new_store_id) : 0;
|
|
|
|
$temp = $value;
|
|
|
|
unset($temp['children']);
|
|
|
|
unset($temp['rankimage']);
|
|
|
|
unset($temp['image']);
|
|
|
|
unset($temp['category_id']);
|
|
|
|
|
|
|
|
$firstid = Db::table('yoshop_category')->insertGetId($temp);
|
|
|
|
|
|
|
|
|
|
|
|
if (!isset($value['children']) || !$value['children']) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
foreach ($value['children'] as $value1) {
|
|
|
|
$value1 = $value1->toArray();
|
|
|
|
$value1['parent_id'] = $firstid;
|
|
|
|
$value1['store_id'] = $new_store_id;
|
|
|
|
$value1['create_time'] = time();
|
|
|
|
$value1['update_time'] = time();
|
|
|
|
$value1['image_id'] = $value1['image_id'] ? $this->copyImage($value1['image_id'], $new_store_id) : 0;
|
|
|
|
$value1['rank_image_id'] = $value1['rank_image_id'] ? $this->copyImage($value1['rank_image_id'], $new_store_id) : 0;
|
|
|
|
$temp1 = $value1;
|
|
|
|
unset($temp1['children']);
|
|
|
|
unset($temp1['image']);
|
|
|
|
unset($temp1['rankimage']);
|
|
|
|
unset($temp1['category_id']);
|
|
|
|
|
|
|
|
$secondid = Db::table('yoshop_category')->insertGetId($temp1);
|
|
|
|
if (!isset($value1['children']) || !$value1['children']) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
foreach ($value1['children'] as $value2) {
|
|
|
|
$value2 = $value2->toArray();
|
|
|
|
$value2['parent_id'] = $secondid;
|
|
|
|
$value2['store_id'] = $new_store_id;
|
|
|
|
$value2['create_time'] = time();
|
|
|
|
$value2['update_time'] = time();
|
|
|
|
$value2['image_id'] = $value2['image_id'] ? $this->copyImage($value2['image_id'], $new_store_id) : 0;
|
|
|
|
$value2['rank_image_id'] = $value2['rank_image_id'] ? $this->copyImage($value2['rank_image_id'], $new_store_id) : 0;
|
|
|
|
$temp2 = $value2;
|
|
|
|
unset($temp2['children']);
|
|
|
|
unset($temp2['image']);
|
|
|
|
unset($temp2['rankimage']);
|
|
|
|
unset($temp2['category_id']);
|
|
|
|
|
|
|
|
Db::table('yoshop_category')->insertGetId($temp2);
|
|
|
|
if (!isset($value2['children']) || !$value2['children']) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
foreach ($value2['children'] as $value3) {
|
|
|
|
$value3 = $value3->toArray();
|
|
|
|
$value3['parent_id'] = $secondid;
|
|
|
|
$value3['store_id'] = $new_store_id;
|
|
|
|
$value3['create_time'] = time();
|
|
|
|
$value3['update_time'] = time();
|
|
|
|
$value3['image_id'] = $value3['image_id'] ? $this->copyImage($value3['image_id'], $new_store_id) : 0;
|
|
|
|
$value3['rank_image_id'] = $value3['rank_image_id'] ? $this->copyImage($value3['rank_image_id'], $new_store_id) : 0;
|
|
|
|
$temp3 = $value3;
|
|
|
|
unset($temp3['children']);
|
|
|
|
unset($temp3['image']);
|
|
|
|
unset($temp3['rankimage']);
|
|
|
|
unset($temp3['category_id']);
|
|
|
|
|
|
|
|
Db::table('yoshop_category')->insertGetId($temp3);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function copyImage($image_id, $store_id){
|
|
|
|
$upload_file = DB::table("yoshop_upload_file")->where('file_id', $image_id)->find();
|
|
|
|
if (!$upload_file) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
$upload_file['store_id'] = $store_id;
|
|
|
|
$upload_file['create_time'] = time();
|
|
|
|
unset($upload_file['file_id']);
|
|
|
|
$new_image_id = DB::table("yoshop_upload_file")->insertGetId($upload_file);
|
|
|
|
return $new_image_id;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* 移入移出回收站
|
|
|
|
* @param bool $isRecycle
|
|
|
|
* @return bool|false
|
|
|
|
*/
|
|
|
|
public function recycle(bool $isRecycle = true): bool
|
|
|
|
{
|
|
|
|
return $this->save(['is_recycle' => (int)$isRecycle]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 软删除
|
|
|
|
* @return false|int
|
|
|
|
*/
|
|
|
|
public function setDelete()
|
|
|
|
{
|
|
|
|
return $this->transaction(function () {
|
|
|
|
// 删除商家用户信息
|
|
|
|
StoreUserModel::setDelete($this['store_id']);
|
|
|
|
// 设置当前商城为已删除
|
|
|
|
return $this->save(['is_delete' => 1]);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
public function auditStore(array $data)
|
|
|
|
{
|
|
|
|
$storeInfo = $this->toArray();
|
|
|
|
if ($storeInfo['status'] != 0) {
|
|
|
|
$this->error = '状态异常,请勿重复操作';
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$user = UserModel::where(['user_id' => $storeInfo['user_id']])->find();
|
|
|
|
if (empty($user) || empty($user->mobile)) {
|
|
|
|
$this->error = '用户不存在,或未绑定手机';
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (StoreUserModel::checkExist($user->mobile)) {
|
|
|
|
$this->error = '商家用户名已存在';
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if ($data['status'] == 1) {
|
|
|
|
$data['user_id'] = $storeInfo['user_id'];
|
|
|
|
$data['mobile'] = $user->mobile;
|
|
|
|
return $this->transaction(function () use ($data) {
|
|
|
|
// 添加小程序记录
|
|
|
|
$update['is_recycle'] = 0;
|
|
|
|
$update['status'] = 1;
|
|
|
|
if ($status = $this->save($update)) {
|
|
|
|
// 新增商家用户信息
|
|
|
|
$storeUser = [
|
|
|
|
'user_name' => $data['mobile'],
|
|
|
|
'password' => $data['mobile'],
|
|
|
|
];
|
|
|
|
(new StoreUserModel)->add((int)$this['store_id'], $storeUser);
|
|
|
|
// 新增默认首页数据
|
|
|
|
(new PageModel)->insertDefault((int)$this['store_id']);
|
|
|
|
//指定用户类型更改为商家
|
|
|
|
(new UserModel)->where(['user_id' => $data['user_id']])->update(['user_type' => 40]);
|
|
|
|
}
|
|
|
|
return $status;
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
return $this->save(['status' => 2]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|