Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
YOHOBUYPC
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
2
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
whb
9 years ago
Commit
e9afefa067967eb199551834cc55acd8ea845eb6
1 parent
167b951d
注册添加shopping_key
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
3 deletions
library/LibModels/Web/Passport/RegData.php
yohobuy/www.yohobuy.com/application/modules/Passport/controllers/Register.php
library/LibModels/Web/Passport/RegData.php
View file @
e9afefa
...
...
@@ -155,9 +155,10 @@ class RegData
* @param string $area 地区号 如"86"
* @param string $mobile 手机号
* @param string $password 登录密码
* @param string $shoppingKey
* @return array
*/
public
static
function
regMobile
(
$area
,
$mobile
,
$password
)
public
static
function
regMobile
(
$area
,
$mobile
,
$password
,
$shoppingKey
=
null
)
{
$clientType
=
'web'
;
$param
=
Yohobuy
::
param
();
...
...
@@ -165,6 +166,10 @@ class RegData
$param
[
'area'
]
=
$area
;
$param
[
'profile'
]
=
$mobile
;
$param
[
'password'
]
=
$password
;
//购物车
if
(
!
empty
(
$shoppingKey
))
{
$param
[
'shopping_key'
]
=
$shoppingKey
;
}
$param
[
'client_type'
]
=
$clientType
;
$param
[
'private_key'
]
=
Yohobuy
::
$privateKeyList
[
$clientType
];
$param
[
'client_secret'
]
=
Sign
::
getSign
(
$param
);
...
...
yohobuy/www.yohobuy.com/application/modules/Passport/controllers/Register.php
View file @
e9afefa
...
...
@@ -319,9 +319,9 @@ class RegisterController extends WebAction
$data
[
'message'
]
=
'验证码错误'
;
break
;
}
$shoppingKey
=
Helpers
::
getShoppingKeyByCookie
();
/* 手机注册: 调用注册接口,ip限制计数 */
$data
=
RegData
::
regMobile
(
$area
,
$mobile
,
$password
);
$data
=
RegData
::
regMobile
(
$area
,
$mobile
,
$password
,
$shoppingKey
);
Cache
::
set
(
$ipKey
,
$ipTimes
+
1
,
3600
);
if
(
!
isset
(
$data
[
'code'
])
||
$data
[
'code'
]
!=
200
)
{
break
;
...
...
Please
register
or
login
to post a comment