|
@@ -99,6 +99,7 @@ class EventsController extends Controller {
|
|
$objUserData = new UserInfo();
|
|
$objUserData = new UserInfo();
|
|
$uid = $this->getRunTimeUid();
|
|
$uid = $this->getRunTimeUid();
|
|
$userData = $objUserData -> get($uid);
|
|
$userData = $objUserData -> get($uid);
|
|
|
|
+ $userData['headimgurl'] = $this->getUserHead($userData);
|
|
$this->setOutput('uid', $uid);
|
|
$this->setOutput('uid', $uid);
|
|
$this->setOutput('userInfo', $userData);
|
|
$this->setOutput('userInfo', $userData);
|
|
|
|
|
|
@@ -107,19 +108,16 @@ class EventsController extends Controller {
|
|
$source_user = $uid;
|
|
$source_user = $uid;
|
|
}
|
|
}
|
|
$this->setOutput('source_user', $source_user);
|
|
$this->setOutput('source_user', $source_user);
|
|
- $userData = $objUserData -> get($source_user);
|
|
|
|
- if (isset($userData['headimgurl']) && $userData['headimgurl']) {
|
|
|
|
|
|
+ if ($source_user != $uid) {
|
|
|
|
+ $userData = $objUserData -> get($source_user);
|
|
|
|
|
|
- } else {
|
|
|
|
- $userData['headimgurl'] = 'http://news.mydrivers.com/Img/20110518/04481549.png';
|
|
|
|
- }
|
|
|
|
|
|
+ $userData['headimgurl'] = $this->getUserHead($userData);
|
|
|
|
|
|
- if (isset($userData['nickname']) && $userData['nickname']) {
|
|
|
|
-
|
|
|
|
- } else {
|
|
|
|
- $userData['nickname'] = '福利社网友';
|
|
|
|
|
|
+ if (!$userData['nickname']) {
|
|
|
|
+ $userData['nickname'] = '福利社网友';
|
|
|
|
+ }
|
|
|
|
+ $this->setOutput('userSourceInfo', $userData);
|
|
}
|
|
}
|
|
- $this->setOutput('userSourceInfo', $userData);
|
|
|
|
|
|
|
|
$info['end'] = 1; //未过期
|
|
$info['end'] = 1; //未过期
|
|
if ($TIME > $info['end_time']) {
|
|
if ($TIME > $info['end_time']) {
|
|
@@ -146,7 +144,7 @@ class EventsController extends Controller {
|
|
}
|
|
}
|
|
|
|
|
|
# 如果是试用,判断评价
|
|
# 如果是试用,判断评价
|
|
- $condition = array('audit' => 2, 'uid' => $uid,'scratch_receive' => LotteryData::EVENT_SCRATCH_RECEIVE_TRUE);
|
|
|
|
|
|
+ $condition = array('events_id' => $info['id'],'audit' => 2, 'uid' => $uid,'scratch_receive' => LotteryData::EVENT_SCRATCH_RECEIVE_TRUE);
|
|
$offset = 0;
|
|
$offset = 0;
|
|
$size = 1;
|
|
$size = 1;
|
|
$order = 'id desc';
|
|
$order = 'id desc';
|
|
@@ -200,32 +198,7 @@ class EventsController extends Controller {
|
|
|
|
|
|
if ($type == 'share') {
|
|
if ($type == 'share') {
|
|
# 分享
|
|
# 分享
|
|
- $condition = array (
|
|
|
|
- 'events_id' => $events_id,
|
|
|
|
- 'uid' => $source_user,
|
|
|
|
- );
|
|
|
|
- $objLotteryUserHelp = new LotteryUserHelp();
|
|
|
|
- $info = $objLotteryUserHelp->fetchOne ( $condition);
|
|
|
|
- if (!$info) {
|
|
|
|
- $id = $objLotteryUserHelp->add ( $condition);
|
|
|
|
- } else {
|
|
|
|
- $id = $info['id'];
|
|
|
|
- }
|
|
|
|
- if ($id) {
|
|
|
|
- $objLotteryUserHelpLog = new LotteryUserHelpLog();
|
|
|
|
-
|
|
|
|
- $condition = array (
|
|
|
|
- 'events_id' => $events_id,
|
|
|
|
- 'help_id' => $id,
|
|
|
|
- );
|
|
|
|
-
|
|
|
|
- $total_num = $objLotteryUserHelpLog->totals ( $condition );
|
|
|
|
-
|
|
|
|
- $ids = $objLotteryUserHelpLog->findIdsBy ( $condition, '0,100000', 'id desc' );
|
|
|
|
- $helpData = $objLotteryUserHelpLog->gets ( $ids );
|
|
|
|
- $this->setOutput('helpData', $helpData);
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
|
|
+ $this->share($info, $plat_form_id, $source_user);
|
|
} elseif ($type == 'prize') {
|
|
} elseif ($type == 'prize') {
|
|
# 获得福利
|
|
# 获得福利
|
|
$this->prize($info, $plat_form_id, 10, false);
|
|
$this->prize($info, $plat_form_id, 10, false);
|
|
@@ -243,6 +216,62 @@ class EventsController extends Controller {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ public function share($eventsData, $plat_form_id, $uid)
|
|
|
|
+ {
|
|
|
|
+ $events_id = $eventsData['id'];
|
|
|
|
+ $condition = array (
|
|
|
|
+ 'events_id' => $events_id,
|
|
|
|
+ 'uid' => $uid,
|
|
|
|
+ );
|
|
|
|
+ $objLotteryUserHelp = new LotteryUserHelp();
|
|
|
|
+ $info = $objLotteryUserHelp->fetchOne ( $condition);
|
|
|
|
+ if (!$info) {
|
|
|
|
+ $id = $objLotteryUserHelp->add ( $condition);
|
|
|
|
+ } else {
|
|
|
|
+ $id = $info['id'];
|
|
|
|
+ }
|
|
|
|
+ if ($id) {
|
|
|
|
+ $objLotteryUserHelpLog = new LotteryUserHelpLog();
|
|
|
|
+
|
|
|
|
+ $condition = array (
|
|
|
|
+ 'events_id' => $events_id,
|
|
|
|
+ 'help_id' => $id,
|
|
|
|
+ );
|
|
|
|
+
|
|
|
|
+ $total_num = $objLotteryUserHelpLog->totals ( $condition );
|
|
|
|
+
|
|
|
|
+ $ids = $objLotteryUserHelpLog->findIdsBy ( $condition, '0,50', 'id desc' );
|
|
|
|
+ $helpData = $objLotteryUserHelpLog->gets ( $ids );
|
|
|
|
+
|
|
|
|
+ if ($helpData) {
|
|
|
|
+ foreach ($helpData as $k => $v) {
|
|
|
|
+ $helpData[$k]['headimgurl'] = $this->getUserHead($v['uid']);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ $session = $this->shareSession($id, $uid);
|
|
|
|
+ $this->setOutput('help_session', $session);
|
|
|
|
+ $this->setOutput('help_id', $id);
|
|
|
|
+ $this->setOutput('helpData', $helpData);
|
|
|
|
+ $this->setOutput('helpDataTotal', $total_num);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public function shareSession($id, $uid, $source_session = false)
|
|
|
|
+ {
|
|
|
|
+ $key = 'onepage2999';
|
|
|
|
+ $session = md5($id . '_' . $key . '_' . $uid);
|
|
|
|
+ if ($source_session) {
|
|
|
|
+ if ($source_session == $session) {
|
|
|
|
+ return true;
|
|
|
|
+ } else {
|
|
|
|
+ return false;
|
|
|
|
+ }
|
|
|
|
+ } else {
|
|
|
|
+ return $session;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
public function feedback($eventsData, $plat_form_id, $limit = 10, $uid = false)
|
|
public function feedback($eventsData, $plat_form_id, $limit = 10, $uid = false)
|
|
{
|
|
{
|
|
$objFeedBack = new LotteryUserFeedback ();
|
|
$objFeedBack = new LotteryUserFeedback ();
|
|
@@ -280,12 +309,16 @@ class EventsController extends Controller {
|
|
|
|
|
|
public function prize($eventsData, $plat_form_id, $limit = 10, $uid = false)
|
|
public function prize($eventsData, $plat_form_id, $limit = 10, $uid = false)
|
|
{
|
|
{
|
|
- $condition = array('platform_id' => SqlHelper::addCompareOperator('&', $plat_form_id), 'scratch_receive' => LotteryData::EVENT_SCRATCH_RECEIVE_TRUE);
|
|
|
|
|
|
+ $condition = array('audit' => 2, 'platform_id' => SqlHelper::addCompareOperator('&', $plat_form_id), 'scratch_receive' => LotteryData::EVENT_SCRATCH_RECEIVE_TRUE);
|
|
|
|
|
|
|
|
+ if (isset($eventsData['id'])) {
|
|
|
|
+ $condition['events_id'] = $eventsData['id'];
|
|
|
|
+ }
|
|
if ($uid) {
|
|
if ($uid) {
|
|
$condition['uid'] = $uid;
|
|
$condition['uid'] = $uid;
|
|
}
|
|
}
|
|
$totals = $this->objMLottery -> getLotteryDataListNum($condition);
|
|
$totals = $this->objMLottery -> getLotteryDataListNum($condition);
|
|
|
|
+
|
|
$page = Request::varGetInt ( 'page', 1 );
|
|
$page = Request::varGetInt ( 'page', 1 );
|
|
$size = $limit;
|
|
$size = $limit;
|
|
$offset = ($page - 1) * $size;
|
|
$offset = ($page - 1) * $size;
|
|
@@ -332,11 +365,8 @@ class EventsController extends Controller {
|
|
$data[$k]['user'] = array();
|
|
$data[$k]['user'] = array();
|
|
$data[$k]['user']['cdate'] = date('Y.m.d H:i', isset($v['winners_time']) ? $v['winners_time'] : $v['create_time']);
|
|
$data[$k]['user']['cdate'] = date('Y.m.d H:i', isset($v['winners_time']) ? $v['winners_time'] : $v['create_time']);
|
|
$data[$k]['user']['events'] = isset($eventsData['events_name']) ? $eventsData['events_name'] : $eventsData[$v['events_id']]['events_name'];
|
|
$data[$k]['user']['events'] = isset($eventsData['events_name']) ? $eventsData['events_name'] : $eventsData[$v['events_id']]['events_name'];
|
|
- if (isset($users[$v['uid']]['headimgurl']) && $users[$v['uid']]['headimgurl']) {
|
|
|
|
- $data[$k]['user']['headimgurl'] = $users[$v['uid']]['headimgurl'];
|
|
|
|
- } else {
|
|
|
|
- $data[$k]['user']['headimgurl'] = 'http://news.mydrivers.com/Img/20110518/04481549.png';
|
|
|
|
- }
|
|
|
|
|
|
+
|
|
|
|
+ $data[$k]['user']['headimgurl'] = $this->getUserHead($users[$v['uid']]);
|
|
|
|
|
|
if (isset($v['express']['phone']) && $v['express']['phone']) {
|
|
if (isset($v['express']['phone']) && $v['express']['phone']) {
|
|
$data[$k]['user']['mobile'] = substr_replace($v['express']['phone'],'****',3,4);
|
|
$data[$k]['user']['mobile'] = substr_replace($v['express']['phone'],'****',3,4);
|
|
@@ -349,6 +379,24 @@ class EventsController extends Controller {
|
|
|
|
|
|
return $data;
|
|
return $data;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 获取头像
|
|
|
|
+ */
|
|
|
|
+ public function getUserHead($user)
|
|
|
|
+ {
|
|
|
|
+ if (!is_array($user)) {
|
|
|
|
+ $objUserData = new UserInfo();
|
|
|
|
+ $user = $objUserData -> get($user);
|
|
|
|
+ }
|
|
|
|
+ if (isset($user['headimgurl']) && $user['headimgurl']) {
|
|
|
|
+ $result = $user['headimgurl'];
|
|
|
|
+ } else {
|
|
|
|
+ $result = 'http://news.mydrivers.com/Img/20110518/04481549.png';
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ return $result;
|
|
|
|
+ }
|
|
|
|
|
|
/**
|
|
/**
|
|
* 判断当前用户是否已经登录
|
|
* 判断当前用户是否已经登录
|