|
@@ -1,4 +1,4 @@
|
|
|
-<?php namespace Service\Src;
|
|
|
+<?php namespace Buy\Src;
|
|
|
|
|
|
use Dever;
|
|
|
|
|
@@ -18,8 +18,6 @@ class Base
|
|
|
$this->cate = $this->getConfig('cate', 1);
|
|
|
# 渠道
|
|
|
$this->source = $this->getConfig('source', 1);
|
|
|
- # 类型 1为直接购买 2为购买兑换码
|
|
|
- $this->type = $this->getConfig('type', 1);
|
|
|
# 销售商
|
|
|
$this->seller = $this->getConfig('seller', 1);
|
|
|
|
|
@@ -48,8 +46,6 @@ class Base
|
|
|
$this->cate = Dever::input('cate', 1);
|
|
|
# 渠道
|
|
|
$this->source = Dever::input('source', 1);
|
|
|
- # 类型 1为直接购买 2为购买兑换码
|
|
|
- $this->type = Dever::input('type', 1);
|
|
|
# 销售商
|
|
|
$this->seller = Dever::input('seller', 1);
|
|
|
|
|
@@ -69,35 +65,42 @@ class Base
|
|
|
# 获取基本配置
|
|
|
public function config()
|
|
|
{
|
|
|
- $cate = Dever::db('journal/cate')->one($this->cate);
|
|
|
+ $key = 'buy_config_' . $this->cate . '_' . $this->account . '_' . $this->source;
|
|
|
|
|
|
- $cate['login_title'] = '登录后才可以使用' . $cate['name'] . '服务';
|
|
|
+ $cate = Dever::cache($key);
|
|
|
|
|
|
- $cate['bglogo'] = 'background-image:url('.$cate['logo'].');';
|
|
|
+ if (!$cate) {
|
|
|
+ $cate = Dever::db('journal/cate')->one($this->cate);
|
|
|
|
|
|
- $url = urlencode($this->url('list_code'));
|
|
|
- $cate['login'] = 'location.href=\'' . Dever::url('request.auth?account='.$this->account.'&source='.$this->source.'&refer=' . $url, 'oauth') . '\'';
|
|
|
+ $cate['login_title'] = '<span>授权后才可以使用' . $cate['name'] . '服务<br>感谢您的支持</span>';
|
|
|
|
|
|
- $info = Dever::db('journal/info')->getOne($cate['journal_id']);
|
|
|
+ $cate['bglogo'] = 'background-image:url('.$cate['logo'].');';
|
|
|
|
|
|
- if ($info && $info['pic_gd']) {
|
|
|
- $cate['cover'] = $info['pic_gd'];
|
|
|
- }
|
|
|
+ $cate['logotxt'] = '<img src="'.$cate['logo'].'" />' . $cate['name'];
|
|
|
+
|
|
|
+ $url = urlencode($this->url('list_code'));
|
|
|
+ $cate['login'] = 'location.href=\'' . Dever::url('request.auth?account='.$this->account.'&source='.$this->source.'&refer=' . $url, 'oauth') . '\'';
|
|
|
+
|
|
|
+ $info = Dever::db('journal/info')->getOne($cate['journal_id']);
|
|
|
+
|
|
|
+ if ($info && $info['pic_gd']) {
|
|
|
+ $cate['cover'] = $info['pic_gd'];
|
|
|
+ }
|
|
|
|
|
|
- $cate['list_link'] = $this->url('list_code');
|
|
|
- $cate['my_link'] = $this->url('my_code');
|
|
|
+ $cate['list_link'] = $this->url('list_code');
|
|
|
+ $cate['my_link'] = $this->url('my_code');
|
|
|
+
|
|
|
+ Dever::cache($key, $cate);
|
|
|
+ }
|
|
|
+
|
|
|
return $cate;
|
|
|
}
|
|
|
|
|
|
# 生成url
|
|
|
- protected function url($uri, $param = array(), $project = 'service')
|
|
|
+ protected function url($uri, $param = array(), $project = 'buy')
|
|
|
{
|
|
|
- if ($uri == 'list' && $this->type == 2) {
|
|
|
- $uri = 'list_code';
|
|
|
- }
|
|
|
$send['cate'] = $this->cate;
|
|
|
$send['source'] = $this->source;
|
|
|
- $send['type'] = $this->type;
|
|
|
$send['seller'] = $this->seller;
|
|
|
$param['p'] = Dever::encode(Dever::json_encode($send), $this->key);
|
|
|
if ($this->signature) {
|
|
@@ -112,7 +115,7 @@ class Base
|
|
|
return $url;
|
|
|
}
|
|
|
|
|
|
- protected function location($uri, $param = array(), $project = 'service')
|
|
|
+ protected function location($uri, $param = array(), $project = 'buy')
|
|
|
{
|
|
|
return Dever::location($this->url($uri, $param, $project));
|
|
|
}
|