实时

您的位置:首页>品牌 >

使用 IdentityServer 保护 Vue 前端

前情提要

《使用 IdentityServer 保护 Web 应用(AntD Pro 前端 + SpringBoot 后端)》中记录了使用 IdentityServer 保护前后端的过程,其中的前端工程是以 UMI Js 为例。今天,再来记录一下使用 IdentityServer 保护 Vue 前端的过程,和 UMI Js 项目使用 umi plugin 的方式不同,本文没有使用 Vue 相关的插件,而是直接使用了 oidc-client js。


【资料图】

另外,我对 Vue 这个框架非常不熟,在 vue-router 这里稍微卡住了一段时间,后来瞎试居然又成功了。针对这个问题,我还去 StackOverflow 上问了,但并没有收到有效的回复:https://stackoverflow.com/questions/74769607/how-to-access-vues-methods-from-navigation-guard

准备工作

首先,需要在 IdentityServer 服务器端注册该 Vue 前端应用,仍然以代码写死这个客户端为例:

new Client{ClientId = "vue-client",ClientSecrets = { new Secret("vue-client".Sha256()) },ClientName = "vue client",AllowedGrantTypes = GrantTypes.Implicit,AllowAccessTokensViaBrowser = true,RequireClientSecret = false,RequirePkce = true,RedirectUris ={"http://localhost:8080/callback","http://localhost:8080/static/silent-renew.html",},AllowedCorsOrigins = { "http://localhost:8080" },AllowedScopes = { "openid", "profile", "email" },AllowOfflineAccess = true,AccessTokenLifetime = 90,AbsoluteRefreshTokenLifetime = 0,RefreshTokenUsage = TokenUsage.OneTimeOnly,RefreshTokenExpiration = TokenExpiration.Sliding,UpdateAccessTokenClaimsOnRefresh = true,RequireConsent = false,};

在 Vue 工程里安装 oidc-client

yarn add oidc-client

在 Vue 里配置 IdentityServer 服务器信息

在项目里添加一个 src/security/security.js文件:

import Oidc from "oidc-client"function getIdPUrl() {return "https://id6.azurewebsites.net";}Oidc.Log.logger = console;Oidc.Log.level = Oidc.Log.DEBUG;const mgr = new Oidc.UserManager({authority: getIdPUrl(),client_id: "vue-client",redirect_uri: window.location.origin + "/callback",response_type: "id_token token",scope: "openid profile email",post_logout_redirect_uri: window.location.origin + "/logout",userStore: new Oidc.WebStorageStateStore({store: window.localStorage}),automaticSilentRenew: true,silent_redirect_uri: window.location.origin + "/silent-renew.html",accessTokenExpiringNotificationTime: 10,})export default mgr

在 main.js 里注入登录相关的数据和方法数据

不借助任何状态管理包,直接将相关的数据添加到 Vue 的 app 对象上:

import mgr from "@/security/security";const globalData = {isAuthenticated: false,user: "",mgr: mgr}

方法

const globalMethods = {async authenticate(returnPath) {console.log("authenticate")const user = await this.$root.getUser();if (user) {this.isAuthenticated = true;this.user = user} else {await this.$root.signIn(returnPath)}},async getUser() {try {return await this.mgr.getUser();} catch (err) {console.error(err);}},signIn(returnPath) {returnPath ? this.mgr.signinRedirect({state: returnPath}) : this.mgr.signinRedirect();}}

修改 Vue 的实例化代码

new Vue({router,data: globalData,methods: globalMethods,render: h => h(App),}).$mount("#app")

修改 router

在 src/router/index.js中,给需要登录的路由添加 meta 字段:

Vue.use(VueRouter)const router = new VueRouter({{path: "/private",name: "private page",component: resolve => require(["@/pages/private.vue"], resolve),meta: {requiresAuth: true}}});export default router

接着,正如在配置中体现出来的,需要一个回调页面来接收登录后的授权信息,这可以通过添加一个 src/views/CallbackPage.vue文件来实现:

<script>export default {async created() {try {const result = await this.$root.mgr.signinRedirectCallback();const returnUrl = result.state ?? "/";await this.$router.push({path: returnUrl})}catch(e){await this.$router.push({name: "Unauthorized"})}}}</script>

然后,需要在路由里配置好这个回调页面:

import CallbackPage from "@/views/CallbackPage.vue";Vue.use(VueRouter)const router = new VueRouter({routes: {path: "/private",name: "private page",component: resolve => require(["@/pages/private.vue"], resolve),meta: {requiresAuth: true}},{path: "/callback",name: "callback",component: CallbackPage}});export default router

同时,在这个 router 里添加一个所谓的“全局前置守卫”(https://router.vuejs.org/zh/guide/advanced/navigation-guards.html#%E5%85%A8%E5%B1%80%E5%89%8D%E7%BD%AE%E5%AE%88%E5%8D%AB),注意就是这里,我碰到了问题,并且在 StackOverflow 上提了这个问题。在需要调用前面定义的认证方法时,不能使用 router.app.authenticate,而要使用 router.apps[1].authenticate,这是我通过 inspect router发现的:

...router.beforeEach(async function (to, from, next) {let app = router.app.$data || {isAuthenticated: false}if(app.isAuthenticated) {next()} else if (to.matched.some(record => record.meta.requiresAuth)) {router.apps[1].authenticate(to.path).then(()=>{next()})}else {next()}})export default router

到了这一步,应用就可以跑起来了,在访问 /private 时,浏览器会跳转到 IdentityServer 服务器的登录页面,在登录完成后再跳转回来。

添加 silent-renew.html

注意 security.js,我们启用了 automaticSilentRenew,并且配置了 silent_redirect_uri的路径为 silent-renew.html。它是一个独立的引用了 oidc-client js 的 html 文件,不依赖 Vue,这样方便移植到任何前端项目。

oidc-client.min.js

首先,将我们安装好的 oidc-client 包下的 node_modules/oidc-client/dist/oidc-client.min.js文件,复制粘贴到 public/static目录下。

然后,在这个目录下添加 public/static/silent-renew.html文件。

Silent Renew Token<script src="oidc-client.min.js"></script><script>console.log("renewing tokens");new Oidc.UserManager({userStore: new Oidc.WebStorageStateStore({ store: window.localStorage })}).signinSilentCallback();</script>

给 API 请求添加认证头

最后,给 API 请求添加上认证头。前提是,后端接口也使用同样的 IdentityServer 来保护(如果是 SpringBoot 项目,可以参考《[使用 IdentityServer 保护 Web 应用(AntD Pro 前端 + SpringBoot 后端) - Jeff Tian的文章 - 知乎](https://zhuanlan.zhihu.com/p/533197284) 》);否则,如果 API 是公开的,就不需要这一步了。

对于使用 axios 的 API 客户端,可以利用其 request interceptors,来统一添加这个认证头,比如:

import router from "../router"import Vue from "vue";const v = new Vue({router})const service = axios.create({// 公共接口--这里注意后面会讲baseURL: process.env.BASE_API,// 超时时间 单位是ms,这里设置了3s的超时时间timeout: 20 * 1000});service.interceptors.request.use(config => {const user = v.$root.user;if(user) {const authToken = user.access_token;if(authToken){config.headers.Authorization = `Bearer ${authToken}`;}}return config;}, Promise.reject)export default service

关键词:

推荐阅读
前情提要《使用IdentityServer保护Web应用(AntDPro前端+SpringBoot后端)》中记录了使用IdentitySer

2022-12-19 01:04:38

追梦举报驱逐雄鹿球迷赛后称自己遭到生命威胁,雄鹿队,湖人,勇士,格林,勒布朗詹姆斯,步行者队

2022-12-18 11:33:46

varplayer=polyvPlayer({ & 039;wrap & 039;: & 039; plv_608c319f9fb3f496916a478b599bc982_6 & 039;, & 039;width & 039;: & 039;680 & 039;, & 039;height & 039;: & 039;381 & 039;, & 039;vid & 039;: & 039;608c319f9f

2022-12-17 14:45:35

昨天基金收益负2330元,见下面的截图1,昨天各持有基金收益情况,见截图2和截图3,6绿7红,券券是昨天的渣渣。昨晚欧美股市普跌,特别是美股大

2022-12-16 23:54:30

证券代码:600009证券简称:上海机场公告编号:临2022-082上海国际机场股份有限公司2022年11月运输生产情况简报本公司董事会及全

2022-12-16 16:08:32

12月16日盘中消息,9点50分灵康药业(603669)触及涨停板。目前价格7 04,上涨10 0%。其所属行业化学制药目前上涨。领涨股为广生堂。该股为阿

2022-12-16 09:44:24

卧龙地产集团股份有限公司独立董事    关于为间接控股股东提供担保的事前认可意见  我们作为卧龙地产集团股份有限公司(以下简称“公司”

2022-12-15 21:04:52

截至2022年12月15日收盘,如意集团(002193)报收于12 11元,上涨9 99%,涨停,换手率21 78%,成交量56 84万手,成交额6 81亿元。

2022-12-15 15:10:17

招商轮船(601872)12月15日在投资者关系平台上答复了投资者关心的问题。投资者:春节快到了,为了维护股价,回报投资者信赖,能不能给我这样坚

2022-12-15 09:37:57

上海纳尔实业股份有限公司上市公司名称:上海纳尔实业股份有限公司股票上市地点:深圳证券交易所股票简称:纳尔股份股票代码:002825信息披露

2022-12-14 20:28:01

万年青(000789)12月14日在投资者关系平台上答复了投资者关心的问题。投资者:今年以来有没有机构投资者到公司调研?万年青董秘:您好,受疫情

2022-12-14 14:44:55

智通财经APP讯,步阳国际公布配发结果,该公司全球发售2 5亿股,其中香港发售占40%,国际配售占60%,超额配股权并未且将不会行使;发售价已厘定

2022-12-14 08:05:38

智通财经APP讯,振华股份公告,随着公司业务的发展,货物进出口规模逐年扩大,公司在物流、仓储方面的业务需求增大,公司拟通过整合现有物流板

2022-12-13 17:23:38

同花顺(300033)金融研究中心12月13日讯,有投资者向榕基软件(002474)提问,请问公司以后会有数字确权概念吗?公司回答表示,您好!公司暂

2022-12-13 10:57:42

证券之星讯,根据12月8日市场公开信息、上市公司公告及交易所披露数据整理,熊猫乳品(300898)最新董监高及相关人员股份变动情况:2022年12月

2022-12-12 21:03:20

云南临沧博尚镇勐准村,当地老百姓如今的生活与往昔相比发生了翻天覆地的变化。走进民居,可以看到村民们如今已实现顺畅使用5G手机,通过视频

2022-12-12 15:04:11

股票代码:000620          股票简称:新华联            公告编号:2022-087            新华联文化旅游

2022-12-11 15:59:04

截至2022年12月8日收盘,华邦健康(002004)报收于5 74元,上涨2 14%,换手率3 82%,成交量71 74万手,成交额4 11亿元。12月8日的

2022-12-09 09:13:24

迪哲医药:源头创新,立足中国,剑指全球迪哲医药坚持源头创新,依靠顶级研发团队与自身技术平台开发真正有临床需求和全球竞争力的产品,多项

2022-12-08 08:11:34

截至2022年12月6日收盘,天亿马(301178)报收于26 91元,下跌1 64%,换手率2 19%,成交量0 95万手,成交额2578 74万元。12月6

2022-12-06 19:59:55