123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683 |
- using Hei.Captcha;
- using HiTeachCE.Extension;
- using HiTeachCE.Helpers;
- using HiTeachCE.Models;
- using HiTeachCE.Services;
- using IdentityModel;
- using Microsoft.AspNetCore.Authorization;
- using Microsoft.AspNetCore.Mvc;
- using Microsoft.Extensions.Configuration;
- using Microsoft.Extensions.Options;
- using OpenXmlPowerTools;
- using Org.BouncyCastle.Ocsp;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.Linq;
- using System.Linq.Expressions;
- using System.Security.Claims;
- using System.Text.Json;
- using System.Threading.Tasks;
- using TEAMModelOS.SDK.Context.Configuration;
- using TEAMModelOS.SDK.Context.Exception;
- using TEAMModelOS.SDK.Extension.DataResult.JsonRpcRequest;
- using TEAMModelOS.SDK.Extension.DataResult.JsonRpcResponse;
- using TEAMModelOS.SDK.Extension.JwtAuth.Models;
- using TEAMModelOS.SDK.Helper.Common.CollectionHelper;
- using TEAMModelOS.SDK.Helper.Common.JsonHelper;
- using TEAMModelOS.SDK.Helper.Security.ShaHash;
- namespace HiTeachCE.Controllers
- {
- [Route("api/[controller]")]
- [ApiController]
- public class LoginController : BaseController
- {
- public static int smsTTL = 1 * 60;
- public static int ticketTTL = 1 * 24 * 60 * 60;
- public static int freeTTL = 7 * 24 * 60 * 60;
- public static int deviceTTL = 1 * 24 * 60 * 60;
- public static string freeOrg = "7f847a9f05224184a5d01ee69a6b00d6";
- public static string model_teach = "teach";
- public static string model_prepare = "prepare";
- private readonly LecturerService lecturerService;
- private readonly OrganizationService organizationService;
- private readonly MemberService memberService;
- private readonly ActivationCodeService activationCodeService;
- private readonly SecurityCodeHelper securityCode;
- public LoginController(LecturerService lecturer, OrganizationService organization, MemberService member, ActivationCodeService activationCode, SecurityCodeHelper _securityCode)
- {
- lecturerService = lecturer;
- organizationService = organization;
- memberService = member;
- activationCodeService = activationCode;
- securityCode = _securityCode;
- }
- /// <summary>
- /// 注册装置
- /// </summary>
- /// <param name="request"></param>
- /// <returns></returns>
- [HttpPost("regist")]
- [Authorize(Policy = "lecturer")]
- public BaseJosnRPCResponse Regist(JosnRPCRequest<Dictionary<string, string>> request)
- {
- JsonRPCResponseBuilder builder = JsonRPCResponseBuilder.custom();
- string unionid = GetLoginUser(JwtClaimTypes.Id);
- /**
- "params": {
- "deviceId": "f67fb5dd-ee1b-d3b7-9b95-61022d7e8acd",
- "clientId": "931dee8c-74be-4c9b-a602-c74583b0e985",
- }
- */
- if (request.@params.TryGetValue("deviceId", out string deviceId) && request.@params.TryGetValue("orgCode", out string orgCode) && string.IsNullOrEmpty(unionid))
- {
- Dictionary<string, object> dict = ActivationValid(orgCode, unionid);
- if (dict.TryGetValue("flag", out object flag) && bool.Parse(flag.ToString()))
- {
- if (RedisHelper.HExists("device:" + deviceId, orgCode))
- {
- }
- else
- {
- RedisHelper.HSet("device:" + deviceId, orgCode, unionid);
- RedisHelper.Expire("device:" + deviceId, deviceTTL);
- }
- return builder.Data(new Dictionary<string, object> { { "deviceId", deviceId } }).build();
- }
- else
- {
- throw new BizException("授权失败!", 2);
- }
- }
- else
- {
- throw new BizException("参数错误!", 2);
- }
- }
- /// <summary>
- /// 创建教室
- /// </summary>
- /// <param name="request"></param>
- /// <returns></returns>
- [HttpPost("createGroup")]
- [Authorize]
- public BaseJosnRPCResponse CreateGroup(JosnRPCRequest<Dictionary<string, string>> request)
- {
- /**
- "params": {
- "deviceId": "f67fb5dd-ee1b-d3b7-9b95-61022d7e8acd",
- "doBoundGroupNum": false,
- "extraInfo": {}
- }
- */
- JsonRPCResponseBuilder builder = JsonRPCResponseBuilder.custom();
- string ClientId =// new List<string>() { "fb564dde14df423cafac2085936e3b96" };
- GetLoginUser(JwtClaimTypes.ClientId);
- string groupNum;
- if (request.@params.TryGetValue("deviceId", out string deviceId) && string.IsNullOrEmpty(ClientId))
- {
- if (RedisHelper.HExists("device:" + ClientId, deviceId))
- {
- groupNum = RedisHelper.HGet<string>("device:" + ClientId, deviceId);
- if (string.IsNullOrEmpty(groupNum)) {
- do
- {
- groupNum = RandGroupNum();
- } while (RedisHelper.Exists("group:" + groupNum));
- RedisHelper.HSet("group:" + groupNum, deviceId, null);
- RedisHelper.Expire("group:" + groupNum, deviceTTL);
- RedisHelper.HSet("device:" + ClientId, deviceId, groupNum);
- }
- }
- else { throw new BizException("装置未注册", 2); }
- }
- else {
- throw new BizException("参数错误", 2);
- }
- return builder.Data(groupNum).build();
- }
- public string RandGroupNum() {
- Random random = new Random();
- String result = "";
- for (int i = 0; i < 6; i++)
- {
- result += random.Next(0, 10);
- }
- return result;
- }
- /// <summary>
- /// 加入教室
- /// </summary>
- /// <param name="request"></param>
- /// <returns></returns>
- [HttpPost("joinGroup")]
- [Authorize]
- public BaseJosnRPCResponse JoinGroup(JosnRPCRequest<Dictionary<string, string>> request)
- {
- string ClientId = GetLoginUser(JwtClaimTypes.ClientId);
- string Unionid = GetLoginUser(JwtClaimTypes.Id);
- string Role = GetLoginUser(JwtClaimTypes.Role);
- JsonRPCResponseBuilder builder = JsonRPCResponseBuilder.custom();
- Dictionary<string, object> dict;
- /**
- "params": {
- "deviceId": "f67fb5dd-ee1b-d3b7-9b95-61022d7e8acd",
- "groupNum": "818288"
- }
- */
- if (request.@params.TryGetValue("deviceId", out string deviceId) &&
- request.@params.TryGetValue("groupNum", out string groupNum) &&
- !string.IsNullOrEmpty(deviceId) && !string.IsNullOrEmpty(groupNum)
- )
- {
- if (RedisHelper.Exists("group:" + groupNum))
- {
- dict = MqttInfo(ClientId, deviceId, groupNum, Unionid, Role);
- }
- else {
- throw new BizException("教室不存在", 2);
- }
- }
- else
- {
- throw new BizException("参数错误", 2);
- }
- return builder.Data(dict).build();
- }
- private static Dictionary<string, object> MqttInfo( string ClientId, string deviceId, string groupNum, string Unionid, string Role)
- {
- string brokerHostName = BaseConfigModel.Configuration["brokerHostName"];
- Dictionary<string, object> dict = new Dictionary<string, object>();
- string password = brokerHostName + "/" + groupNum + "/" + deviceId + "/" + ClientId;
- //发给前端使用的
- string h1 = BCrypt.Net.BCrypt.HashPassword(password);
- //后端存储使用的
- string h2 = BCrypt.Net.BCrypt.HashPassword(h1, BCrypt.Net.SaltRevision.Revision2);
- bool validPassword = BCrypt.Net.BCrypt.Verify(h1, h2);
- string uname = password;
- Dictionary<string, string> connectInfo = new Dictionary<string, string>
- {
- { "brokerHostName", brokerHostName },
- { "brokerHostNameWSS", "wss://" +brokerHostName+"/mqtt"} ,
- { "clientID", deviceId },
- //使用BCrypt加密
- { "password",h1} ,
- { "username",uname}
- };
- Dictionary<string, string> subscribeTopic = BaseConfigModel.Configuration.GetSection("SubscribeTopic").Get<Dictionary<string, string>>();
- subscribeTopic["receiveMsg"] = subscribeTopic["receiveMsg"].Replace("{deviceId}", deviceId);
- Dictionary<string, string> publishTopic = BaseConfigModel.Configuration.GetSection("PublishTopic").Get<Dictionary<string, string>>();
- publishTopic["sendMsg"] = publishTopic["sendMsg"].Replace("{deviceId}", deviceId).Replace("{groupNum}", groupNum);
- dict.Add("mqtt", new Dictionary<string, object>() { { "connectInfo", connectInfo }, { "publishTopic", publishTopic }, { "subscribeTopic", subscribeTopic } });
- List<string> topic = new List<string>();
- topic.AddRange(publishTopic.Values.ToList());
- topic.AddRange(subscribeTopic.Values.ToList());
- MQTTInfo mqtt = new MQTTInfo
- {
- brokerHostName = brokerHostName,
- brokerHostNameWSS = "wss://" + brokerHostName + "/mqtt",
- clientID = deviceId,
- //使用BCrypt加密
- password = h2,
- username = uname,
- topic = topic
- };
- var groupMember = new MQTTMember
- {
- clientId = ClientId,
- deviceId = deviceId,
- unionid = Unionid ,
- role = "lecturer",
- groupNum = groupNum
- };
- RedisHelper.HSet("group:" + groupNum, deviceId, groupMember);
- RedisHelper.HSet("mqtt:" + deviceId, deviceId, mqtt);
- RedisHelper.Expire("mqtt:" + deviceId, deviceTTL);
- return dict;
- }
- /// <summary>
- /// 认证
- /// </summary>
- /// <param name="request"></param>
- /// <returns></returns>
- [HttpPost("adminAuth")]
- public BaseJosnRPCResponse AdminAuth(JosnRPCRequest<Dictionary<string, string>> request)
- {
- JsonRPCResponseBuilder builder = JsonRPCResponseBuilder.custom();
- if (request.@params.TryGetValue("ticket", out string ticket)){
- if (RedisHelper.Exists("ticket:" + ticket))
- {
- string[] vals = RedisHelper.HVals<string>("ticket:" + ticket);
- if (vals != null && vals.Length > 0)
- {
- string cellphone = vals[0];
- Expression<Func<Lecturer, bool>> linq = null;
- linq = m => m.cellphone == cellphone;
- List<Lecturer> lecturers = lecturerService.GetList(linq);
- if (lecturers.IsNotEmpty())
- {
- List<string> RootUsers= BaseConfigModel.Configuration.GetSection("RootUser").Get<List<string>>();
-
- ClaimModel claimModel = new ClaimModel
- {
- Scope = "Admin"
- };
- claimModel.Claims.Add(new Claim(JwtClaimTypes.Name, lecturers[0].username));
- claimModel.Claims.Add(new Claim(JwtClaimTypes.Id, lecturers[0].unionid));
- claimModel.Claims.Add(new Claim(JwtClaimTypes.PhoneNumber, lecturers[0].cellphone));
- if (RootUsers.Contains(lecturers[0].cellphone))
- {
- // claimModel.Claims.Add(new Claim(JwtClaimTypes.Role, role));
- // 可以将一个用户的多个角色全部赋予;
- claimModel.Claims.AddRange("root".Split(',').Select(s => new Claim(JwtClaimTypes.Role, s)));
- }
- else {
- // claimModel.Claims.Add(new Claim(JwtClaimTypes.Role, role));
- // 可以将一个用户的多个角色全部赋予;
- claimModel.Claims.AddRange("admin".Split(',').Select(s => new Claim(JwtClaimTypes.Role, s)));
- }
- // claimModel.Claims.Add(new Claim(JwtClaimTypes.Role, role));
- //claimModel.Claims.Add(new Claim(JwtClaimTypes.ClientId, activationCodes[0].clientId));
- // claimModel.Claims.Add(new Claim("org", orgCode));
- JwtResponse jwtResponse = JwtHelper.IssueJWT(claimModel);
- //string sha = ShaHashHelper.GetSHA1(jwtResponse.Access_token);
- //RedisHelper.HSet("jwt:"+sha,sha,jwtResponse.Access_token );
- //RedisHelper.Expire("jwt:" + sha, 86400);
- // return jwtResponse;
- }
- }
- }
- }
- return null;
- }
- /// <summary>
- /// 教学认证
- /// </summary>
- /// <param name="request"></param>
- /// <returns></returns>
- [HttpPost("auth")]
- [Authorize(Policy = "lecturer")]
- public BaseJosnRPCResponse Auth(JosnRPCRequest<object> request)
- {
- JsonRPCResponseBuilder builder = JsonRPCResponseBuilder.custom();
- string unionid = GetLoginUser(JwtClaimTypes.Id);
- Expression<Func<Member, bool>> mlinq = null;
- mlinq = m => m.unionid == unionid;
- List<Dictionary<string, object>> dict = new List<Dictionary<string, object>>();
- List<Member> members = memberService.GetList(mlinq);
- if (members.IsNotEmpty())
- {
- foreach (var code in members)
- {
- dict.Add(ActivationValid(code.orgCode, unionid));
- }
- }
- else
- {
- long time = new DateTimeOffset(DateTime.UtcNow).ToUnixTimeSeconds();
- ///处理该机构是否激活人数达到上线
- Expression<Func<Member, bool>> limitlinq = null;
- limitlinq = m => m.orgCode == freeOrg && (m.expires > time || m.expires == -1) && m.status == 1;
- List<Member> countMembers = memberService.GetList(limitlinq);
- Expression<Func<ActivationCode, bool>> alinq = null;
- alinq = m => m.orgCode == freeOrg && m.status == 1;
- List<ActivationCode> activationCodes = activationCodeService.GetList(alinq);
- if (activationCodes.IsNotEmpty())
- {
- //判断组织机构人员是否已经达到最大激活数量
- if (countMembers.IsNotEmpty() && countMembers.Count >= activationCodes[0].maximum)
- {
- //throw new BizException(":HiTeachCE(测试)授权人数超过上限!", 2);
- }
- else
- {
- Member member = new Member
- {
- id = Guid.NewGuid().ToString(),
- orgCode = freeOrg,
- role = "lecturer",
- status = 1,
- expires = time + freeTTL,
- unionid = unionid
- };
- bool flag = memberService.Insert(member);
- if (flag)
- {
- dict.Add(ActivationValid(freeOrg, unionid));
- }
- else
- {
- //throw new BizException("无法加入:HiTeachCE(测试)!", 2);
- }
- }
- }
- else
- {
- }
- }
- return builder.Data(dict).build();
- }
- public Dictionary<string, object> ActivationValid(string orgCode, string unionid)
- {
- //调用ActivationCode
- Expression<Func<Organization, bool>> olinq = null;
- olinq = m => m.code == orgCode && m.status == 1;
- Organization org = organizationService.GetList(olinq).First();
- Dictionary<string, object> dict = new Dictionary<string, object>() { { "org", new { orgCode = "", name = org.name } }, { "flag", false } };
- //验证组织机构的激活码状态,时间,最大人数
- Expression<Func<ActivationCode, bool>> linq = null;
- linq = m => m.orgCode == org.code;
- List<ActivationCode> activationCodes = activationCodeService.GetList(linq);
- long time = new DateTimeOffset(DateTime.UtcNow).ToUnixTimeSeconds();
- if (activationCodes[0].expires > time || activationCodes[0].expires == -1)
- {
- int max = activationCodes[0].maximum;
- Expression<Func<Member, bool>> mlinq = null;
- mlinq = l => l.orgCode == org.code;
- List<Member> members = memberService.GetList(mlinq);
- if (members.Count >= max)
- {
- dict.Add("msg", "产品授权人数超过上限!");
- }
- else
- {
- if (members.Where(x => x.status == 1 && (x.expires > time || x.expires == -1)).Select(x => x.unionid).ToList().Contains(unionid))
- {
- dict["org"] = new { orgCode = org.code, name = org.name };
- dict.Add("flag", true);
- }
- else
- {
- dict.Add("msg", "组织机构未对该用户授权或已经过期!");
- }
- }
- }
- else
- {
- dict.Add("msg", "产品授权已经过期!");
- }
- return dict;
- }
- /// <summary>
- /// 登录
- /// </summary>
- /// <param name="request"></param>
- /// <returns></returns>
- [HttpPost("phoneLogin")]
- public async Task<BaseJosnRPCResponse> PhoneLogin(JosnRPCRequest<Dictionary<string, string>> request)
- {
- JsonRPCResponseBuilder builder = JsonRPCResponseBuilder.custom();
- if (request.@params.TryGetValue("cellphone", out string cellphone) &&
- request.@params.TryGetValue("smsCode", out string smsCode)
- )
- {
- string ticket = ShaHashHelper.GetSHA1(cellphone + smsCode);
- if (RedisHelper.Exists("ticket:" + ticket))
- {
- Dictionary<string, object> dict = UserValid(cellphone);
- dict.Add("ticket", ticket);
- return builder.Data(dict).build();
- }
- if (RedisHelper.Exists(cellphone))
- {
- List<string> RootUsers = BaseConfigModel.Configuration.GetSection("RootUser").Get<List<string>>();
- if (RootUsers.Contains(cellphone) && smsCode.Equals("000000"))
- {
- ///验证通过 验证信息存放在reids
- RedisHelper.HSet("ticket:" + ticket, cellphone, cellphone);
- RedisHelper.Expire("ticket:" + ticket, ticketTTL);
- Dictionary<string, object> dict = UserValid(cellphone);
- dict.Add("ticket", ticket);
- return builder.Data(dict).build();
- }
- else {
- string[] vals = RedisHelper.HVals<string>(cellphone);
- if (vals != null && vals.Length > 0)
- {
- string resdata = await HttpClientHelper.Post(
- BaseConfigModel.Configuration["JPush:Valid"].Replace("{msg_id}", vals[0]),
- BaseConfigModel.Configuration["JPush:AppKey"],
- BaseConfigModel.Configuration["JPush:Secret"], new Dictionary<string, object> { { "code", smsCode } });
- JsonElement element = resdata.FromApiJson<JsonElement>();
- if (element.TryGetProperty("is_valid", out JsonElement json))
- {
- if (json.GetBoolean())
- {
- ///验证通过 验证信息存放在reids
- RedisHelper.HSet("ticket:" + ticket, cellphone, cellphone);
- RedisHelper.Expire("ticket:" + ticket, ticketTTL);
- Dictionary<string, object> dict = UserValid(cellphone);
- dict.Add("ticket", ticket);
- return builder.Data(dict).build();
- }
- else
- {
- throw new BizException("短信验证码过期!", 2);
- }
- }
- else
- {
- throw new BizException("短信验证码过期!", 2);
- }
- }
- else
- {
- throw new BizException("短信验证码过期!", 2);
- }
- }
- }
- else
- {
- throw new BizException("短信验证码过期!", 2);
- }
- }
- else
- {
- throw new BizException("手机号、短信验证码未填写!", 2);
- }
- //如果验证通过则将验证信息缓存至redis 以防再次远程验证不通过
- //string uid = "";
- //List<Organization> organizations = GetOrgByUid(uid);
- //return builder.Data(organizations).build();
- }
- // [HttpPost("GetOrgByUid")]
- public List<Organization> GetOrgByUid(string uid)
- {
- Expression<Func<Member, bool>> mlinq = null;
- mlinq = m => m.unionid == uid && (m.expires > 0 || m.expires == -1) && m.status == 1;
- List<Member> members = memberService.GetList(mlinq);
- if (members.IsNotEmpty())
- {
- Expression<Func<Organization, bool>> olinq = null;
- olinq = o => members.Select(x => x.orgCode).ToList().Contains(o.code) && o.status == 1;
- List<Organization> organizations = organizationService.GetList(olinq);
- ///返回前端后倒计时10秒自动选择组织机构,以防再次验证的时候 reids过期
- return organizations;
- }
- else { return null; }
- }
- private Dictionary<string, object> UserValid(string cellphone)
- {
- Expression<Func<Lecturer, bool>> linq = null;
- linq = m => m.cellphone == cellphone;
- List<Lecturer> lecturers = lecturerService.GetList(linq);
- if (lecturers.IsNotEmpty())
- {
- var lecturer = lecturers[0];
- ClaimModel claimModel = new ClaimModel
- {
- Scope = "WebApp"
- };
- claimModel.Claims.Add(new Claim(JwtClaimTypes.Name, lecturer.username));
- claimModel.Claims.Add(new Claim(JwtClaimTypes.Id, lecturer.unionid));
- claimModel.Claims.Add(new Claim(JwtClaimTypes.PhoneNumber, lecturer.cellphone));
- List<string> RootUsers = BaseConfigModel.Configuration.GetSection("RootUser").Get<List<string>>();
- string role = "admin,lecturer";
- if (RootUsers.Contains(lecturers[0].cellphone))
- {
- role = "root," + role;
- }
- // claimModel.Claims.Add(new Claim(JwtClaimTypes.Role, role));
- // 可以将一个用户的多个角色全部赋予;
- claimModel.Claims.AddRange(role.Split(',').Select(s => new Claim(JwtClaimTypes.Role, s)));
- // claimModel.Claims.Add(new Claim(JwtClaimTypes.ClientId, activationCodes[0].clientId));
- // claimModel.Claims.Add(new Claim("org", orgCode));
- JwtResponse jwtResponse = JwtHelper.IssueJWT(claimModel);
- return new Dictionary<string, object> { { "status", 2 }, { "jwt", jwtResponse } };
- }
- else
- {
- //不存在用户则新增一个
- Random random = new Random();
- string seed = new string(Constant.az09);
- string pfx = "";
- for (int i = 0; i < 4; i++)
- {
- string c = seed.ToCharArray()[random.Next(0, seed.Length)] + "";
- seed.Replace(c, "");
- pfx = pfx + c;
- }
- return new Dictionary<string, object> {
- { "status",1},
- { "user",new Lecturer
- {
- id= Guid.NewGuid().ToString(),
- unionid= Guid.NewGuid().ToString("N"),
- username=cellphone+"手机用户",
- password="",
- account="hitmd-"+cellphone.Substring(cellphone.Length-4,4)+"#"+pfx,
- areaCode="86",
- registerTime=new DateTimeOffset(DateTime.UtcNow).ToUnixTimeSeconds(),
- status=1,
- setaccount=0,
- cellphone=cellphone
- }
- }
- };
- }
- }
- /// <summary>
- /// 初始化登录
- /// </summary>
- /// <param name="request"></param>
- /// <returns></returns>
- [HttpPost("init")]
- public BaseJosnRPCResponse Init(JosnRPCRequest<string> request)
- {
- JsonRPCResponseBuilder builder = JsonRPCResponseBuilder.custom();
- if (!string.IsNullOrEmpty(request.@params))
- {
- var code = securityCode.GetRandomEnDigitalText(4).ToLower();
- var imgbyte = securityCode.GetGifEnDigitalCodeByte(code);
- string base64 = "data:image/png;base64," + Convert.ToBase64String(imgbyte);
- RedisHelper.HSet("captcha:" + request.@params, request.@params, code);
- RedisHelper.Expire("captcha:" + request.@params, smsTTL);
- return builder.Data(base64).build();
- }
- else {
- throw new BizException("随机码为空!", 2);
- }
-
- }
-
- /// <summary>
- /// 发送短信
- /// </summary>
- /// <param name="request"></param>
- /// <returns></returns>
- [HttpPost("sendSMS")]
- public async Task<BaseJosnRPCResponse> SendSMS(JosnRPCRequest<CaptchaSms> request)
- {
- JsonRPCResponseBuilder builder = JsonRPCResponseBuilder.custom();
- string captcha = RedisHelper.HGet<string>("captcha:" + request.@params.randCode, request.@params.randCode);
- List<string> RootUsers = BaseConfigModel.Configuration.GetSection("RootUser").Get<List<string>>();
- bool f = !string.IsNullOrEmpty(captcha) && captcha.Equals(request.@params.captcha.ToLower());
- bool s= RootUsers.Contains(request.@params.cellphone) && request.@params.captcha.ToLower().Equals("0000");
- if (f||s)
- {
- string key = request.@params.cellphone;
- if (RedisHelper.Exists(key))
- {
- string[] vals = RedisHelper.HVals<string>(key);
- if (vals != null && vals.Length > 0)
- {
- Dictionary<string, object> data = new Dictionary<string, object>() { { "msgid", vals[0] }, { "repeat", true } };
- return builder.Data(data).build();
- }
- else
- {
- return builder.Data(await SendMsg(key)).build();
- }
- }
- else
- {
- return builder.Data(await SendMsg(key)).build();
- }
- }
- else {
- throw new BizException("验证码错误!", 2);
- }
- }
- private static async Task<Dictionary<string, object>> SendMsg(string key)
- {
- List<string> RootUsers = BaseConfigModel.Configuration.GetSection("RootUser").Get<List<string>>();
- Dictionary<string, object> data = new Dictionary<string, object>() { { "mobile", key }, { "temp_id", 1 }, { "sign_id", "" } };
-
- if (RootUsers.Contains(key))
- {
- string msgidstr = key;
- RedisHelper.Del(new string[] { key });
- RedisHelper.HSet(key, key, msgidstr);
- RedisHelper.Expire(key, smsTTL);
- return new Dictionary<string, object>() { { "msgid", msgidstr }, { "repeat", false } };
- }
- else {
- string resdata = await HttpClientHelper.Post(
- BaseConfigModel.Configuration["JPush:Push"],
- BaseConfigModel.Configuration["JPush:AppKey"],
- BaseConfigModel.Configuration["JPush:Secret"], data);
- JsonElement element = resdata.FromApiJson<JsonElement>();
- if (element.TryGetProperty("msg_id", out JsonElement msgid))
- {
- string msgidstr = msgid.GetString();
- RedisHelper.Del(new string[] { key });
- RedisHelper.HSet(key, key, msgidstr);
- RedisHelper.Expire(key, smsTTL);
- return new Dictionary<string, object>() { { "msgid", msgidstr }, { "repeat", false } };
- }
- else
- {
- throw new BizException("短信发送失败!", 2);
- }
- }
- }
- }
- }
|