Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
YOHOBUYWAP
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
hf
10 years ago
Commit
84ad40c8538b20416beff757295abcd5dc1d4953
1 parent
ce14b675
do boys,girls,kids,lifestyle page recom maylike product
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
167 additions
and
34 deletions
library/Action/AbstractAction.php
library/Api/Yohobuy.php
library/LibModels/Wap/Product/RecomData.php
yohobuy/m.yohobuy.com/application/Bootstrap.php
yohobuy/m.yohobuy.com/application/modules/Product/controllers/Recom.php
library/Action/AbstractAction.php
View file @
84ad40c
...
...
@@ -57,16 +57,6 @@ class AbstractAction extends Controller_Abstract
{
return
$this
->
_request
->
getPost
(
$key
,
$default
);
}
/**
* 关闭模板自动渲染
*
* @return void
*/
protected
function
disableView
()
{
Dispatcher
::
getInstance
()
->
autoRender
(
false
);
}
/**
* 使用Memcache缓存
...
...
@@ -83,5 +73,54 @@ class AbstractAction extends Controller_Abstract
return
Cache
::
memcached
(
$node
,
$childNode
);
}
}
/**
* 关闭模板自动渲染
*
* @return void
*/
protected
function
disableView
()
{
Dispatcher
::
getInstance
()
->
autoRender
(
false
);
}
/**
* 输出JSON数据到浏览器
*
* @return void
*/
protected
function
echoJson
(
$json
)
{
headers_sent
()
||
header
(
'Content-Type: application/json; charset=utf-8;'
);
echo
$json
;
}
/**
* 返回JSON数据
*
* @param int $code 状态编码
* @param string $message 提示信息
* @param mixed $data 数据内容
* @return json
*/
protected
function
returnJson
(
$code
,
$message
,
$data
)
{
return
json_encode
(
array
(
'code'
=>
$code
,
'message'
=>
$message
,
'data'
=>
$data
,
));
}
/**
* 判断是不是AJAX请求
*
* @return bool
*/
protected
function
isAjax
()
{
return
$this
->
_request
->
isXmlHttpRequest
();
}
}
...
...
library/Api/Yohobuy.php
View file @
84ad40c
...
...
@@ -87,10 +87,11 @@ class Yohobuy
*
* @param string $url 接口URL
* @param array $data 参数列表
* @param bool $returnJson 控制是否返回json格式数据
* @param int $timeout 超时时间
* @return mixed
*/
public
static
function
get
(
$url
,
$data
=
array
(),
$timeout
=
5
)
public
static
function
get
(
$url
,
$data
=
array
(),
$
returnJson
=
false
,
$
timeout
=
5
)
{
if
(
isset
(
$data
[
'private_key'
]))
{
unset
(
$data
[
'private_key'
]);
...
...
@@ -104,7 +105,7 @@ class Yohobuy
curl_setopt
(
$ch
,
CURLOPT_TIMEOUT
,
$timeout
);
curl_setopt
(
$ch
,
CURLOPT_RETURNTRANSFER
,
true
);
$result
=
curl_exec
(
$ch
);
if
(
!
empty
(
$result
))
{
if
(
!
$returnJson
&&
!
empty
(
$result
))
{
$result
=
json_decode
(
$result
,
true
);
}
curl_close
(
$ch
);
...
...
@@ -118,12 +119,13 @@ class Yohobuy
*
* @param string $url 接口URL
* @param array $data 参数列表
* @param bool $returnJson 控制是否返回json格式数据
* @param int $timeout 超时时间
* @param array $header
* @param array $cookie
* @return mixed
*/
public
static
function
post
(
$url
,
$data
=
array
(),
$timeout
=
5
,
$header
=
array
(),
$cookie
=
array
())
public
static
function
post
(
$url
,
$data
=
array
(),
$
returnJson
=
false
,
$
timeout
=
5
,
$header
=
array
(),
$cookie
=
array
())
{
$ch
=
curl_init
(
$url
);
...
...
@@ -151,7 +153,7 @@ class Yohobuy
curl_setopt
(
$ch
,
CURLOPT_POSTFIELDS
,
$data
);
}
$result
=
curl_exec
(
$ch
);
if
(
!
empty
(
$result
))
{
if
(
!
$returnJson
&&
!
empty
(
$result
))
{
$result
=
json_decode
(
$result
,
true
);
}
curl_close
(
$ch
);
...
...
library/LibModels/Wap/Product/RecomData.php
View file @
84ad40c
...
...
@@ -16,7 +16,7 @@ use Api\Yohobuy;
class
RecomData
{
/**
* 你可能喜欢的商品列表
* 你可能喜欢的
BOYS或GIRLS的
商品列表
*
* @param string $gender "1,3"表示男, "2,3"表示女
* @param string $channel 1表示男, 2表示女
...
...
@@ -34,7 +34,45 @@ class RecomData
$param
[
'yh_channel'
]
=
$channel
;
$param
[
'client_secret'
]
=
Sign
::
getSign
(
$param
);
return
Yohobuy
::
get
(
Yohobuy
::
API_URL
,
$param
);
return
Yohobuy
::
get
(
Yohobuy
::
API_URL
,
$param
,
true
);
}
/**
* 你可能喜欢的潮童的商品列表
*
* @param int $page 分页第几页, 默认第1页
* @param int $limit 查询返回的最大限制数, 默认为50
* @return array
*/
public
static
function
mayLikeKids
(
$page
=
1
,
$limit
=
50
)
{
$param
=
Yohobuy
::
param
();
$param
[
'method'
]
=
'app.search.kids'
;
$param
[
'page'
]
=
$page
;
$param
[
'limit'
]
=
$limit
;
$param
[
'yh_channel'
]
=
'3'
;
$param
[
'client_secret'
]
=
Sign
::
getSign
(
$param
);
return
Yohobuy
::
get
(
Yohobuy
::
API_URL
,
$param
,
true
);
}
/**
* 你可能喜欢的创意生活的新品到着和人气单品列表
*
* @param int $page 分页第几页, 默认第1页
* @param int $limit 查询返回的最大限制数, 默认为50
* @return array
*/
public
static
function
mayLikeLifestyle
(
$page
=
1
,
$limit
=
50
)
{
$param
=
Yohobuy
::
param
();
$param
[
'method'
]
=
'app.search.lifeStyle'
;
$param
[
'page'
]
=
$page
;
$param
[
'limit'
]
=
$limit
;
$param
[
'yh_channel'
]
=
'4'
;
$param
[
'client_secret'
]
=
Sign
::
getSign
(
$param
);
return
Yohobuy
::
get
(
Yohobuy
::
API_URL
,
$param
,
true
);
}
}
...
...
yohobuy/m.yohobuy.com/application/Bootstrap.php
View file @
84ad40c
...
...
@@ -49,14 +49,14 @@ class Bootstrap extends Bootstrap_Abstract
Loader
::
getInstance
()
->
registerLocalNameSpace
(
explode
(
','
,
$this
->
_config
->
application
->
namespaces
));
}
/**
* 初始化插件
* @param Yaf_Dispatcher $dispatcher
*/
public
function
_initPlugin
(
Dispatcher
$dispatcher
)
{
}
// /**
// * 初始化插件
// * @param Yaf_Dispatcher $dispatcher
// */
// public function _initPlugin(Dispatcher $dispatcher)
// {
//
// }
/**
* 初始化路由
...
...
@@ -87,15 +87,15 @@ class Bootstrap extends Bootstrap_Abstract
}
}
/**
* 初始化第三方包
* @param Dispatcher $dispatcher
*/
public
function
_initPackage
(
Dispatcher
$dispatcher
)
{
if
(
$this
->
_config
->
composer
->
autoload
==
1
)
{
require
$this
->
_config
->
composer
->
path
.
'/vendor/autoload.php'
;
}
}
// /**
// * 初始化第三方包
// * @param Dispatcher $dispatcher
// */
// public function _initPackage(Dispatcher $dispatcher)
// {
// if ($this->_config->composer->autoload == 1) {
// require $this->_config->composer->path . '/vendor/autoload.php';
// }
// }
}
...
...
yohobuy/m.yohobuy.com/application/modules/Product/controllers/Recom.php
0 → 100644
View file @
84ad40c
<?php
use
Action\AbstractAction
;
use
LibModels\Wap\Product\RecomData
;
/**
* 商品推荐相关
*
* @name RecomController
* @package Product
* @copyright yoho.inc
* @version 1.0 (2015-10-8 14:43:52)
* @author fei.hong <fei.hong@yoho.cn>
*/
class
RecomController
extends
AbstractAction
{
/**
* 你可能喜欢的
*
* 备注:
* 调用位于男生(BOYS),女生(GIRLS),潮童(KIDS),创意生活(LifeStyle)页面的底部.
* 调用方式为AJAX,需要用JS遍历该数据集,替换图片URL地址中的{width},{height},{mode}.
* JS替换示例: str.replace("{width}", 300).replace("{height}", 300).replace("{mode}", 2);
*
* @param string gender "1,3"表示男, "2,3"表示女, 当channel为3时该参数可不传
* @param string channel 1表示男, 2表示女, 3表示潮童
* @return json
*/
public
function
maylikeAction
()
{
if
(
$this
->
isAjax
())
{
$data
=
''
;
$gender
=
$this
->
get
(
'gender'
,
'1,3'
);
$channel
=
$this
->
get
(
'channel'
,
'1'
);
switch
(
strval
(
$channel
))
{
case
'1'
:
// 男(Boys)
case
'2'
:
// 女(Girls)
$data
=
RecomData
::
mayLike
(
$gender
,
$channel
);
break
;
case
'3'
:
// 潮童(Kids)
$data
=
RecomData
::
mayLikeKids
();
break
;
case
'4'
:
// 创意生活(LifeStyle)
$data
=
RecomData
::
mayLikeLifestyle
();
break
;
}
$this
->
echoJson
(
$data
);
}
}
}
...
...
Please
register
or
login
to post a comment