You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
zhishifufei_php/application/merchant/model/download/DataDownloadBuy.php

127 lines
5.0 KiB

9 months ago
<?php
// +----------------------------------------------------------------------
// | 天诚科技 [ 刘海东 17600099397赋能开发者,助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2020 https://www.tczxkj.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed 该系统并不是自由软件,未经许可不能去掉相关版权
// +----------------------------------------------------------------------
// | Author:甘肃天诚志信电子商务有限公司 刘海东 联系电话维系17600099397
// +----------------------------------------------------------------------
namespace app\merchant\model\download;
use traits\ModelTrait;
use basic\ModelBasic;
use app\merchant\model\system\Relation;
use app\merchant\model\download\DataDownload;
use app\merchant\model\order\DataDownloadOrder;
use app\merchant\model\special\Special;
use app\merchant\model\special\SpecialSource;
/**
* 获得资料 Model
*/
class DataDownloadBuy extends ModelBasic
{
use ModelTrait;
/**购买专题获得资料
* @param $order_id
* @param $uid
* @param $special_id
* @return bool
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
*/
public static function setDataDownload($order_id, $uid, $special_id, $type = 0)
{
if (!$uid || !$special_id) return false;
$special = Special::get($special_id);
if ($special['type'] == 5) {
$special_source = SpecialSource::getSpecialSource($special['id']);
if (!$special_source) return false;
foreach ($special_source as $k => $v) {
$task_special = Special::get($v['source_id']);
if (!$task_special) continue;
if ($task_special['is_show'] != 1) continue;
$data_ids = Relation::setWhere(4, $task_special['id'])->column('relation_id');
if (count($data_ids) <= 0) continue;
foreach ($data_ids as $ks => $value) {
self::setUserDataDownload($order_id, $value, $uid, $type);
}
}
} else {
$data_ids = Relation::setWhere(4, $special_id)->column('relation_id');
if (count($data_ids) <= 0) return false;
foreach ($data_ids as $kf => $value) {
self::setUserDataDownload($order_id, $value, $uid, $type);
}
}
}
/** 用户获得资料
* @param $order_id
* @param $data_id
* @param $uid
* @param $type
* @return bool|object
*/
public static function setUserDataDownload($order_id, $data_id, $uid, $type)
{
$add_time = time();
if (self::be(['uid' => $uid, 'data_id' => $data_id, 'type' => $type, 'is_del' => 0])) return false;
return self::set(compact('order_id', 'data_id', 'uid', 'type', 'add_time'));
}
/**删除专题时清除资料
* @param $order_id
* @param $uid
* @param $special_id
* @return bool
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
*/
public static function delDataDownload($order_id, $uid, $special_id, $type)
{
if (!$uid || !$special_id) return false;
$special = Special::get($special_id);
if ($special['type'] == SPECIAL_COLUMN) {
$special_source = SpecialSource::getSpecialSource($special['id']);
if (!$special_source) return false;
foreach ($special_source as $k => $v) {
$task_special = Special::get($v['source_id']);
if (!$task_special) continue;
if ($task_special['is_show'] != 1) continue;
$data_ids = Relation::setWhere(4, $task_special['id'])->column('relation_id');
if (count($data_ids) <= 0) continue;
foreach ($data_ids as $ks => $value) {
self::delUserDataDownload($order_id, $value, $uid, $type);
}
}
} else {
$data_ids = Relation::setWhere(4, $special_id)->column('relation_id');
if (count($data_ids) <= 0) return false;
foreach ($data_ids as $kf => $value) {
self::delUserDataDownload($order_id, $value, $uid, $type);
}
}
}
/** 清除资料
* @param $order_id
* @param $data_id
* @param $uid
* @param $type
* @return bool|object
*/
public static function delUserDataDownload($order_id, $data_id, $uid, $type)
{
if (!self::be(['order_id' => $order_id, 'uid' => $uid, 'data_id' => $data_id, 'type' => $type, 'is_del' => 0])) return false;
return self::where(['order_id' => $order_id, 'uid' => $uid, 'data_id' => $data_id, 'type' => $type, 'is_del' => 0])->update(['is_del' => 1]);
}
}