embulk-filter-mask 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 63fab6bef7044ca3f9648b6dad5cbeb6e352c632
4
+ data.tar.gz: a8979001625a9530aaaa3f074b4889d73e5c8f54
5
+ SHA512:
6
+ metadata.gz: 7edd005dc56ff2edca82a02bbbe5a93e1d639b3eeb655910b99bf7f0bb5cca784b211a39ad057adb59bd763588f32c3805f09ed22757ea222e25ad8849385819
7
+ data.tar.gz: 183574aeb6e1a426c14ab2032f961b167c6abca1b083c50e02c320cf94bbf6f3d709f347a77a46f415a7aefc605782c6ef056056d5391143db5384709d4cf8fd
data/.gitignore ADDED
@@ -0,0 +1,12 @@
1
+ *~
2
+ /pkg/
3
+ /tmp/
4
+ *.gemspec
5
+ .gradle/
6
+ /classpath/
7
+ build/
8
+ .idea
9
+ /.settings/
10
+ /.metadata/
11
+ .classpath
12
+ .project
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+
2
+ MIT License
3
+
4
+ Permission is hereby granted, free of charge, to any person obtaining
5
+ a copy of this software and associated documentation files (the
6
+ "Software"), to deal in the Software without restriction, including
7
+ without limitation the rights to use, copy, modify, merge, publish,
8
+ distribute, sublicense, and/or sell copies of the Software, and to
9
+ permit persons to whom the Software is furnished to do so, subject to
10
+ the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be
13
+ included in all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
19
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
20
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
21
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,92 @@
1
+ # Mask filter plugin for Embulk
2
+
3
+ mask columns with asterisks (still in initial development phase and missing basic functionalities to use in production )
4
+
5
+ ## Overview
6
+
7
+ * **Plugin type**: filter
8
+
9
+ ## Configuration
10
+
11
+ - **columns**: target columns which would be replaced with asterisks (string, required)
12
+ - **name**: name of the column (string, required)
13
+ - **pattern**: mask pattern, `all` or `email` (string, default: `all`)
14
+ - **path**: JSON path, works if the column type is JSON (string, default: `$.`)
15
+
16
+ ## Example
17
+
18
+ If you have below data in csv or other format file,
19
+
20
+ |first_name | last_name | gender | age | contact |
21
+ |---|---|---|---|---|
22
+ | Benjamin | Bell | male | 30 | bell.benjamin_dummy@<i></i>example.com |
23
+ | Lucas | Duncan | male | 20 | lucas.duncan_dummy@<i></i>example.com |
24
+ | Elizabeth | May | female | 25 | elizabeth.may_dummy@<i></i>example.com |
25
+ | Christian | Reid | male | 15 | christian.reid_dummy@<i></i>example.com |
26
+ | Amy | Avery | female | 40 | amy.avercy_dummy@<i></i>example.com |
27
+
28
+ below filter configuration
29
+
30
+ ```yaml
31
+ filters:
32
+ - type: mask
33
+ columns:
34
+ - { name: last_name}
35
+ - { name: age}
36
+ - { name: contact, pattern: email}
37
+ ```
38
+
39
+ would produce
40
+
41
+ |first_name | last_name | gender | age | contact |
42
+ |---|---|---|---|---|
43
+ | Benjamin | **** | male | ** | *****@example.com |
44
+ | Lucas | ****** | male | ** | *****@example.com |
45
+ | Elizabeth | *** | female | ** | *****@example.com |
46
+ | Christian | **** | male | ** | *****@example.com |
47
+ | Amy | ***** | female | ** | *****@example.com |
48
+
49
+ JSON type column is also partially supported.
50
+
51
+ If you have
52
+
53
+ ```json
54
+ {
55
+ "full_name": {
56
+ "first_name": "Benjamin",
57
+ "last_name": "Bell"
58
+ },
59
+ "gender": "male",
60
+ "age": 30
61
+ }
62
+ ```
63
+
64
+ below filter configuration
65
+
66
+ ```yaml
67
+ filters:
68
+ - type: mask
69
+ columns:
70
+ - { name: full_name, path: $.first_name}
71
+ - { name: age, path: $.}
72
+ ```
73
+
74
+ would produce
75
+
76
+ ```json
77
+ {
78
+ "full_name": {
79
+ "first_name": "********",
80
+ "last_name": "Bell"
81
+ },
82
+ "gender": "male",
83
+ "age": **
84
+ }
85
+ ```
86
+
87
+
88
+ ## Build
89
+
90
+ ```
91
+ $ ./gradlew gem # -t to watch change of files and rebuild continuously
92
+ ```
data/build.gradle ADDED
@@ -0,0 +1,95 @@
1
+ plugins {
2
+ id "com.jfrog.bintray" version "1.1"
3
+ id "com.github.jruby-gradle.base" version "0.1.5"
4
+ id "java"
5
+ id "checkstyle"
6
+ }
7
+ import com.github.jrubygradle.JRubyExec
8
+ repositories {
9
+ mavenCentral()
10
+ jcenter()
11
+ }
12
+ configurations {
13
+ provided
14
+ }
15
+
16
+ version = "0.0.1"
17
+
18
+ sourceCompatibility = 1.7
19
+ targetCompatibility = 1.7
20
+
21
+ dependencies {
22
+ compile "org.embulk:embulk-core:0.8.10"
23
+ provided "org.embulk:embulk-core:0.8.10"
24
+ compile "com.jayway.jsonpath:json-path:2.+"
25
+ testCompile "junit:junit:4.+"
26
+ testCompile "org.embulk:embulk-core:0.8.10:tests"
27
+ }
28
+
29
+ task classpath(type: Copy, dependsOn: ["jar"]) {
30
+ doFirst { file("classpath").deleteDir() }
31
+ from (configurations.runtime - configurations.provided + files(jar.archivePath))
32
+ into "classpath"
33
+ }
34
+ clean { delete "classpath" }
35
+
36
+ checkstyle {
37
+ configFile = file("${project.rootDir}/config/checkstyle/checkstyle.xml")
38
+ toolVersion = '6.14.1'
39
+ }
40
+ checkstyleMain {
41
+ configFile = file("${project.rootDir}/config/checkstyle/default.xml")
42
+ ignoreFailures = true
43
+ }
44
+ checkstyleTest {
45
+ configFile = file("${project.rootDir}/config/checkstyle/default.xml")
46
+ ignoreFailures = true
47
+ }
48
+ task checkstyle(type: Checkstyle) {
49
+ classpath = sourceSets.main.output + sourceSets.test.output
50
+ source = sourceSets.main.allJava + sourceSets.test.allJava
51
+ }
52
+
53
+ task gem(type: JRubyExec, dependsOn: ["gemspec", "classpath"]) {
54
+ jrubyArgs "-rrubygems/gem_runner", "-eGem::GemRunner.new.run(ARGV)", "build"
55
+ script "${project.name}.gemspec"
56
+ doLast { ant.move(file: "${project.name}-${project.version}.gem", todir: "pkg") }
57
+ }
58
+
59
+ task gemPush(type: JRubyExec, dependsOn: ["gem"]) {
60
+ jrubyArgs "-rrubygems/gem_runner", "-eGem::GemRunner.new.run(ARGV)", "push"
61
+ script "pkg/${project.name}-${project.version}.gem"
62
+ }
63
+
64
+ task "package"(dependsOn: ["gemspec", "classpath"]) << {
65
+ println "> Build succeeded."
66
+ println "> You can run embulk with '-L ${file(".").absolutePath}' argument."
67
+ }
68
+
69
+ task gemspec {
70
+ ext.gemspecFile = file("${project.name}.gemspec")
71
+ inputs.file "build.gradle"
72
+ outputs.file gemspecFile
73
+ doLast { gemspecFile.write($/
74
+ Gem::Specification.new do |spec|
75
+ spec.name = "${project.name}"
76
+ spec.version = "${project.version}"
77
+ spec.authors = ["Tetsuo Yamabe"]
78
+ spec.summary = %[Mask filter plugin for Embulk]
79
+ spec.description = %[Mask]
80
+ spec.email = ["tetsuo.yamabe@gmail.com"]
81
+ spec.licenses = ["MIT"]
82
+ spec.homepage = "https://github.com/beniyama/embulk-filter-mask"
83
+
84
+ spec.files = `git ls-files`.split("\n") + Dir["classpath/*.jar"]
85
+ spec.test_files = spec.files.grep(%r"^(test|spec)/")
86
+ spec.require_paths = ["lib"]
87
+
88
+ #spec.add_dependency 'YOUR_GEM_DEPENDENCY', ['~> YOUR_GEM_DEPENDENCY_VERSION']
89
+ spec.add_development_dependency 'bundler', ['~> 1.0']
90
+ spec.add_development_dependency 'rake', ['>= 10.0']
91
+ end
92
+ /$)
93
+ }
94
+ }
95
+ clean { delete "${project.name}.gemspec" }
@@ -0,0 +1,128 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE module PUBLIC
3
+ "-//Puppy Crawl//DTD Check Configuration 1.3//EN"
4
+ "http://www.puppycrawl.com/dtds/configuration_1_3.dtd">
5
+ <module name="Checker">
6
+ <!-- https://github.com/facebook/presto/blob/master/src/checkstyle/checks.xml -->
7
+ <module name="FileTabCharacter"/>
8
+ <module name="NewlineAtEndOfFile">
9
+ <property name="lineSeparator" value="lf"/>
10
+ </module>
11
+ <module name="RegexpMultiline">
12
+ <property name="format" value="\r"/>
13
+ <property name="message" value="Line contains carriage return"/>
14
+ </module>
15
+ <module name="RegexpMultiline">
16
+ <property name="format" value=" \n"/>
17
+ <property name="message" value="Line has trailing whitespace"/>
18
+ </module>
19
+ <module name="RegexpMultiline">
20
+ <property name="format" value="\{\n\n"/>
21
+ <property name="message" value="Blank line after opening brace"/>
22
+ </module>
23
+ <module name="RegexpMultiline">
24
+ <property name="format" value="\n\n\s*\}"/>
25
+ <property name="message" value="Blank line before closing brace"/>
26
+ </module>
27
+ <module name="RegexpMultiline">
28
+ <property name="format" value="\n\n\n"/>
29
+ <property name="message" value="Multiple consecutive blank lines"/>
30
+ </module>
31
+ <module name="RegexpMultiline">
32
+ <property name="format" value="\n\n\Z"/>
33
+ <property name="message" value="Blank line before end of file"/>
34
+ </module>
35
+ <module name="RegexpMultiline">
36
+ <property name="format" value="Preconditions\.checkNotNull"/>
37
+ <property name="message" value="Use of checkNotNull"/>
38
+ </module>
39
+
40
+ <module name="TreeWalker">
41
+ <module name="EmptyBlock">
42
+ <property name="option" value="text"/>
43
+ <property name="tokens" value="
44
+ LITERAL_DO, LITERAL_ELSE, LITERAL_FINALLY, LITERAL_IF,
45
+ LITERAL_FOR, LITERAL_TRY, LITERAL_WHILE, INSTANCE_INIT, STATIC_INIT"/>
46
+ </module>
47
+ <module name="EmptyStatement"/>
48
+ <module name="EmptyForInitializerPad"/>
49
+ <module name="EmptyForIteratorPad">
50
+ <property name="option" value="space"/>
51
+ </module>
52
+ <module name="MethodParamPad">
53
+ <property name="allowLineBreaks" value="true"/>
54
+ <property name="option" value="nospace"/>
55
+ </module>
56
+ <module name="ParenPad"/>
57
+ <module name="TypecastParenPad"/>
58
+ <module name="NeedBraces"/>
59
+ <module name="LeftCurly">
60
+ <property name="option" value="nl"/>
61
+ <property name="tokens" value="CLASS_DEF, CTOR_DEF, INTERFACE_DEF, METHOD_DEF"/>
62
+ </module>
63
+ <module name="LeftCurly">
64
+ <property name="option" value="eol"/>
65
+ <property name="tokens" value="
66
+ LITERAL_CATCH, LITERAL_DO, LITERAL_ELSE, LITERAL_FINALLY, LITERAL_FOR,
67
+ LITERAL_IF, LITERAL_SWITCH, LITERAL_SYNCHRONIZED, LITERAL_TRY, LITERAL_WHILE"/>
68
+ </module>
69
+ <module name="RightCurly">
70
+ <property name="option" value="alone"/>
71
+ </module>
72
+ <module name="GenericWhitespace"/>
73
+ <module name="WhitespaceAfter"/>
74
+ <module name="NoWhitespaceBefore"/>
75
+
76
+ <module name="UpperEll"/>
77
+ <module name="DefaultComesLast"/>
78
+ <module name="ArrayTypeStyle"/>
79
+ <module name="MultipleVariableDeclarations"/>
80
+ <module name="ModifierOrder"/>
81
+ <module name="OneStatementPerLine"/>
82
+ <module name="StringLiteralEquality"/>
83
+ <module name="MutableException"/>
84
+ <module name="EqualsHashCode"/>
85
+ <module name="InnerAssignment"/>
86
+ <module name="InterfaceIsType"/>
87
+ <module name="HideUtilityClassConstructor"/>
88
+
89
+ <module name="MemberName"/>
90
+ <module name="LocalVariableName"/>
91
+ <module name="LocalFinalVariableName"/>
92
+ <module name="TypeName"/>
93
+ <module name="PackageName"/>
94
+ <module name="ParameterName"/>
95
+ <module name="StaticVariableName"/>
96
+ <module name="ClassTypeParameterName">
97
+ <property name="format" value="^[A-Z][0-9]?$"/>
98
+ </module>
99
+ <module name="MethodTypeParameterName">
100
+ <property name="format" value="^[A-Z][0-9]?$"/>
101
+ </module>
102
+
103
+ <module name="AvoidStarImport"/>
104
+ <module name="RedundantImport"/>
105
+ <module name="UnusedImports"/>
106
+ <module name="ImportOrder">
107
+ <property name="groups" value="*,javax,java"/>
108
+ <property name="separated" value="true"/>
109
+ <property name="option" value="bottom"/>
110
+ <property name="sortStaticImportsAlphabetically" value="true"/>
111
+ </module>
112
+
113
+ <module name="WhitespaceAround">
114
+ <property name="allowEmptyConstructors" value="true"/>
115
+ <property name="allowEmptyMethods" value="true"/>
116
+ <property name="ignoreEnhancedForColon" value="false"/>
117
+ <property name="tokens" value="
118
+ ASSIGN, BAND, BAND_ASSIGN, BOR, BOR_ASSIGN, BSR, BSR_ASSIGN,
119
+ BXOR, BXOR_ASSIGN, COLON, DIV, DIV_ASSIGN, EQUAL, GE, GT, LAND, LE,
120
+ LITERAL_ASSERT, LITERAL_CATCH, LITERAL_DO, LITERAL_ELSE,
121
+ LITERAL_FINALLY, LITERAL_FOR, LITERAL_IF, LITERAL_RETURN,
122
+ LITERAL_SYNCHRONIZED, LITERAL_TRY, LITERAL_WHILE,
123
+ LOR, LT, MINUS, MINUS_ASSIGN, MOD, MOD_ASSIGN, NOT_EQUAL,
124
+ PLUS, PLUS_ASSIGN, QUESTION, SL, SLIST, SL_ASSIGN, SR, SR_ASSIGN,
125
+ STAR, STAR_ASSIGN, TYPE_EXTENSION_AND"/>
126
+ </module>
127
+ </module>
128
+ </module>
@@ -0,0 +1,108 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE module PUBLIC
3
+ "-//Puppy Crawl//DTD Check Configuration 1.3//EN"
4
+ "http://www.puppycrawl.com/dtds/configuration_1_3.dtd">
5
+ <!--
6
+ This is a subset of ./checkstyle.xml which allows some loose styles
7
+ -->
8
+ <module name="Checker">
9
+ <module name="FileTabCharacter"/>
10
+ <module name="NewlineAtEndOfFile">
11
+ <property name="lineSeparator" value="lf"/>
12
+ </module>
13
+ <module name="RegexpMultiline">
14
+ <property name="format" value="\r"/>
15
+ <property name="message" value="Line contains carriage return"/>
16
+ </module>
17
+ <module name="RegexpMultiline">
18
+ <property name="format" value=" \n"/>
19
+ <property name="message" value="Line has trailing whitespace"/>
20
+ </module>
21
+ <module name="RegexpMultiline">
22
+ <property name="format" value="\n\n\n"/>
23
+ <property name="message" value="Multiple consecutive blank lines"/>
24
+ </module>
25
+ <module name="RegexpMultiline">
26
+ <property name="format" value="\n\n\Z"/>
27
+ <property name="message" value="Blank line before end of file"/>
28
+ </module>
29
+
30
+ <module name="TreeWalker">
31
+ <module name="EmptyBlock">
32
+ <property name="option" value="text"/>
33
+ <property name="tokens" value="
34
+ LITERAL_DO, LITERAL_ELSE, LITERAL_FINALLY, LITERAL_IF,
35
+ LITERAL_FOR, LITERAL_TRY, LITERAL_WHILE, INSTANCE_INIT, STATIC_INIT"/>
36
+ </module>
37
+ <module name="EmptyStatement"/>
38
+ <module name="EmptyForInitializerPad"/>
39
+ <module name="EmptyForIteratorPad">
40
+ <property name="option" value="space"/>
41
+ </module>
42
+ <module name="MethodParamPad">
43
+ <property name="allowLineBreaks" value="true"/>
44
+ <property name="option" value="nospace"/>
45
+ </module>
46
+ <module name="ParenPad"/>
47
+ <module name="TypecastParenPad"/>
48
+ <module name="NeedBraces"/>
49
+ <module name="LeftCurly">
50
+ <property name="option" value="nl"/>
51
+ <property name="tokens" value="CLASS_DEF, CTOR_DEF, INTERFACE_DEF, METHOD_DEF"/>
52
+ </module>
53
+ <module name="LeftCurly">
54
+ <property name="option" value="eol"/>
55
+ <property name="tokens" value="
56
+ LITERAL_CATCH, LITERAL_DO, LITERAL_ELSE, LITERAL_FINALLY, LITERAL_FOR,
57
+ LITERAL_IF, LITERAL_SWITCH, LITERAL_SYNCHRONIZED, LITERAL_TRY, LITERAL_WHILE"/>
58
+ </module>
59
+ <module name="RightCurly">
60
+ <property name="option" value="alone"/>
61
+ </module>
62
+ <module name="GenericWhitespace"/>
63
+ <module name="WhitespaceAfter"/>
64
+ <module name="NoWhitespaceBefore"/>
65
+
66
+ <module name="UpperEll"/>
67
+ <module name="DefaultComesLast"/>
68
+ <module name="ArrayTypeStyle"/>
69
+ <module name="MultipleVariableDeclarations"/>
70
+ <module name="ModifierOrder"/>
71
+ <module name="OneStatementPerLine"/>
72
+ <module name="StringLiteralEquality"/>
73
+ <module name="MutableException"/>
74
+ <module name="EqualsHashCode"/>
75
+ <module name="InnerAssignment"/>
76
+ <module name="InterfaceIsType"/>
77
+ <module name="HideUtilityClassConstructor"/>
78
+
79
+ <module name="MemberName"/>
80
+ <module name="LocalVariableName"/>
81
+ <module name="LocalFinalVariableName"/>
82
+ <module name="TypeName"/>
83
+ <module name="PackageName"/>
84
+ <module name="ParameterName"/>
85
+ <module name="StaticVariableName"/>
86
+ <module name="ClassTypeParameterName">
87
+ <property name="format" value="^[A-Z][0-9]?$"/>
88
+ </module>
89
+ <module name="MethodTypeParameterName">
90
+ <property name="format" value="^[A-Z][0-9]?$"/>
91
+ </module>
92
+
93
+ <module name="WhitespaceAround">
94
+ <property name="allowEmptyConstructors" value="true"/>
95
+ <property name="allowEmptyMethods" value="true"/>
96
+ <property name="ignoreEnhancedForColon" value="false"/>
97
+ <property name="tokens" value="
98
+ ASSIGN, BAND, BAND_ASSIGN, BOR, BOR_ASSIGN, BSR, BSR_ASSIGN,
99
+ BXOR, BXOR_ASSIGN, COLON, DIV, DIV_ASSIGN, EQUAL, GE, GT, LAND, LE,
100
+ LITERAL_ASSERT, LITERAL_CATCH, LITERAL_DO, LITERAL_ELSE,
101
+ LITERAL_FINALLY, LITERAL_FOR, LITERAL_IF, LITERAL_RETURN,
102
+ LITERAL_SYNCHRONIZED, LITERAL_TRY, LITERAL_WHILE,
103
+ LOR, LT, MINUS, MINUS_ASSIGN, MOD, MOD_ASSIGN, NOT_EQUAL,
104
+ PLUS, PLUS_ASSIGN, QUESTION, SL, SLIST, SL_ASSIGN, SR, SR_ASSIGN,
105
+ STAR, STAR_ASSIGN, TYPE_EXTENSION_AND"/>
106
+ </module>
107
+ </module>
108
+ </module>
Binary file
@@ -0,0 +1,6 @@
1
+ #Tue Jul 12 16:30:09 JST 2016
2
+ distributionBase=GRADLE_USER_HOME
3
+ distributionPath=wrapper/dists
4
+ zipStoreBase=GRADLE_USER_HOME
5
+ zipStorePath=wrapper/dists
6
+ distributionUrl=https\://services.gradle.org/distributions/gradle-2.10-all.zip
data/gradlew ADDED
@@ -0,0 +1,160 @@
1
+ #!/usr/bin/env bash
2
+
3
+ ##############################################################################
4
+ ##
5
+ ## Gradle start up script for UN*X
6
+ ##
7
+ ##############################################################################
8
+
9
+ # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
10
+ DEFAULT_JVM_OPTS=""
11
+
12
+ APP_NAME="Gradle"
13
+ APP_BASE_NAME=`basename "$0"`
14
+
15
+ # Use the maximum available, or set MAX_FD != -1 to use that value.
16
+ MAX_FD="maximum"
17
+
18
+ warn ( ) {
19
+ echo "$*"
20
+ }
21
+
22
+ die ( ) {
23
+ echo
24
+ echo "$*"
25
+ echo
26
+ exit 1
27
+ }
28
+
29
+ # OS specific support (must be 'true' or 'false').
30
+ cygwin=false
31
+ msys=false
32
+ darwin=false
33
+ case "`uname`" in
34
+ CYGWIN* )
35
+ cygwin=true
36
+ ;;
37
+ Darwin* )
38
+ darwin=true
39
+ ;;
40
+ MINGW* )
41
+ msys=true
42
+ ;;
43
+ esac
44
+
45
+ # Attempt to set APP_HOME
46
+ # Resolve links: $0 may be a link
47
+ PRG="$0"
48
+ # Need this for relative symlinks.
49
+ while [ -h "$PRG" ] ; do
50
+ ls=`ls -ld "$PRG"`
51
+ link=`expr "$ls" : '.*-> \(.*\)$'`
52
+ if expr "$link" : '/.*' > /dev/null; then
53
+ PRG="$link"
54
+ else
55
+ PRG=`dirname "$PRG"`"/$link"
56
+ fi
57
+ done
58
+ SAVED="`pwd`"
59
+ cd "`dirname \"$PRG\"`/" >/dev/null
60
+ APP_HOME="`pwd -P`"
61
+ cd "$SAVED" >/dev/null
62
+
63
+ CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
64
+
65
+ # Determine the Java command to use to start the JVM.
66
+ if [ -n "$JAVA_HOME" ] ; then
67
+ if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
68
+ # IBM's JDK on AIX uses strange locations for the executables
69
+ JAVACMD="$JAVA_HOME/jre/sh/java"
70
+ else
71
+ JAVACMD="$JAVA_HOME/bin/java"
72
+ fi
73
+ if [ ! -x "$JAVACMD" ] ; then
74
+ die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
75
+
76
+ Please set the JAVA_HOME variable in your environment to match the
77
+ location of your Java installation."
78
+ fi
79
+ else
80
+ JAVACMD="java"
81
+ which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
82
+
83
+ Please set the JAVA_HOME variable in your environment to match the
84
+ location of your Java installation."
85
+ fi
86
+
87
+ # Increase the maximum file descriptors if we can.
88
+ if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then
89
+ MAX_FD_LIMIT=`ulimit -H -n`
90
+ if [ $? -eq 0 ] ; then
91
+ if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
92
+ MAX_FD="$MAX_FD_LIMIT"
93
+ fi
94
+ ulimit -n $MAX_FD
95
+ if [ $? -ne 0 ] ; then
96
+ warn "Could not set maximum file descriptor limit: $MAX_FD"
97
+ fi
98
+ else
99
+ warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
100
+ fi
101
+ fi
102
+
103
+ # For Darwin, add options to specify how the application appears in the dock
104
+ if $darwin; then
105
+ GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
106
+ fi
107
+
108
+ # For Cygwin, switch paths to Windows format before running java
109
+ if $cygwin ; then
110
+ APP_HOME=`cygpath --path --mixed "$APP_HOME"`
111
+ CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
112
+ JAVACMD=`cygpath --unix "$JAVACMD"`
113
+
114
+ # We build the pattern for arguments to be converted via cygpath
115
+ ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
116
+ SEP=""
117
+ for dir in $ROOTDIRSRAW ; do
118
+ ROOTDIRS="$ROOTDIRS$SEP$dir"
119
+ SEP="|"
120
+ done
121
+ OURCYGPATTERN="(^($ROOTDIRS))"
122
+ # Add a user-defined pattern to the cygpath arguments
123
+ if [ "$GRADLE_CYGPATTERN" != "" ] ; then
124
+ OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
125
+ fi
126
+ # Now convert the arguments - kludge to limit ourselves to /bin/sh
127
+ i=0
128
+ for arg in "$@" ; do
129
+ CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
130
+ CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
131
+
132
+ if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
133
+ eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
134
+ else
135
+ eval `echo args$i`="\"$arg\""
136
+ fi
137
+ i=$((i+1))
138
+ done
139
+ case $i in
140
+ (0) set -- ;;
141
+ (1) set -- "$args0" ;;
142
+ (2) set -- "$args0" "$args1" ;;
143
+ (3) set -- "$args0" "$args1" "$args2" ;;
144
+ (4) set -- "$args0" "$args1" "$args2" "$args3" ;;
145
+ (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
146
+ (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
147
+ (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
148
+ (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
149
+ (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
150
+ esac
151
+ fi
152
+
153
+ # Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules
154
+ function splitJvmOpts() {
155
+ JVM_OPTS=("$@")
156
+ }
157
+ eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS
158
+ JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME"
159
+
160
+ exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@"
data/gradlew.bat ADDED
@@ -0,0 +1,90 @@
1
+ @if "%DEBUG%" == "" @echo off
2
+ @rem ##########################################################################
3
+ @rem
4
+ @rem Gradle startup script for Windows
5
+ @rem
6
+ @rem ##########################################################################
7
+
8
+ @rem Set local scope for the variables with windows NT shell
9
+ if "%OS%"=="Windows_NT" setlocal
10
+
11
+ @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
12
+ set DEFAULT_JVM_OPTS=
13
+
14
+ set DIRNAME=%~dp0
15
+ if "%DIRNAME%" == "" set DIRNAME=.
16
+ set APP_BASE_NAME=%~n0
17
+ set APP_HOME=%DIRNAME%
18
+
19
+ @rem Find java.exe
20
+ if defined JAVA_HOME goto findJavaFromJavaHome
21
+
22
+ set JAVA_EXE=java.exe
23
+ %JAVA_EXE% -version >NUL 2>&1
24
+ if "%ERRORLEVEL%" == "0" goto init
25
+
26
+ echo.
27
+ echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
28
+ echo.
29
+ echo Please set the JAVA_HOME variable in your environment to match the
30
+ echo location of your Java installation.
31
+
32
+ goto fail
33
+
34
+ :findJavaFromJavaHome
35
+ set JAVA_HOME=%JAVA_HOME:"=%
36
+ set JAVA_EXE=%JAVA_HOME%/bin/java.exe
37
+
38
+ if exist "%JAVA_EXE%" goto init
39
+
40
+ echo.
41
+ echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
42
+ echo.
43
+ echo Please set the JAVA_HOME variable in your environment to match the
44
+ echo location of your Java installation.
45
+
46
+ goto fail
47
+
48
+ :init
49
+ @rem Get command-line arguments, handling Windowz variants
50
+
51
+ if not "%OS%" == "Windows_NT" goto win9xME_args
52
+ if "%@eval[2+2]" == "4" goto 4NT_args
53
+
54
+ :win9xME_args
55
+ @rem Slurp the command line arguments.
56
+ set CMD_LINE_ARGS=
57
+ set _SKIP=2
58
+
59
+ :win9xME_args_slurp
60
+ if "x%~1" == "x" goto execute
61
+
62
+ set CMD_LINE_ARGS=%*
63
+ goto execute
64
+
65
+ :4NT_args
66
+ @rem Get arguments from the 4NT Shell from JP Software
67
+ set CMD_LINE_ARGS=%$
68
+
69
+ :execute
70
+ @rem Setup the command line
71
+
72
+ set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
73
+
74
+ @rem Execute Gradle
75
+ "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
76
+
77
+ :end
78
+ @rem End local scope for the variables with windows NT shell
79
+ if "%ERRORLEVEL%"=="0" goto mainEnd
80
+
81
+ :fail
82
+ rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
83
+ rem the _cmd.exe /c_ return code!
84
+ if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
85
+ exit /b 1
86
+
87
+ :mainEnd
88
+ if "%OS%"=="Windows_NT" endlocal
89
+
90
+ :omega
@@ -0,0 +1,3 @@
1
+ Embulk::JavaPlugin.register_filter(
2
+ "mask", "org.embulk.filter.mask.MaskFilterPlugin",
3
+ File.expand_path('../../../../classpath', __FILE__))
@@ -0,0 +1,82 @@
1
+ package org.embulk.filter.mask;
2
+
3
+ import com.google.common.base.Optional;
4
+ import com.google.common.collect.ImmutableList;
5
+ import org.embulk.config.Config;
6
+ import org.embulk.config.ConfigDefault;
7
+ import org.embulk.config.ConfigSource;
8
+ import org.embulk.config.Task;
9
+ import org.embulk.config.TaskSource;
10
+ import org.embulk.spi.*;
11
+ import org.embulk.spi.type.Type;
12
+ import org.embulk.spi.type.Types;
13
+ import org.slf4j.Logger;
14
+
15
+ import java.util.HashMap;
16
+ import java.util.List;
17
+ import java.util.Map;
18
+
19
+ public class MaskFilterPlugin implements FilterPlugin {
20
+ private final Logger logger = Exec.getLogger(MaskFilterPlugin.class);
21
+
22
+ public interface PluginTask extends Task {
23
+ @Config("columns")
24
+ List<MaskColumn> getColumns();
25
+
26
+ }
27
+
28
+ public interface MaskColumn extends Task {
29
+ @Config("name")
30
+ String getName();
31
+
32
+ @Config("type")
33
+ @ConfigDefault("\"string\"")
34
+ Optional<String> getType();
35
+
36
+ @Config("pattern")
37
+ @ConfigDefault("\"all\"")
38
+ Optional<String> getPattern();
39
+
40
+ @Config("path")
41
+ @ConfigDefault("\"$.\"")
42
+ Optional<String> getPath();
43
+ }
44
+
45
+ @Override
46
+ public void transaction(ConfigSource config, Schema inputSchema,
47
+ FilterPlugin.Control control) {
48
+ PluginTask task = config.loadConfig(PluginTask.class);
49
+ Schema outputSchema = buildOutputSchema(task, inputSchema);
50
+ control.run(task.dump(), outputSchema);
51
+ }
52
+
53
+
54
+ private Schema buildOutputSchema(PluginTask task, Schema inputSchema) {
55
+ ImmutableList.Builder<Column> builder = ImmutableList.builder();
56
+
57
+ Map<String, MaskColumn> maskColumnMap = getMaskColumnMap(task);
58
+ int i = 0;
59
+ for (Column inputColumn : inputSchema.getColumns()) {
60
+ String name = inputColumn.getName();
61
+ Type type = (maskColumnMap.containsKey(name) && inputColumn.getType() != Types.JSON) ? Types.STRING : inputColumn.getType();
62
+ Column outputColumn = new Column(i++, inputColumn.getName(), type);
63
+ builder.add(outputColumn);
64
+ }
65
+
66
+ Schema outputSchema = new Schema(builder.build());
67
+ return outputSchema;
68
+ }
69
+
70
+ public static Map<String, MaskColumn> getMaskColumnMap(PluginTask task) {
71
+ Map<String, MaskColumn> maskColumnMap = new HashMap<>();
72
+ for (MaskColumn maskColumn : task.getColumns()) {
73
+ maskColumnMap.put(maskColumn.getName(), maskColumn);
74
+ }
75
+ return maskColumnMap;
76
+ }
77
+
78
+ @Override
79
+ public PageOutput open(TaskSource taskSource, Schema inputSchema, Schema outputSchema, PageOutput output) {
80
+ return new MaskPageOutput(taskSource, inputSchema, outputSchema, output);
81
+ }
82
+ }
@@ -0,0 +1,142 @@
1
+ package org.embulk.filter.mask;
2
+
3
+ import com.fasterxml.jackson.databind.node.TextNode;
4
+ import com.jayway.jsonpath.Configuration;
5
+ import com.jayway.jsonpath.JsonPath;
6
+ import com.jayway.jsonpath.Option;
7
+ import com.jayway.jsonpath.ParseContext;
8
+ import org.embulk.config.TaskSource;
9
+ import org.embulk.spi.*;
10
+ import org.embulk.spi.json.JsonParser;
11
+ import org.embulk.spi.time.Timestamp;
12
+ import org.embulk.spi.type.Types;
13
+ import org.embulk.filter.mask.MaskFilterPlugin.*;
14
+ import org.msgpack.value.Value;
15
+ import org.slf4j.Logger;
16
+
17
+ import java.util.HashMap;
18
+ import java.util.List;
19
+ import java.util.Map;
20
+ import java.util.regex.Matcher;
21
+ import java.util.regex.Pattern;
22
+
23
+ public class MaskPageOutput implements PageOutput {
24
+ private final MaskFilterPlugin.PluginTask task;
25
+ private final Map<String, Column> outputColumnMap;
26
+ private final List<Column> inputColumns;
27
+ private final Map<String, MaskColumn> maskColumnMap;
28
+ private final PageReader reader;
29
+ private final PageBuilder builder;
30
+ private final ParseContext parseContext;
31
+ private final JsonParser jsonParser;
32
+ private final Logger logger = Exec.getLogger(MaskPageOutput.class);
33
+
34
+ public MaskPageOutput(TaskSource taskSource, Schema inputSchema, Schema outputSchema, PageOutput output) {
35
+ this.task = taskSource.loadTask(MaskFilterPlugin.PluginTask.class);
36
+ this.inputColumns = inputSchema.getColumns();
37
+ this.maskColumnMap = MaskFilterPlugin.getMaskColumnMap(this.task);
38
+ this.reader = new PageReader(inputSchema);
39
+ this.builder = new PageBuilder(Exec.getBufferAllocator(), outputSchema, output);
40
+ this.outputColumnMap = new HashMap<>();
41
+ for (Column column : outputSchema.getColumns()) {
42
+ this.outputColumnMap.put(column.getName(), column);
43
+ }
44
+ this.parseContext = initializeParseContext();
45
+ this.jsonParser = new JsonParser();
46
+ }
47
+
48
+ private ParseContext initializeParseContext() {
49
+ Configuration conf = Configuration.defaultConfiguration();
50
+ conf = conf.addOptions(Option.DEFAULT_PATH_LEAF_TO_NULL);
51
+ conf = conf.addOptions(Option.SUPPRESS_EXCEPTIONS);
52
+ return JsonPath.using(conf);
53
+ }
54
+
55
+ @Override
56
+ public void add(Page page) {
57
+ reader.setPage(page);
58
+ while (reader.nextRecord()) {
59
+ setValue();
60
+ builder.addRecord();
61
+ }
62
+ }
63
+
64
+ private void setValue() {
65
+ for (Column inputColumn : inputColumns) {
66
+ if (reader.isNull(inputColumn)) {
67
+ builder.setNull(inputColumn);
68
+ continue;
69
+ }
70
+
71
+ Object inputValue;
72
+ if (Types.STRING.equals(inputColumn.getType())) {
73
+ final String value = reader.getString(inputColumn);
74
+ inputValue = value;
75
+ builder.setString(inputColumn, value);
76
+ } else if (Types.BOOLEAN.equals(inputColumn.getType())) {
77
+ final boolean value = reader.getBoolean(inputColumn);
78
+ inputValue = value;
79
+ builder.setBoolean(inputColumn, value);
80
+ } else if (Types.DOUBLE.equals(inputColumn.getType())) {
81
+ final double value = reader.getDouble(inputColumn);
82
+ inputValue = value;
83
+ builder.setDouble(inputColumn, value);
84
+ } else if (Types.LONG.equals(inputColumn.getType())) {
85
+ final long value = reader.getLong(inputColumn);
86
+ inputValue = value;
87
+ builder.setLong(inputColumn, value);
88
+ } else if (Types.TIMESTAMP.equals(inputColumn.getType())) {
89
+ final Timestamp value = reader.getTimestamp(inputColumn);
90
+ inputValue = value;
91
+ builder.setTimestamp(inputColumn, value);
92
+ } else if (Types.JSON.equals(inputColumn.getType())) {
93
+ final Value value = reader.getJson(inputColumn);
94
+ inputValue = value;
95
+ builder.setJson(inputColumn, value);
96
+ } else {
97
+ throw new DataException("Unexpected type:" + inputColumn.getType());
98
+ }
99
+
100
+ if (maskColumnMap.containsKey(inputColumn.getName())) {
101
+ MaskColumn maskColumn = maskColumnMap.get(inputColumn.getName());
102
+ String targetValue = inputValue.toString();
103
+ String pattern = maskColumn.getPattern().get();
104
+
105
+ if (Types.JSON.equals(inputColumn.getType())) {
106
+ String path = maskColumn.getPath().get();
107
+ String element = parseContext.parse(targetValue).read(path);
108
+ String maskedValue = mask(element, pattern);
109
+ String maskedJson = parseContext.parse(targetValue).set(path, new TextNode(maskedValue).asText()).jsonString();
110
+ builder.setJson(inputColumn, jsonParser.parse(maskedJson));
111
+ } else {
112
+ String maskedString = mask(targetValue, pattern);
113
+ builder.setString(inputColumn, maskedString);
114
+ }
115
+ }
116
+ }
117
+ }
118
+
119
+ @Override
120
+ public void finish() {
121
+ builder.finish();
122
+ }
123
+
124
+ @Override
125
+ public void close() {
126
+ builder.close();
127
+ }
128
+
129
+ private String mask(String value, String pattern) {
130
+ String maskedValue;
131
+ if (pattern.equals("email")) {
132
+ Pattern regexPattern = Pattern.compile("^.+?@(.+)$");
133
+ Matcher matcher = regexPattern.matcher(value);
134
+ maskedValue = matcher.replaceFirst("*****@$1");
135
+ } else if (pattern.equals("all")) {
136
+ maskedValue = value.replaceAll(".", "*");
137
+ } else {
138
+ maskedValue = value;
139
+ }
140
+ return maskedValue;
141
+ }
142
+ }
@@ -0,0 +1,34 @@
1
+ package org.embulk.filter.mask;
2
+
3
+ import org.embulk.EmbulkTestRuntime;
4
+ import org.embulk.config.ConfigException;
5
+ import org.embulk.config.ConfigLoader;
6
+ import org.embulk.config.ConfigSource;
7
+ import org.embulk.spi.Exec;
8
+ import org.embulk.spi.MockFormatterPlugin;
9
+ import org.junit.Rule;
10
+ import org.junit.Test;
11
+ import org.junit.rules.ExpectedException;
12
+
13
+ public class TestMaskFilterPlugin {
14
+ @Rule
15
+ public EmbulkTestRuntime runtime = new EmbulkTestRuntime();
16
+
17
+ @Rule
18
+ public ExpectedException exception = ExpectedException.none();
19
+
20
+ private ConfigSource getConfigFromYaml(String yaml) {
21
+ ConfigLoader loader = new ConfigLoader(Exec.getModelManager());
22
+ return loader.fromYamlString(yaml);
23
+ }
24
+
25
+ @Test
26
+ public void testThrowExceptionAtMissingColumnsField() {
27
+ String configYaml = "type: mask";
28
+ ConfigSource config = getConfigFromYaml(configYaml);
29
+
30
+ exception.expect(ConfigException.class);
31
+ exception.expectMessage("Field 'columns' is required but not set");
32
+ config.loadConfig(MockFormatterPlugin.PluginTask.class);
33
+ }
34
+ }
metadata ADDED
@@ -0,0 +1,92 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: embulk-filter-mask
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Tetsuo Yamabe
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-07-22 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - ~>
17
+ - !ruby/object:Gem::Version
18
+ version: '1.0'
19
+ name: bundler
20
+ prerelease: false
21
+ type: :development
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '1.0'
27
+ - !ruby/object:Gem::Dependency
28
+ requirement: !ruby/object:Gem::Requirement
29
+ requirements:
30
+ - - '>='
31
+ - !ruby/object:Gem::Version
32
+ version: '10.0'
33
+ name: rake
34
+ prerelease: false
35
+ type: :development
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '>='
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ description: Mask
42
+ email:
43
+ - tetsuo.yamabe@gmail.com
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - .gitignore
49
+ - LICENSE.txt
50
+ - README.md
51
+ - build.gradle
52
+ - config/checkstyle/checkstyle.xml
53
+ - config/checkstyle/default.xml
54
+ - gradle/wrapper/gradle-wrapper.jar
55
+ - gradle/wrapper/gradle-wrapper.properties
56
+ - gradlew
57
+ - gradlew.bat
58
+ - lib/embulk/filter/mask.rb
59
+ - src/main/java/org/embulk/filter/mask/MaskFilterPlugin.java
60
+ - src/main/java/org/embulk/filter/mask/MaskPageOutput.java
61
+ - src/test/java/org/embulk/filter/mask/TestMaskFilterPlugin.java
62
+ - classpath/accessors-smart-1.1.jar
63
+ - classpath/asm-5.0.3.jar
64
+ - classpath/embulk-filter-mask-0.0.1.jar
65
+ - classpath/json-path-2.2.0.jar
66
+ - classpath/json-smart-2.2.1.jar
67
+ - classpath/slf4j-api-1.7.16.jar
68
+ homepage: https://github.com/beniyama/embulk-filter-mask
69
+ licenses:
70
+ - MIT
71
+ metadata: {}
72
+ post_install_message:
73
+ rdoc_options: []
74
+ require_paths:
75
+ - lib
76
+ required_ruby_version: !ruby/object:Gem::Requirement
77
+ requirements:
78
+ - - '>='
79
+ - !ruby/object:Gem::Version
80
+ version: '0'
81
+ required_rubygems_version: !ruby/object:Gem::Requirement
82
+ requirements:
83
+ - - '>='
84
+ - !ruby/object:Gem::Version
85
+ version: '0'
86
+ requirements: []
87
+ rubyforge_project:
88
+ rubygems_version: 2.1.9
89
+ signing_key:
90
+ specification_version: 4
91
+ summary: Mask filter plugin for Embulk
92
+ test_files: []