Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
Education
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
黄奎
Education
Commits
a1727541
Commit
a1727541
authored
Dec 25, 2024
by
吴春
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
b7ee1d44
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
631 additions
and
14 deletions
+631
-14
HttpHelper.cs
Edu.Common/Plugin/HttpHelper.cs
+19
-0
WeChatHelper.cs
Edu.Common/Plugin/WeChatHelper.cs
+56
-0
AccountModule.cs
Edu.Module.User/AccountModule.cs
+6
-2
AppletCenterController.cs
Edu.WebApi/Controllers/Applet/AppletCenterController.cs
+48
-0
AppletLoginController.cs
Edu.WebApi/Controllers/Applet/AppletLoginController.cs
+500
-10
appsettings.json
Edu.WebApi/appsettings.json
+2
-2
No files found.
Edu.Common/Plugin/HttpHelper.cs
View file @
a1727541
...
...
@@ -162,5 +162,24 @@ namespace Edu.Common.Plugin
}
return
result
;
}
/// <summary>
/// 获取请求数据
/// </summary>
/// <param name="url"></param>
/// <returns></returns>
public
static
string
HttpClientGet
(
string
url
)
{
HttpClient
httpClient
=
new
HttpClient
();
HttpResponseMessage
res
=
httpClient
.
GetAsync
(
url
).
Result
;
if
(
res
.
IsSuccessStatusCode
)
{
Task
<
string
>
t
=
res
.
Content
.
ReadAsStringAsync
();
return
t
.
Result
;
}
return
string
.
Empty
;
}
}
}
\ No newline at end of file
Edu.Common/Plugin/WeChatHelper.cs
View file @
a1727541
...
...
@@ -118,6 +118,11 @@ namespace Edu.Common.Plugin
return
userInfo
;
}
/// <summary>
/// 获取微信授权手机号码
/// </summary>
...
...
@@ -223,4 +228,55 @@ namespace Edu.Common.Plugin
public
string
phoneNumber
{
get
;
set
;
}
}
#
region
微信登录获取返回的
access_token
(通过
code
获取
access_token
)
/// <summary>
/// 通过 code 获取access_token
/// </summary>
public
class
GetTokenByCode
{
/// <summary>
/// refresh_token
/// </summary>
public
string
access_token
{
get
;
set
;
}
/// <summary>
/// access_token接口调用凭证超时时间,单位(秒)
/// </summary>
public
string
expires_in
{
get
;
set
;
}
/// <summary>
/// 用户刷新access_token
/// </summary>
public
string
refresh_token
{
get
;
set
;
}
/// <summary>
/// 授权用户唯一标识
/// </summary>
public
string
openid
{
get
;
set
;
}
/// <summary>
/// 用户授权的作用域,使用逗号(,)分隔
/// </summary>
public
string
scope
{
get
;
set
;
}
/// <summary>
/// 当且仅当该网站应用已获得该用户的 userinfo 授权时,才会出现该字段。
/// </summary>
public
string
unionid
{
get
;
set
;
}
/// <summary>
/// 错误状态码
/// </summary>
public
string
errcode
{
get
;
set
;
}
/// <summary>
/// 错误提示信息
/// </summary>
public
string
errmsg
{
get
;
set
;
}
}
#
endregion
}
\ No newline at end of file
Edu.Module.User/AccountModule.cs
View file @
a1727541
...
...
@@ -24,7 +24,8 @@ namespace Edu.Module.User
/// </summary>
/// <param name="empId"></param>
/// <returns></returns>
public
Employee_ViewModel
GetEmployeeInfo
(
int
empId
)
{
public
Employee_ViewModel
GetEmployeeInfo
(
int
empId
)
{
return
accountRepository
.
GetEmployeeInfo
(
empId
);
}
...
...
@@ -102,8 +103,11 @@ namespace Edu.Module.User
Dictionary
<
string
,
object
>
fileds
=
new
Dictionary
<
string
,
object
>()
{
{
nameof
(
RB_Account_ViewModel
.
OpenId
),
model
.
OpenId
.
Trim
()
},
{
nameof
(
RB_Account_ViewModel
.
UnionId
),
model
.
UnionId
.
Trim
()
}
};
if
(!
string
.
IsNullOrWhiteSpace
(
model
.
UnionId
))
{
fileds
.
Add
(
nameof
(
RB_Account_ViewModel
.
UnionId
),
model
.
UnionId
.
Trim
());
}
flag
=
accountRepository
.
Update
(
fileds
,
new
WhereHelper
(
nameof
(
RB_Account_ViewModel
.
Id
),
model
.
Id
));
}
return
flag
;
...
...
Edu.WebApi/Controllers/Applet/AppletCenterController.cs
View file @
a1727541
...
...
@@ -426,5 +426,53 @@ namespace Edu.WebApi.Controllers.Applet
}
}
#
endregion
#
region
根据
openid
绑定用户的账号信息
/// <summary>
/// 取消预约
/// </summary>
/// <returns></returns>
[
HttpPost
]
public
ApiResult
GetOpenIdBindAccount
()
{
var
userInfo
=
base
.
AppletUserInfo
;
string
openId
=
ParmJObj
.
GetStringValue
(
"OpenId"
);
if
(
string
.
IsNullOrWhiteSpace
(
openId
))
{
return
ApiResult
.
ParamIsNull
(
"请传递OpenId"
);
}
var
model
=
accountModule
.
GetStudentExt
(
new
RB_Account_ViewModel
()
{
Id
=
userInfo
.
Id
,
AccountId
=
userInfo
.
AccountId
,
AccountType
=
Common
.
Enum
.
User
.
AccountTypeEnum
.
Student
})?.
FirstOrDefault
();
if
(!
string
.
IsNullOrWhiteSpace
(
model
.
OpenId
))
{
return
ApiResult
.
Failed
(
"账户已绑定微信信息,请勿重复操作"
);
}
var
modelOpenId
=
accountModule
.
GetStudentExt
(
new
RB_Account_ViewModel
()
{
OpenId
=
openId
.
Trim
(),
AccountType
=
Common
.
Enum
.
User
.
AccountTypeEnum
.
Student
})?.
FirstOrDefault
();
if
((
modelOpenId
?.
Id
??
0
)
>
0
)
{
return
ApiResult
.
Failed
(
"微信信息已绑定账户,请勿重复操作"
);
}
model
.
OpenId
=
openId
;
model
.
UnionId
=
""
;
var
flag
=
accountModule
.
UpdateAccountUnionId
(
model
);
if
(
flag
)
{
return
ApiResult
.
Success
();
}
else
{
return
ApiResult
.
Failed
(
"绑定失败"
);
}
}
#
endregion
}
}
Edu.WebApi/Controllers/Applet/AppletLoginController.cs
View file @
a1727541
This diff is collapsed.
Click to expand it.
Edu.WebApi/appsettings.json
View file @
a1727541
...
...
@@ -46,8 +46,8 @@
"JHTenantId"
:
"15"
,
"JHMallBaseId"
:
"5"
,
"JHMallUserOpenId"
:
"oshxs5I-6uR1J91Rs3QVyi2rJIm4"
,
"WeChatAccountAppId"
:
"wx
7c2cedaebbfca211
"
,
"WeChatAccountAppSecret"
:
"
6fd676c7f599bc2783fab6ae6c7a12d4
"
,
"WeChatAccountAppId"
:
"wx
17ed4ce5c80be02c
"
,
"WeChatAccountAppSecret"
:
"
2d777c2ed4627423bace16f2428b2169
"
,
"Notice_BaseKey"
:
"Notice_BaseKey"
,
"QYWeiChatToken"
:
"b3e0ebf63301f80cb8e741cf72fdaf3c"
,
"QYWeiChatEncodingAESKey"
:
"ODRjOGEwYWQxNWJkNDRkMTg2NGJiOWY1ZTE4LCE0NmY"
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment