Confluence插件开发 - 5 - 给插件增加个管理员页面

注:阅读此篇时,请确保你的开发环境已经正常配置,可以正常使用命令行工具创建插件demo

简介

经过上四篇介绍,我们创建一个基本插件后端服务,有时我们的后台功能期望能在页面上方便配置不必要每次调整参数发版上线,给运营人员提供一个方便的配置界面。本篇描述如何创建一个最基本的管理员配置界面,帮助我们控制插件功能。

Let’s start

首先我们需要创建一个rest接口提供页面数据,这里我们使用【Confluence插件开发 - 4 - 给插件增加rest接口】中的接口,访问地址:/rest/plugin-demo/1.0/demo,GET请求返回{"code":0,"msg":"SUCCESS"},我们期望将msg数据展示到我们的管理员页面上。

创建静态资源文件

使用atlas-create-confluence-plugin命令创建一个空插件时候,配置文件atlassian-plugin.xml中默认会有如下类似的静态资源配置信息,系统默认将js和css文件创建好并帮你配置到web-resource中。

    <!-- add our web resources -->
    <web-resource key="plugin-demo-resources" name="plugin-demo Web Resources">
        <dependency>com.atlassian.auiplugin:ajs</dependency>
        
        <resource type="download" name="plugin-demo.css" location="/css/plugin-demo.css"/>
        <resource type="download" name="plugin-demo.js" location="/js/plugin-demo.js"/>
        <resource type="download" name="images/" location="/images"/>

        <context>plugin-demo</context>

除了上述默认配置,我们在项目工程resources目录中创建demo.vm作为我们的配置管理页面,并修改atlassian-plugin.xml web-resource中增加配置

<resource type="velocity" name="template" location="/demo.vm"/>

最终配置:

    <!-- add our web resources -->
    <web-resource key="plugin-demo-resources" name="plugin-demo Web Resources">
        <dependency>com.atlassian.auiplugin:ajs</dependency>
        
        <resource type="download" name="plugin-demo.css" location="/css/plugin-demo.css"/>
        <resource type="download" name="plugin-demo.js" location="/js/plugin-demo.js"/>
        <resource type="download" name="images/" location="/images"/>
        <resource type="velocity" name="template" location="/demo.vm"/>
        <context>plugin-demo</context>
    </web-resource>

编辑我们创建好的demo.vm文件粘贴如下内容,主要打印一个“Hello World”并且增加一些简单的html标签,期望通过点击测试按钮在span标签内展示结果。内容中的meta标签表示告诉confluence要把body装饰一下包裹成admin页面样式,$webResourceManager.requireResourcesForContext("plugin-demo")表示从配置文件中读取plugin-demo名字的web资源文件配置,此配置需要放置到title后面。

<html>
<head>
    <title>Plugin demo</title>
##    This tells the application that it needs to use the admin decorator around the body of this page
    <meta name="decorator" content="atl.admin"/>
    $webResourceManager.requireResourcesForContext("plugin-demo")
</head>
<body>
Hello World
<div>
    <p>Get请求结果展示:</p>
    <span id="get-result"></span>
    <button id="get-result-btn" type="submit">测试</button>
</div>
</body>
</html>

在/resources/s/plugin-demo.js文件中增加如下内容,注册按钮click事件

(function ($) { // this closure helps us keep our variables to ourselves.
// This pattern is known as an "iife" - immediately invoked function expression

    // form the URL
    var url = AJS.contextPath() + "/rest/plugin-demo/1.0/";

    // wait for the DOM (i.e., document "skeleton") to load. This likely isn't necessary for the current case,
    // but may be helpful for AJAX that provides secondary content.
    $(document).ready(function () {
        $("#get-result-btn").bind("click", getResult);
    });
})(AJS.$ || jQuery);

function getResult() {
    var url = AJS.contextPath() + "/rest/plugin-demo/1.0/demo";
    AJS.$.ajax({
        url: url,
        dataType: "json"
    }).then(function (resultMsg) {
        AJS.$("#get-result").text(resultMsg["msg"])
    });
}

在站点管理页面增加管理员左侧菜单

主要页面已经创建好了,我们需要增加一个入口方便运营人员进入设置,这里可以在站点管理增加左侧菜单。

在atlassian-plugin.xml配置文件中增加如下内容

    <web-item name="plugin-admin-web" key="plugin-admin-web" section="system.admin/configuration" weight="10" application="confluence">
        <description>a plugin admin configuration web demo</description>
        <label key="plugin.demo.configuration.web" />
        <link linkId="plugin-demo-configuration-web-link">/plugins/servlet/plugin-demo/admin</link>
    </web-item>

web-item模块允许自定义插件增加写连接或者菜单连接等,注意观察web-item元素内section属性,这里指定增加link连接的位置,这里设置system.admin/configuration表示我们将在整个系统设置的页面增加左侧菜单链接。label标签定义了连接的展示文本展示内容(效果见下面截图),link指定了链接跳转位置。
更多子元素或者属性参考web-item-plugin-module,在plugin-demo.properties配置文件中增加一条:plugin.demo.configuration.web=plugin-demo

增加一个servlet

直接上代码:

主要功能提供模板数据返回、判断用户是否登录,如果未登录跳转到登录页面

package cn.idocode.confluence.controller;

import com.atlassian.plugin.spring.scanner.annotation.component.Scanned;
import com.atlassian.plugin.spring.scanner.annotation.imports.ComponentImport;
import com.atlassian.sal.api.auth.LoginUriProvider;
import com.atlassian.sal.api.user.UserManager;
import com.atlassian.templaterenderer.TemplateRenderer;

import javax.inject.Inject;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.net.URI;

@Scanned
public class StaticResourceServlet extends HttpServlet {

    @ComponentImport
    private UserManager userManager;
    @ComponentImport
    private LoginUriProvider loginUriProvider;
    @ComponentImport
    private TemplateRenderer templateRenderer;

    @Inject
    public StaticResourceServlet(UserManager userManager,
                                 LoginUriProvider loginUriProvider,
                                 TemplateRenderer templateRenderer) {
        this.userManager = userManager;
        this.loginUriProvider = loginUriProvider;
        this.templateRenderer = templateRenderer;
    }

    @Override
    public void doGet(HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException {
        String username = userManager.getRemoteUsername(request);
        if (username == null || !userManager.isSystemAdmin(username)) {
            redirectToLogin(request, response);
            return;
        }

        response.setContentType("text/html;charset=utf-8");
        templateRenderer.render("demo.vm", response.getWriter());
    }

    private void redirectToLogin(HttpServletRequest request, HttpServletResponse response) throws IOException {
        response.sendRedirect(loginUriProvider.getLoginUri(getUri(request)).toASCIIString());
    }

    private URI getUri(HttpServletRequest request) {
        StringBuffer builder = request.getRequestURL();
        if (request.getQueryString() != null) {
            builder.append("?");
            builder.append(request.getQueryString());
        }
        return URI.create(builder.toString());
    }
}

在项目atlassian-plugin.xml配置文件中注册我们的servlet

    <servlet key="plugin-demo-servlet" class="cn.idocode.confluence.controller.StaticResourceServlet">
        <url-pattern>/plugin-demo/admin</url-pattern>
        <description>plugin demo static resource servlet</description>
    </servlet>

运行demo

本地运行测试demo后进入管理界面,在左侧菜单就可以看到plugin-demo链接,点击后页面如下图片显示:


1588318778542.png

点击测试按钮,访问rest接口获取返回值展示到页面上:


1588321418952.png

示例代码

https://github.com/chaoyz/plugin-demo

参考

creating-an-admin-configuration-form
atlassian-plugin-xml-element-reference
web-item-plugin-module

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,172评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,346评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,788评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,299评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,409评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,467评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,476评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,262评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,699评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,994评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,167评论 1 343
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,827评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,499评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,149评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,387评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,028评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,055评论 2 352