70 lines
2.2 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using FI.FIC;
using FI.FIC.Contracts;
using FI.FIC.Contracts.DataObjects;
using FI.FIC.Contracts.DataObjects.Enumeration;
using FI.FIC.DataProviders.HelpClass;
using FI.FIC.Models;
using Foresight;
using IronIntel.Contractor.Users;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Data.SqlClient;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using System.Web;
namespace IronIntel.Contractor
{
public class HostRequesEntry
{
public static object ProcessNetRequest(FICNetRequestObject netQuery, HttpContext context)
{
switch (netQuery.MethodName)
{
case "ChangePassword":
var lc = FICHostEnvironment.GetCurrentLoginContext(context);
if (!UserManagement.ChangePassword(netQuery.LoginIID, netQuery.Parameters[0].ToString(), netQuery.Parameters[1].ToString(), lc.SessionID, context.Request.UserHostName))
{
throw new FIException(0X65026303, "", null);
}
break;
case "LoginFIC"://跳转到G4IronIntel没有G4版本
return "";
case "GetVersion":
return SystemParams.GetFICVersion();
default:
//rsp.Result = something
var service = new HostService();
service.Request = netQuery;
var method = typeof(HostService).GetMethod(netQuery.MethodName);
try
{
return method.Invoke(service, netQuery.Parameters);
}
catch (TargetInvocationException ex)
{
if (ex.InnerException != null)
{
throw ex.InnerException;
}
throw;
}
}
return null;
}
}
public class LoginModel
{
public int ErrorCode { get; set; }
public string Message { get; set; }
public string Cookie { get; set; }
}
}