1
This commit is contained in:
commit
336a2767a7
2
third_party/phpcommon
vendored
2
third_party/phpcommon
vendored
@ -1 +1 @@
|
|||||||
Subproject commit 55e2f9deb1eb1eede1e8c390c7bd166528632e8a
|
Subproject commit 85b467ba2eca1f843f0f988823741c0d00b2724d
|
@ -158,6 +158,11 @@ class BaseAuthedController extends BaseController {
|
|||||||
return $this->accountId;
|
return $this->accountId;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function _getGameId()
|
||||||
|
{
|
||||||
|
return phpcommon\extractGameId($this->_getAccountId());
|
||||||
|
}
|
||||||
|
|
||||||
public function _getOpenId()
|
public function _getOpenId()
|
||||||
{
|
{
|
||||||
return phpcommon\extractOpenId($this->_getAccountId());
|
return phpcommon\extractOpenId($this->_getAccountId());
|
||||||
|
@ -124,6 +124,18 @@ class ToolsController extends BaseController {
|
|||||||
myself()->_rspOk();
|
myself()->_rspOk();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function isSameSeriesAccount()
|
||||||
|
{
|
||||||
|
$accountId1 = getReqVal('account_id1', '');
|
||||||
|
$accountId2 = getReqVal('account_id2', '');
|
||||||
|
error_log(phpcommon\extractOpenId($accountId1));
|
||||||
|
error_log(phpcommon\extractRealOpenId(phpcommon\extractOpenId($accountId1)));
|
||||||
|
error_log($accountId1 . ' **** ' . $accountId2 . ' ' .
|
||||||
|
phpcommon\isSameSeriesAccount($accountId1, $accountId2));
|
||||||
|
myself()->_rspData(array(
|
||||||
|
|
||||||
|
));
|
||||||
|
}
|
||||||
|
|
||||||
private function writeToFile($fileName, $data)
|
private function writeToFile($fileName, $data)
|
||||||
{
|
{
|
||||||
|
@ -783,6 +783,20 @@ class UserController extends BaseAuthedController {
|
|||||||
$sign = base64_decode($arr[2]);
|
$sign = base64_decode($arr[2]);
|
||||||
$data = json_decode($payload, true);
|
$data = json_decode($payload, true);
|
||||||
|
|
||||||
|
$subIdxPre = '';
|
||||||
|
$subIdx = getXVal($data, 'version', '');
|
||||||
|
if (!empty($subIdx)) {
|
||||||
|
$subIdxPre = 's' . $subIdx . '_';
|
||||||
|
}
|
||||||
|
{
|
||||||
|
$jwtAccountId = BC_POLY_CHANNEL . '_' . myself()->_getGameId() . '_' .
|
||||||
|
$subIdxPre . $data['plat'] . '_' . $data['openid'];
|
||||||
|
if ($jwtAccountId != myself()->_getAccountId()) {
|
||||||
|
myself()->_rspErr(1, 'token error3');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
$url = 'https://pay.cebggame.com/wallet/info?';
|
$url = 'https://pay.cebggame.com/wallet/info?';
|
||||||
$params = array(
|
$params = array(
|
||||||
'token' => $jwt
|
'token' => $jwt
|
||||||
@ -806,8 +820,27 @@ class UserController extends BaseAuthedController {
|
|||||||
die();
|
die();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
$address = strtolower($rspObj['data']['address']);
|
||||||
|
$oldUser = User::findByAddress($address);
|
||||||
|
if ($oldUser) {
|
||||||
|
if ($oldUser['account_id'] != myself()->_getAccountId()) {
|
||||||
|
if (!phpcommon\isSameSeriesAccount(
|
||||||
|
$oldUser['account_id'],
|
||||||
|
myself()->_getAccountId()
|
||||||
|
)) {
|
||||||
|
myself()->_rspErr(1, 'is not SameSeriesAccount');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
User::updateOther(
|
||||||
|
$oldUser['account_id'],
|
||||||
|
array(
|
||||||
|
'address' => null
|
||||||
|
)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
User::Update(array(
|
User::Update(array(
|
||||||
'address' => $rspObj['data']['address']
|
'address' => $address
|
||||||
));
|
));
|
||||||
$propertyChgService = new services\PropertyChgService();
|
$propertyChgService = new services\PropertyChgService();
|
||||||
$propertyChgService->addUserChg();
|
$propertyChgService->addUserChg();
|
||||||
|
@ -33,6 +33,18 @@ class User extends BaseModel {
|
|||||||
return $row ? $row : null;
|
return $row ? $row : null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static function findByAddress($address)
|
||||||
|
{
|
||||||
|
$row = SqlHelper::ormSelectOne
|
||||||
|
(myself()->_getMysql(''),
|
||||||
|
't_user',
|
||||||
|
array(
|
||||||
|
'address' => $address
|
||||||
|
)
|
||||||
|
);
|
||||||
|
return $row ? $row : null;
|
||||||
|
}
|
||||||
|
|
||||||
public static function findUserAddress($accountId)
|
public static function findUserAddress($accountId)
|
||||||
{
|
{
|
||||||
$row = SqlHelper::ormSelectOne
|
$row = SqlHelper::ormSelectOne
|
||||||
@ -360,6 +372,17 @@ class User extends BaseModel {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static function updateOther($accountId, $fieldsKv){
|
||||||
|
SqlHelper::update
|
||||||
|
(myself()->_getMysql($accountId),
|
||||||
|
't_user',
|
||||||
|
array(
|
||||||
|
'account_id' => $accountId,
|
||||||
|
),
|
||||||
|
$fieldsKv
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
public static function updateLikeCount($targetId){
|
public static function updateLikeCount($targetId){
|
||||||
SqlHelper::update
|
SqlHelper::update
|
||||||
(myself()->_getSelfMysql(),
|
(myself()->_getSelfMysql(),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user