# vuepress密码验证插件

一个用于为你的博客添加 访问验证功能的 vuepress 插件。

# 安装

yarn add vuepress-plugin-posts-encrypt
1

# Usage 使用

# Step 1: 在 .vuepress/config.js 中初始化配置

// .vuepress/config.js
module.exports = {

  // other options...
  plugins: [
    [
      'posts-encrypt',
      {
        route: '/auth',
        passwd: '123456',
        encryptInDev: true,
        expires: 1000  * 60
      }
    ]
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

👇所有配置项 (opens new window) 参见下方 Configs 部分 👇

# Step 2: 配置博客中需要加密访问的文章

---
title: A Private Post
date: 2021-09-03
categories:
  - Profile
tags:
  - resume
secret: true
---
1
2
3
4
5
6
7
8
9
  • 同时,你也可以通过 passwd 配置来为每篇文章单独设置不同的密码
---
title: A Private Post
date: 2021-09-03
categories:
  - Profile
tags:
  - resume
secret: true
passwd: 1233211234567
---
1
2
3
4
5
6
7
8
9
10

就是这样! 🚀🚀🚀

# Step3: 运行起来看下效果吧

BTW开发环境下,还需要配置 encryptInDev: true

执行如下命令,启动开发服务,

vuepress dev docs
1

# 配置项

# 支持自定义模板

自定义模板的场景下,插件需要向你的模板文件中注入部分逻辑,如:密码校验 相关的逻辑。所以需要在模板中提供注入这部分代码的标记。

以下标记除了 <%validate_js_tag%> & <%crypto_inject_tag%> 之外,其他都是可选的,你可以自由选择:

BTW以下标记都是自上而下依次插入到模板中的,所以需要额外注意标记的书写位置

模板中内容注入的位置标记包括如下几种

# <%iview_css_tag%> 【非必须】

iView (opens new window) 组件库 CSS 资源注入位置标记

  • 需要在 injectConfig 配置中设置 iview: true

# <%animate_css_tag%> 【非必须】

Animate.css (opens new window) 注入位置标记

  • 需要在 injectConfig 配置中设置 animate: true

# <%iview_js_tag%> 【非必须】

iView (opens new window) 组件库 JS 注入位置标记

  • 需要在 injectConfig 配置中设置 iview: true

# <%minified_css_tag%> 【非必须】

外部 less 文件编译后的注入位置标记

  • 如果你不想在模板里面写 css,这个配置可以允许你将模板中需要用到的样式文件单独抽离到 less 文件中,插件会帮你 编译并插入 到对应位置。 你只需要在 injectConfigless 设置中指定样式文件的绝对路径即可

# <%crypto_inject_tag%> 【必须】

CryptoJS (opens new window) 脚本文件插入位置

# <%validate_js_tag%> 【必须】

密码校验以及已验证路由的存储相关逻辑的注入位置标记

# 支持设置密码过期时间

默认情况下,已验证通过的路由在同一台设备同一个浏览器且用户没有清理本地缓存的情况下,下次进来是不需要再次进行验证的,因为是存储在 localstorage 中的

如果你不想这样的话,可以为密码设置 expires,单位是毫秒(ms)。这个过期时间是针对每个路由而言的,而不是所有路由。

BTW: 过期时间不要设置得过短,否则可能会造成路由死循环

# 以下是支持的所有配置选项:

interface InjectConfig {
  // 自定义模板外联的less文件地址
  less?: string
  // 是否注入IView组件库,默认 false
  iview?: boolean
  // 是否注入anmitecss动画库,默认 false
  animate?: boolean
}

interface Options {
  // 验证页面的路由地址, 默认`/auth`
  route?: string
  // 默认密码
  passwd: string
  // 自定义密码验证模板
  template?: string
  // 开发环境是否加密,默认 false
  encryptInDev?: boolean
  // 密码过期时间,默认永久有效,单位:ms
  expires?: number
  // 自定义模板时是否需要注入其他资源
  injectConfig?: InjectConfig
}

const options: Options = {
  route: '/auth', // 默认的验证页路由,最终路由会拼接上用户的 base 配置
  passwd: 'hello world', // 默认密码 `hello world`
  template: '', // 自定义模板的文件路径,不指定则使用默认模板
  encryptInDev: false, // 开发模式下是否开启文章加密(可用于预览), 默认 false
  expires: 0, // 密码过期时间,默认永不过期
  injectConfig: {
    // 自定义模板时,需要注入的外部资源配置
    less: '',
    iview: false,
    animate: false
  }
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37

👏👏 One key triple connection 👏👏

# Changelog

CHANGELOG.md (opens new window)

# 常见问题

# 验证页面添加文字问题

修改了

node_modules\vuepress-plugin-posts-encrypt\assets\index.html

56行插入

 <div class="text">
              请加微信公众号: <span style="color: rgb(45, 140, 240);">时不待我</span></div>
              <div class="text">
                发送:<span style="color: rgb(45, 140, 240);">博客口令</span> 获得解锁口令
              </div>
1
2
3
4
5

# 资源加载太慢问题

自行把网络加载资源放到vuepress\docs.vuepress\public\css-js下

修改

vuepress-plugin-posts-encrypt\assets\index.html

19行

  <script type="text/javascript" src="./css-js/vue.js"></script>
1

node_modules\vuepress-plugin-posts-encrypt\lib\utils\index.js

26行

exports.IVIEW_CSS_TAG = `<link rel="stylesheet" type="text/css" href="./css-js/iview.css" />`;
exports.ANIMATECSS_TAG = `<link rel="stylesheet" href="./css-js/animate.min.css" />`;
exports.IVIEW_JS_TAG = `<script type="text/javascript" src="./css-js/iview.min.js"></script>`;
1
2
3

node_modules\vuepress-plugin-posts-encrypt\lib\utils\encrypt.js

14行

exports.CRYPTO_INJECT = `<script src="./css-js/crypto-js.min.js" integrity="sha512-E8QSvWZ0eCLGk4km3hxSsNmGWbLtSCSUcewDQPQWZF6pEU8GlT8a5fF32wOl1i8ftdMhssTrF/OhyGWwonTcXA==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>`;
1

字体包放到vuepress\docs.vuepress\public\fonts\css-js

下载地址

https://unpkg.com/view-design@4.7.0/dist/styles/fonts/ionicons.ttf
https://unpkg.com/view-design@4.7.0/dist/styles/fonts/ionicons.woff
https://unpkg.com/view-design@4.7.0/dist/styles/fonts/ionicons.woff2
1
2
3

# License

MIT (opens new window)