You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

176 lines
6.0 KiB
PHTML

5 years ago
<?php
namespace Home\Controller;
use Think\Controller;
use Think\Think;
5 years ago
use Base\Service\PromoteService;
use Base\Facade\Request;
use Base\Service\ApplyService;
use Base\Service\PackageDownloadLogService;
5 years ago
/**
5 years ago
* @author elf<360197197@qq.com>
5 years ago
*/
5 years ago
5 years ago
class PackageController extends Controller
{
protected function _initialize()
{
C(api('Config/lists'));
}
5 years ago
public function downloadError($message)
5 years ago
{
5 years ago
$this->assign('message', $message);
$this->display('error');
5 years ago
}
5 years ago
public function download()
5 years ago
{
5 years ago
$code = I('code', '');
4 years ago
$force = I('force', '');
5 years ago
$gameId = I('game_id', 0);
$promoteId = I('promote_id', 0);
5 years ago
if ($code == '' && ($gameId == 0 || $promoteId == 0)) {
5 years ago
$this->redirect("package/downloadError", ['message' => '访问错误']);
5 years ago
}
5 years ago
$identifier = $code != '' ? $code : 'game_id/' . $gameId . '/promote_id/' . $promoteId;
$isBlack = M('device_bans', 'tab_')->where(['type' => 4, 'tag' => ['like', '%' . $identifier . '%']])->limit(1)->getField('id');
if ($isBlack) {
5 years ago
$this->redirect("package/downloadError", ['message' => '该链接已被禁']);
5 years ago
}
$applyService = new ApplyService();
5 years ago
if ($code != '') {
$data = $applyService->decodeApplyCode($code);
$result = $applyService->checkApplyCode($data, ApplyService::ENCRYPT_TYPE_DOWNLOAD);
if (!$result['status']) {
$this->error($result['message']);
5 years ago
}
5 years ago
$gameId = $data['game_id'];
$promoteId = $data['promote_id'];
}
$promote = M('promote', 'tab_')->field(['id', 'account', 'parent_id', 'chain', 'level'])->where(['id' => $promoteId])->find();
if (!$promote) {
$this->error('该链接已失效');
}
4 years ago
if (in_array($promote['account'], ['yl3xiaojian', 'huangshengchang'])) {
$this->error('链接无效');
}
$promoteService = new PromoteService();
if (!$promoteService->checkPromoteLimitRule($promote, $gameId)) {
$this->error('链接已失效');
}
4 years ago
$sdkVersion = 0;
4 years ago
if (Request::isMobile() || Request::isTablet() || $force == 'ios' || $force == 'android') {
4 years ago
if (Request::isAndroid() || $force == 'android') {
$sdkVersion = 1;
} elseif (Request::isIOS() || Request::isIPadOS() || $force == 'ios') {
$sdkVersion = 2;
5 years ago
}
}
5 years ago
4 years ago
$gameColumns = ['id', 'game_name', 'sdk_version', 'apply_auth', 'relation_game_id'];
$game = M('game','tab_')->field($gameColumns)->where(['id' => $gameId])->find();
if ($sdkVersion > 0 && $game && $game['sdk_version'] != $sdkVersion) {
$game = M('game','tab_')->field($gameColumns)->where(['sdk_version' => $sdkVersion, 'relation_game_id' => $game['relation_game_id']])->find();
}
5 years ago
4 years ago
if (!$game) {
$this->error('游戏不存在');
}
4 years ago
$map = [];
$map['status'] = 1;
$map['enable_status'] = 1;
4 years ago
$map['game_id'] = $game['id'];
4 years ago
$map['promote_id'] = $promoteId;
$apply = M('apply','tab_')->where($map)->find();
if (!$apply) {
$this->redirect("package/downloadError", ['message' => '该链接已经停止使用']);
}
4 years ago
$packageUrl = $game['sdk_version'] == 1 ? $apply['pack_url'] : $apply['plist_url'];
4 years ago
$url = $applyService->getLandingPageUrl($apply, $code);
M('game','tab_')->where(['id' => $game['id']])->setInc('dow_num');
$log['game_id'] = $game['id'];
$log['game_name'] = $game['game_name'];
$log['action'] = $url;
$log['type'] = 6;
$log['ip'] = get_client_ip();
$log['create_time'] = time();
$log['remarks'] = '记录成功';
M('user_action_log', 'tab_')->data($log)->add();
4 years ago
$downloadDomain = $applyService->getDownloadDomain();
4 years ago
if ($game['sdk_version'] == 2) {
4 years ago
/* if (!Request::getMobileDetect()->is('Safari')) {
4 years ago
return $this->display('open_in_safari');
4 years ago
} */
$packageDownloadLogService = new PackageDownloadLogService();
$packageDownloadLogService->add([
'user_id' => 0,
4 years ago
'game_id' => $game['id'],
'promote_id' => $promoteId,
'type' => 1,
]);
5 years ago
$plistUrl = substr($packageUrl, 1, strlen($packageUrl));
header("HTTP/1.1 303 See Other");
4 years ago
header("Location: "."itms-services://?action=download-manifest&url=" . $downloadDomain . '/' . ltrim($plistUrl, '/'));
5 years ago
} else {
5 years ago
$this->gotoPkgUrl($packageUrl);
5 years ago
}
}
5 years ago
private function gotoPkgUrl($packageUrl)
5 years ago
{
4 years ago
$applyService = new ApplyService();
$downloadDomain = $applyService->getDownloadDomain();
if (preg_match("/http/", $packageUrl)) {
5 years ago
$url = str_replace('-internal', '', $packageUrl);
echo "<script>window.location.href='$url';</script>";
} elseif (preg_match("/clouddn/", $packageUrl)) {
$url = "http://".$packageUrl;
redirect($url);
} elseif (preg_match("/myqcloud/", $packageUrl)) {
redirect($packageUrl);
} elseif(preg_match("/bcebos/", $packageUrl)) {
redirect($packageUrl);
} else {
if (!file_exists($packageUrl)) {
$this->error('文件不存在哦,亲!');
}else{
4 years ago
redirect($downloadDomain . ltrim($packageUrl, '.'));
5 years ago
}
5 years ago
}
}
public function addDownloadLog()
{
5 years ago
$params = $_POST;
$packageDownloadLogService = new PackageDownloadLogService();
if ($packageDownloadLogService->add($params)) {
$this->ajaxReturn([
'status' => true,
'message' => '记录成功'
]);
} else {
$this->ajaxReturn([
'status' => false,
'message' => '系统异常'
]);
}
}
5 years ago
}