|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324 |
- using Common.system;
-
- using Newtonsoft.Json.Linq;
-
- using System;
- using System.Collections.Generic;
- using System.IO;
- using System.Text;
-
- using XHWK.Model;
-
- namespace XHWK.WKTool.DAL
- {
- public class Interface
- {
- //private string APIRequestAddress = FileToolsCommon.GetConfigValue("APIRequestAddress");
- //private string FileRequestAddress = FileToolsCommon.GetConfigValue("FileRequestAddress");
- //private string schoolfileRequestAddress = FileToolsCommon.GetConfigValue("schoolfileRequestAddress");
- /// <summary>
- /// 激活信息--添加
- /// </summary>
- /// <param name="request"></param>
- /// <returns></returns>
- public int ActivationAdd(string mac, string device, string projectcode)
- {
- try
- {
- string url = APP.certapiUrl + "/activation/add";//地址
- Dictionary<string, object> dic = new Dictionary<string, object>
- {
- { "mac", mac },
- { "device", device },
- { "projectcode", projectcode }
- };
- string body = JsonHelper.ToJson(dic);
-
- string xmlDoc = HttpHelper.HttpPost(body, url);
-
- if (string.IsNullOrEmpty(xmlDoc))
- {
- APP.ServerMsg = "网络异常!";
- return 1;
- }
- else
- {
- JObject obj = JObject.Parse(xmlDoc);
- if (obj != null)
- {
- if (obj["code"].ToString().Equals("0"))
- {
- APP.Signature = obj["obj"].ToString();
- if (!Directory.Exists(APP.dataPath))
- {
- Directory.CreateDirectory(APP.dataPath);
- }
- string ApplicationData = APP.dataPath + "signature.txt";
-
- System.IO.File.WriteAllText(ApplicationData, APP.Signature, Encoding.Default);//存放签名
- return 0;
- }
- else
- {
- APP.ServerMsg = obj["msg"].ToString();
- return Convert.ToInt32(obj["code"].ToString());
- }
- }
- else
- {
- return 1;
- }
- }
- }
- catch (Exception ex)
- {
- APP.ServerMsg = "网络异常!";
- LogHelper.WriteErrLog("【调用接口(RegisterController)】错误日志:" + ex.Message, ex);
- return 1;
- }
- }
- /// <summary>
- /// 激活信息--添加激活历史
- /// </summary>
- /// <param name="request"></param>
- /// <returns></returns>
- public int ActivationAddHistory()
- {
- try
- {
- string url = APP.certapiUrl + "/activation/add_history";
- Dictionary<string, object> dic = new Dictionary<string, object>
- {
- { "sign", APP.Signature }
- };
- string body = JsonHelper.ToJson(dic);
- string xmlDoc = HttpHelper.HttpPost(body, url);
-
- if (string.IsNullOrEmpty(xmlDoc))
- {
- return 1;
- //returnObj.message = "账号密码不正确";
- }
- else
- {
- JObject obj = JObject.Parse(xmlDoc);
- if (obj != null)
- {
- APP.ServerMsg = obj["msg"].ToString();
- return Convert.ToInt32(obj["code"].ToString());
- }
- else
- {
- return 1;
- }
- }
- }
- catch (Exception ex)
- {
- LogHelper.WriteErrLog("【调用接口(RegisterController)】错误日志:" + ex.Message, ex);
- return 1;
- }
- }
- /// <summary>
- /// 登录
- /// </summary>
- /// <param name="request"></param>
- /// <returns></returns>
- public int Login(string loginname, string loginpwd)
- {
- string url = APP.apiUrl + "/user/login";//地址
-
- //1.193.37.200
- string Address = "";//河南 郑州
- HttpHelper.GetAddressIP(out string AddressIP, out AddressIP);
- Dictionary<string, object> dic = new Dictionary<string, object>
- {
- { "loginname", loginname},
- { "loginpwd", loginpwd},
- {"logip", AddressIP},
- {"logaddress", Address},
- {"ultype", "microlecture_pc_t"},
- {"versionnum", FileToolsCommon.GetConfigValue("VersionName")}
- };
- string body = JsonHelper.ToJson(dic);
- ResultVo<Model_UserInfo> result = HttpHelper.PostAndRespSignle<ResultVo<Model_UserInfo>>(url, postData: body);
- if (result != null)
- {
- APP.UserInfo = new Model_UserInfo();
- APP.ServerMsg = result.msg;
- if (result.obj != null)
- {
- APP.UserInfo = result.obj;
- }
- return result.code;
- }
- else
- {
- APP.ServerMsg = "网络异常!";
- APP.UserInfo = new Model_UserInfo();
- return 1;
- }
- }
- /// <summary>
- /// 下载头像
- /// </summary>
- /// <param name="headPortrait"></param>
- /// <param name="SavePath"></param>
- /// <returns></returns>
- public bool DownloadAvatar(string headPortrait, string SavePath)
- {
- string url = APP.showImageUrl + headPortrait;
- bool result = HttpHelper.GetDataGetHtml(url, SavePath, "");
- return result;
- }
- /// <summary>
- /// 教师教材列表
- /// </summary>
- /// <param name="request"></param>
- /// <returns></returns>
- public int TsubjectbookList()
- {
- APP.TsubjectbookList = new List<Model_TsubjectbookList>();
- try
- {
- string url = APP.apiUrl + "/tsubjectbook/list";//地址
- Dictionary<string, int> dic = new Dictionary<string, int>
- {
- { "teacherid",APP.UserInfo.Userid}
- };
- string body = JsonHelper.ToJson(dic);
- ResultVo<List<Model_TsubjectbookList>> result = HttpHelper.PostAndRespSignle<ResultVo<List<Model_TsubjectbookList>>>(url, postData: body);
- if (result != null)
- {
- APP.ServerMsg = result.msg;
- APP.TsubjectbookList = result.obj;
- return result.code;
- }
- else
- {
- APP.ServerMsg = "网络异常!";
- return 1;
- }
- }
- catch (Exception ex)
- {
- LogHelper.WriteErrLog("【调用接口(RegisterController)】错误日志:" + ex.Message, ex);
- return 1;
- }
- }
- /// <summary>
- /// 章节--列表
- /// </summary>
- /// <param name="request"></param>
- /// <returns></returns>
- public int DirectorList(string lsbid, int belong, int createid)
- {
- APP.DirectorList = new List<Model_DirectorList>();
- try
- {
- string url = APP.apiUrl + "/director/list";//地址
- Dictionary<string, string> dic = new Dictionary<string, string>
- {
- { "lsbid", lsbid },
- { "belong", belong.ToString() },
- { "createid", createid.ToString() }
- };
- string body = JsonHelper.ToJson(dic);
- ResultVo<List<Model_DirectorList>> result = HttpHelper.PostAndRespSignle<ResultVo<List<Model_DirectorList>>>(url, postData: body);
- if (result != null)
- {
- APP.ServerMsg = result.msg;
- APP.DirectorList = result.obj;
- return result.code;
- }
- else
- {
- APP.ServerMsg = "网络异常!";
- return 1;
- }
- }
- catch (Exception ex)
- {
- LogHelper.WriteErrLog("【调用接口(RegisterController)】错误日志:" + ex.Message, ex);
- return 1;
- }
- }
- /// <summary>
- /// 资源--添加
- /// </summary>
- /// <param name="request"></param>
- /// <returns></returns>
- public int ResourceAdd(Model_ResourceAdd model)
- {
- APP.DirectorList = new List<Model_DirectorList>();
- try
- {
- string url = APP.apiUrl + "/resource/add";//地址
- Dictionary<string, object> dic = new Dictionary<string, object>
- {
- // converted: 0
- //createid: 80
- //directorid: 1009
- //duration: 39
- //imgUrl: ""
- //level: 2
- //lsbid: 40
- //mp4code: "h264"
- //resourcebelong: 3
- //resourceclass: 2
- //resourcecover: "12/resource/20200917/4f297df0-f8c0-11ea-adf5-81f24b97d4ff/weather_pic.jpg"
- //resourcename: "weather_pic"
- //resourcesize: 6105268
- //resourcetype: 0
- //resourceurl: "12/resource/20200917/4f297df0-f8c0-11ea-adf5-81f24b97d4ff/weather_pic.mp4"
- //schoolid: 12
- //suffix: "mp4"
- //uid: 80
- { "converted", model.converted },
- { "createid", model.createid }
- };
- if (model.directorid != "999999")//章节上传可以不选
- {
- dic.Add("directorid", model.directorid);
- }
- dic.Add("duration", model.duration);
- dic.Add("subjectid", model.subjectid);
- dic.Add("imgUrl", model.imgUrl);
- dic.Add("level", model.level);
- dic.Add("lsbid", model.lsbid);
- dic.Add("mp4code", model.mp4code);
- dic.Add("resourcebelong", model.resourcebelong);
- dic.Add("resourceclass", model.resourceclass);
- dic.Add("resourcecover", model.resourcecover);
- dic.Add("resourcename", model.resourcename);
- dic.Add("resourcesize", model.resourcesize);
- dic.Add("resourcetype", model.resourcetype);
- dic.Add("resourceurl", model.resourceurl);
- dic.Add("schoolid", model.schoolid);
- dic.Add("suffix", model.suffix);
- //dic.Add("uid", model.uid);
-
-
- string body = JsonHelper.ToJson(dic);
- string xmlDoc = HttpHelper.HttpPost(body, url);
- JObject obj = JObject.Parse(xmlDoc);
- if (obj != null)
- {
- APP.ServerMsg = obj["msg"].ToString();
- return Convert.ToInt32(obj["code"].ToString());
- }
- else
- {
- APP.ServerMsg = "网络异常!";
- return 1;
- }
- }
- catch (Exception ex)
- {
- APP.ServerMsg = "网络异常!";
- LogHelper.WriteErrLog("【调用接口(RegisterController)】错误日志:" + ex.Message, ex);
- return 1;
- }
- }
- }
- }
|