stephenking
6 years ago
committed by
Gogs
6 changed files with 310 additions and 46 deletions
@ -1,48 +1,5 @@
|
||||
# ---> JetBrains |
||||
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio |
||||
|
||||
*.iml |
||||
|
||||
## Directory-based project format: |
||||
.idea/ |
||||
# if you remove the above rule, at least ignore the following: |
||||
|
||||
# User-specific stuff: |
||||
# .idea/workspace.xml |
||||
# .idea/tasks.xml |
||||
# .idea/dictionaries |
||||
|
||||
# Sensitive or high-churn files: |
||||
# .idea/dataSources.ids |
||||
# .idea/dataSources.xml |
||||
# .idea/sqlDataSources.xml |
||||
# .idea/dynamic.xml |
||||
# .idea/uiDesigner.xml |
||||
|
||||
# Gradle: |
||||
# .idea/gradle.xml |
||||
# .idea/libraries |
||||
|
||||
# Mongo Explorer plugin: |
||||
# .idea/mongoSettings.xml |
||||
|
||||
## File-based project format: |
||||
*.ipr |
||||
*.iws |
||||
|
||||
## Plugin-specific files: |
||||
|
||||
# IntelliJ |
||||
/out/ |
||||
|
||||
# mpeltonen/sbt-idea plugin |
||||
.idea_modules/ |
||||
|
||||
# JIRA plugin |
||||
atlassian-ide-plugin.xml |
||||
|
||||
# Crashlytics plugin (for Android Studio and IntelliJ) |
||||
com_crashlytics_export_strings.xml |
||||
crashlytics.properties |
||||
crashlytics-build.properties |
||||
|
||||
lib/report/*.jar |
||||
.DS_Store |
||||
.classpath |
@ -0,0 +1,130 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> |
||||
<project basedir="." default="jar" name="plugin"> |
||||
<!-- JDK路径,根据自己机器上实际位置修改--> |
||||
<property name="jdk.home" value="/Library/Java/JavaVirtualMachines/jdk1.8/Contents/Home"/> |
||||
|
||||
<property name="libs" value="${basedir}/lib"/> |
||||
<property name="publicLibs" value=""/> |
||||
<property name="reportLibs" value="${basedir}/../webroot/WEB-INF/lib"/> |
||||
<property name="destLoc" value="."/> |
||||
<property name="classes" value="classes"/> |
||||
<xmlproperty file="${basedir}/plugin.xml"/> |
||||
<property name="current-version" value="${plugin.version}"/> |
||||
|
||||
<!-- 插件版本--> |
||||
<property name="plugin-version" value="${current-version}"/> |
||||
<!-- 插件名字--> |
||||
<property name="plugin-name" value="login-success-event"/> |
||||
<property name="plugin-jar" value="fr-plugin-${plugin-name}-${plugin-version}.jar"/> |
||||
|
||||
<target name="prepare"> |
||||
<delete dir="${classes}"/> |
||||
<delete dir="fr-plugin-${plugin-name}-${plugin-version}"/> |
||||
<xmlproperty file="${basedir}/plugin.xml"/> |
||||
<delete dir="${destLoc}/${plugin.name}"/> |
||||
</target> |
||||
<path id="compile.classpath"> |
||||
<fileset dir="${libs}"> |
||||
<include name="**/*.jar"/> |
||||
</fileset> |
||||
<fileset dir="${publicLibs}"> |
||||
<include name="**/*.jar"/> |
||||
</fileset> |
||||
<fileset dir="${reportLibs}"> |
||||
<include name="**/*.jar"/> |
||||
</fileset> |
||||
</path> |
||||
<patternset id="resources4Jar"> |
||||
<exclude name="**/.settings/**"/> |
||||
<exclude name=".classpath"/> |
||||
<exclude name=".project"/> |
||||
|
||||
<exclude name="**/*.java"/> |
||||
<exclude name="**/*.db"/> |
||||
<exclude name="**/*.g"/> |
||||
<exclude name="**/package.html"/> |
||||
</patternset> |
||||
<target name="copy_resources"> |
||||
<echo message="从${resources_from}拷贝图片,JS,CSS等资源文件"/> |
||||
<delete dir="tmp"/> |
||||
<copy todir="tmp"> |
||||
<fileset dir="${resources_from}/src/main/resources"> |
||||
<patternset refid="resources4Jar"/> |
||||
</fileset> |
||||
</copy> |
||||
<copy todir="${classes}"> |
||||
<fileset dir="tmp"/> |
||||
</copy> |
||||
<delete dir="tmp"/> |
||||
</target> |
||||
<target name="compile_javas"> |
||||
<echo message="编译${compile_files}下的Java文件"/> |
||||
<javac destdir="${classes}" debug="false" optimize="on" source="${source_jdk_version}" |
||||
target="${target_jdk_version}" |
||||
fork="true" memoryMaximumSize="512m" listfiles="false" srcdir="${basedir}" |
||||
executable="${compile_jdk_version}/bin/javac"> |
||||
<src path="${basedir}/src/main/java"/> |
||||
<exclude name="**/.svn/**"/> |
||||
<compilerarg line="-encoding UTF8 "/> |
||||
<classpath refid="compile.classpath"/> |
||||
</javac> |
||||
<taskdef name="pretreatment" classname="com.fr.plugin.pack.PluginPretreatmentTask"> |
||||
<classpath refid="compile.classpath"/> |
||||
</taskdef> |
||||
<pretreatment baseDir="${basedir}"/> |
||||
</target> |
||||
|
||||
<target name="jar_classes"> |
||||
<echo message="打Jar包:${jar_name}"/> |
||||
<delete file="${basedir}/${jar_name}"/> |
||||
<jar jarfile="${basedir}/${jar_name}"> |
||||
<fileset dir="${classes}"> |
||||
</fileset> |
||||
</jar> |
||||
</target> |
||||
|
||||
<target name="super_jar" depends="prepare"> |
||||
<antcall target="copy_resources"> |
||||
<param name="resources_from" value="${basedir}"/> |
||||
</antcall> |
||||
<antcall target="compile_javas"> |
||||
<param name="source_jdk_version" value="1.6"/> |
||||
<param name="target_jdk_version" value="1.6"/> |
||||
<param name="compile_jdk_version" value="${jdk.home}"/> |
||||
<param name="compile_files" value="${basedir}/src"/> |
||||
</antcall> |
||||
<echo message="compile plugin success!"/> |
||||
|
||||
<antcall target="jar_classes"> |
||||
<param name="jar_name" value="${plugin-jar}"/> |
||||
</antcall> |
||||
<delete dir="${classes}"/> |
||||
|
||||
</target> |
||||
|
||||
<target name="jar" depends="super_jar"> |
||||
<antcall target="zip"/> |
||||
</target> |
||||
|
||||
<target name="zip"> |
||||
<property name="plugin-folder" value="fr-plugin-${plugin-name}-${plugin-version}"/> |
||||
<echo message="----------zip files----------"/> |
||||
<mkdir dir="${plugin-folder}"/> |
||||
<copy todir="${plugin-folder}"> |
||||
<fileset dir="."> |
||||
<include name="${plugin-jar}"/> |
||||
<include name="plugin.xml"/> |
||||
</fileset> |
||||
<fileset dir="${libs}"> |
||||
<include name="*.jar"/> |
||||
<include name="*.dll"/> |
||||
</fileset> |
||||
</copy> |
||||
<zip destfile="${basedir}/${plugin-folder}.zip" basedir="."> |
||||
<include name="${plugin-folder}/*.jar"/> |
||||
<include name="${plugin-folder}/*.dll"/> |
||||
<include name="${plugin-folder}/plugin.xml"/> |
||||
</zip> |
||||
<move file="${plugin-folder}.zip" todir="${destLoc}/install"/> |
||||
</target> |
||||
</project> |
@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> |
||||
<plugin> |
||||
<id>com.fr.plugin.login.event</id> |
||||
<name><![CDATA[登录成功事件示例]]></name> |
||||
<active>yes</active> |
||||
<version>1.0</version> |
||||
<env-version>10.0~</env-version> |
||||
<jartime>2018-12-14</jartime> |
||||
<vendor>author</vendor> |
||||
<description><![CDATA[登录成功事件示例]]></description> |
||||
<change-notes><![CDATA[ |
||||
无 |
||||
]]></change-notes> |
||||
<extra-core> |
||||
<LocaleFinder class="com.fr.plugin.decision.login.event.PluginLocaleFinderBridge"/> |
||||
</extra-core> |
||||
<extra-decision> |
||||
<LoginEventProvider class="com.fr.plugin.decision.login.event.CustomLoginActionEvent"/> |
||||
</extra-decision> |
||||
<function-recorder class="com.fr.plugin.decision.login.event.CustomLoginActionEvent"/> |
||||
</plugin> |
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" |
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
||||
<modelVersion>4.0.0</modelVersion> |
||||
|
||||
<parent> |
||||
<groupId>com.fr.plugin</groupId> |
||||
<artifactId>starter</artifactId> |
||||
<version>10.0</version> |
||||
</parent> |
||||
<packaging>jar</packaging> |
||||
<artifactId>demo-simple-config</artifactId> |
||||
<build> |
||||
<!---如果要更改调试插件,改这里的配置就可以了--> |
||||
<outputDirectory>${project.basedir}/../webroot/WEB-INF/plugins/plugin-com.fr.plugin.login.event-1.0/classes</outputDirectory> |
||||
</build> |
||||
</project> |
@ -0,0 +1,138 @@
|
||||
!(function () { |
||||
BI.config("dec.user.setting.authentications", function (items) { |
||||
items.push({ |
||||
value: "Enterprise_WeChat", // value 值
|
||||
text: "企业微信认证", // 认证方式名,需国际化
|
||||
"@class": "com.fr.decision.webservice.bean.authentication.EnterpriseWeChatAuthentication", // 不知干什么的,反正要有啦
|
||||
component: { |
||||
type: "dec.plugin.enterprise_weChat_authentication" |
||||
} |
||||
}); |
||||
return items; |
||||
}); |
||||
// 自定义的component组件接受configs props,需要实现getValue方法读取配置
|
||||
|
||||
var WIDTH = 125; |
||||
|
||||
var Demo = BI.inherit(BI.Widget, { |
||||
|
||||
props: { |
||||
baseCls: "", |
||||
configs: { |
||||
CorpID: "", |
||||
secret: "", |
||||
showWay: "" |
||||
} |
||||
}, |
||||
|
||||
render: function () { |
||||
var self = this, o = this.options; |
||||
return { |
||||
type: "bi.vertical", |
||||
bgap: 15, |
||||
items: [ |
||||
{ |
||||
type: "bi.vertical_adapt", |
||||
items: [ |
||||
{ |
||||
type: "bi.layout", |
||||
width: WIDTH |
||||
}, { |
||||
type: "bi.label", |
||||
textAlign: "left", |
||||
cls: "dec-font-weight-bold", |
||||
text: "CorpID:", |
||||
width: 100 |
||||
}, { |
||||
type: "bi.editor", |
||||
ref: function (_ref) { |
||||
self.CorpID = _ref; |
||||
}, |
||||
width: 400, |
||||
height: 24, |
||||
watermark: "", |
||||
value: o.configs.CorpID |
||||
} |
||||
] |
||||
}, { |
||||
type: "bi.htape", |
||||
height: 300, |
||||
items: [ |
||||
{ |
||||
type: "bi.layout", |
||||
width: WIDTH |
||||
}, { |
||||
type: "bi.vertical", |
||||
items: [ |
||||
{ |
||||
type: "bi.label", |
||||
textAlign: "left", |
||||
cls: "dec-font-weight-bold", |
||||
text: "secret:" |
||||
} |
||||
], |
||||
width: 100 |
||||
}, { |
||||
type: "bi.textarea_editor", |
||||
cls: "bi-border", |
||||
ref: function (_ref) { |
||||
self.secret = _ref; |
||||
}, |
||||
width: 400, |
||||
height: 300, |
||||
watermark: "", |
||||
value: o.configs.secret |
||||
} |
||||
] |
||||
}, { |
||||
type: "bi.htape", |
||||
height: 300, |
||||
items: [ |
||||
{ |
||||
type: "bi.layout", |
||||
width: WIDTH |
||||
}, { |
||||
type: "bi.vertical", |
||||
items: [ |
||||
{ |
||||
type: "bi.label", |
||||
textAlign: "left", |
||||
cls: "dec-font-weight-bold", |
||||
text: "显示方式:" |
||||
} |
||||
], |
||||
width: 100 |
||||
}, { |
||||
type: "bi.text_value_combo", |
||||
ref: function (_ref) { |
||||
self.showWay = _ref; |
||||
}, |
||||
items: [ |
||||
{ |
||||
text: "1", |
||||
value: "1" |
||||
}, { |
||||
text: "2", |
||||
value: "2" |
||||
} |
||||
], |
||||
width: 400, |
||||
value: o.configs.showWay |
||||
} |
||||
] |
||||
} |
||||
] |
||||
|
||||
}; |
||||
}, |
||||
|
||||
getValue: function () { |
||||
return { |
||||
CorpID: this.CorpID.getValue(), |
||||
secret: this.secret.getValue(), |
||||
showWay: this.showWay.getValue()[0] |
||||
}; |
||||
} |
||||
}); |
||||
BI.shortcut("dec.plugin.enterprise_weChat_authentication", Demo); |
||||
})(); |
Loading…
Reference in new issue