123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- using System.Collections.Generic;
- using Microsoft.AspNetCore.Mvc;
- using Microsoft.Extensions.Logging;
- using MySystem.MainModels;
- using System.Linq;
- using Library;
- using LitJson;
- using System;
- using System.IO;
- namespace MySystem.Controllers
- {
- public class HomeController : Controller
- {
- private readonly ILogger<HomeController> _logger;
- public HomeController(ILogger<HomeController> logger)
- {
- _logger = logger;
- }
- public IActionResult Index()
- {
- return View();
- }
- public IActionResult Error()
- {
- string isapi = Request.Headers["Api"].ToString();
- if (isapi != "1")
- {
- if (Response.StatusCode == 500)
- {
- return Redirect("/public/errpage/pc/500.html");
- }
- else if (Response.StatusCode == 502)
- {
- return Redirect("/public/errpage/pc/502.html");
- }
- else if (Response.StatusCode == 404)
- {
- return Redirect("/public/errpage/pc/404.html");
- }
- else if (Response.StatusCode == 401)
- {
- return Content("401");
- }
- }
- return View();
- }
- public string auth(string app_id, string source, string application_type, string app_auth_code, string state)
- {
- return app_id + "\n" + source + "\n" + application_type + "\n" + app_auth_code + "\n" + state + "\n" + Request.QueryString.ToString();
- }
- public string test()
- {
- string result = "";
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- return result;
- }
- public string makeCode()
- {
- string code = "";
- List<string> list = new List<string>();
- string start = "LKB0123090019999";
- for(int i = 0;i<=9999;i++)
- {
- string num = i.ToString();
- for(int j = 0;j< 4 - i.ToString().Length;j++)
- {
- num = "0" + num;
- }
- string sn = dbconn.Encrypt3DES(start + num + function.get_Random(8), "l2k0b2#3");
- sn = sn.Substring(0, sn.Length - 1);
- code += System.Web.HttpUtility.UrlEncode(sn) + "\n";
- }
- return code;
- }
- }
- }
|