You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.3 KiB
C#
46 lines
1.3 KiB
C#
/*
|
|
*单独提取这个接口,为了以下几点:
|
|
* 1、可以方便的实现webapi 和本地登录相互切换
|
|
* 2、可以方便的使用mock进行单元测试
|
|
*/
|
|
|
|
using Infrastructure;
|
|
using OpenAuth.App.SSO;
|
|
|
|
namespace OpenAuth.App.Interface
|
|
{
|
|
public interface IAuth
|
|
{
|
|
/// <summary>
|
|
/// 检验token是否有效
|
|
/// </summary>
|
|
/// <param name="token">token值</param>
|
|
/// <param name="otherInfo"></param>
|
|
/// <returns></returns>
|
|
bool CheckLogin(string token = "", string otherInfo = "");
|
|
AuthStrategyContext GetCurrentUser();
|
|
string GetUserName(string otherInfo = "");
|
|
string GetUserNickName(string otherInfo = "");
|
|
string GetUserId(string otherInfo = "");
|
|
|
|
/// <summary>
|
|
/// 登录接口
|
|
/// </summary>
|
|
/// <param name="appKey">登录的应用appkey</param>
|
|
/// <param name="username">用户名</param>
|
|
/// <param name="pwd">密码</param>
|
|
/// <returns></returns>
|
|
Response<LoginResult> Login(string appKey, string username, string pwd);
|
|
/// <summary>
|
|
/// 退出登录
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
bool Logout();
|
|
|
|
|
|
void CoverToken(string account, string name);
|
|
|
|
bool IsSystem();
|
|
}
|
|
}
|