From 6bd3a04a9db0b15456a46865dfa880449d044c80 Mon Sep 17 00:00:00 2001 From: yubaolee Date: Fri, 8 Jul 2016 19:08:47 +0800 Subject: [PATCH] update README --- .../SSO/Models/Services/AppInfoService.cs | 23 +++++++++ .../SSO/Models/Services/AppUserService.cs | 16 ++++++ .../Models/Services/UserAuthSessionService.cs | 51 +++++++++++++++++++ README.md | 6 +++ 4 files changed, 96 insertions(+) create mode 100644 OpenAuth.WebApi/Areas/SSO/Models/Services/AppInfoService.cs create mode 100644 OpenAuth.WebApi/Areas/SSO/Models/Services/AppUserService.cs create mode 100644 OpenAuth.WebApi/Areas/SSO/Models/Services/UserAuthSessionService.cs diff --git a/OpenAuth.WebApi/Areas/SSO/Models/Services/AppInfoService.cs b/OpenAuth.WebApi/Areas/SSO/Models/Services/AppInfoService.cs new file mode 100644 index 00000000..736b4cb8 --- /dev/null +++ b/OpenAuth.WebApi/Areas/SSO/Models/Services/AppInfoService.cs @@ -0,0 +1,23 @@ +using System; + +namespace OpenAuth.WebApi.Areas.SSO.Models.Services +{ + public class AppInfoService : ServiceContext + { + public AppInfo Get(string appKey) + { + //可以从数据库读取 + return new AppInfo + { + AppKey = "670b14728ad9902aecba32e22fa4f6bd", + AppSecret = "670b14728ad9902aecba32e22fa4f6bd", + Icon = "/Content/img/default-app.png", + IsEnable = true, + Remark = "OpenAuth.net", + ReturnUrl = "http://localhost:53050", + Title = "OpenAuth.Net", + CreateTime = DateTime.Now, + }; + } + } +} \ No newline at end of file diff --git a/OpenAuth.WebApi/Areas/SSO/Models/Services/AppUserService.cs b/OpenAuth.WebApi/Areas/SSO/Models/Services/AppUserService.cs new file mode 100644 index 00000000..5c86c74b --- /dev/null +++ b/OpenAuth.WebApi/Areas/SSO/Models/Services/AppUserService.cs @@ -0,0 +1,16 @@ +namespace OpenAuth.WebApi.Areas.SSO.Models.Services +{ + public class AppUserService : ServiceContext + { + public AppUser Get(string username = "") + { + //模拟用户 + return new AppUser + { + Nick = "超级管理员", + UserName = username, + UserPwd = "xxxxxxxxx" + }; + } + } +} \ No newline at end of file diff --git a/OpenAuth.WebApi/Areas/SSO/Models/Services/UserAuthSessionService.cs b/OpenAuth.WebApi/Areas/SSO/Models/Services/UserAuthSessionService.cs new file mode 100644 index 00000000..6f26100d --- /dev/null +++ b/OpenAuth.WebApi/Areas/SSO/Models/Services/UserAuthSessionService.cs @@ -0,0 +1,51 @@ +using System; +using Infrastructure.Cache; + +namespace OpenAuth.WebApi.Areas.SSO.Models.Services +{ + public class UserAuthSessionService : ServiceContext + { + public UserAuthSessionService() + { + SetCacheInstance(new SessionContext()); + } + + public bool Create(UserAuthSession model) + { + //设置缓存 + return CacheContext.Set(model.Token, model); + } + + public UserAuthSession Get(string token) + { + var sessionCacheItem = CacheContext.Get(token); + return sessionCacheItem; + } + + public bool GetCache(string token) + { + var cache = Get(token); + if (cache == null) return false; + + if (cache.InvalidTime > DateTime.Now) + { + //延长 + cache.InvalidTime = DateTime.Now.AddMinutes(5); + //设置缓存 + CacheContext.Set(cache.Token, cache); + + return true; + } + + //移除无效Session缓存 + Remove(token); + + return false; + } + + public void Remove(string token) + { + CacheContext.Remove(token); + } + } +} \ No newline at end of file diff --git a/README.md b/README.md index 177b43fc..8187b6ef 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,12 @@ `在线演示地址` http://115.28.10.123:1314 ####项目最新进度 +`1.2 正式版(2016-7-8)` + +* 增加SSO单点登录; +* 添加WebApi项目,为第三方提供接口; +* 添加WebTest项目,模拟第三方网站; + `1.1 正式版(2016-5-27)` * 实现分级授权,用户只能在自己拥有的资源/部门/角色基础上操作;