ruboty-flexible_alias 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +9 -0
- data/.rspec +2 -0
- data/.travis.yml +5 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +67 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/lib/ruboty/flexible_alias.rb +3 -0
- data/lib/ruboty/flexible_alias/alias.rb +36 -0
- data/lib/ruboty/flexible_alias/version.rb +5 -0
- data/lib/ruboty/handlers/flexible_alias.rb +121 -0
- data/ruboty-flexible_alias.gemspec +29 -0
- metadata +128 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: c0388f5591eff1d78f6af39cf5674a76b0d4f349
|
4
|
+
data.tar.gz: ebfb9e4828e25dc314f3ee7ade069f09851fa6ba
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: e1b86a31a63da6640efdf71e2629eae9803e3928a609e05057a2a3bd320f02f7a0f5c9a867d04076fa4110d62a9da50dd1dda41fce530b1e42cd04a74c7850a4
|
7
|
+
data.tar.gz: 0deed85a9c835c80e88080c3185e4bcfb33621b3948d390a56ea9da56dc1e720cb02f604edd7df36037520a325ba71ed7fabda4009cea47e86b42db12e26a2c3
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2016 Sho Kusano
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,67 @@
|
|
1
|
+
# Ruboty::FlexibleAlias
|
2
|
+
|
3
|
+
|
4
|
+
## Installation
|
5
|
+
|
6
|
+
Add this line to your application's Gemfile:
|
7
|
+
|
8
|
+
```ruby
|
9
|
+
gem 'ruboty-flexible_alias'
|
10
|
+
```
|
11
|
+
|
12
|
+
And then execute:
|
13
|
+
|
14
|
+
$ bundle
|
15
|
+
|
16
|
+
## Usage
|
17
|
+
|
18
|
+
### Register new alias
|
19
|
+
|
20
|
+
```
|
21
|
+
ruboty flexible [scoped] alias (original) -> (aliased)
|
22
|
+
|
23
|
+
# ex:
|
24
|
+
|
25
|
+
ruboty flexible alias hi (alnum) -> echo Hello, $1
|
26
|
+
|
27
|
+
ruboty hi rosylilly
|
28
|
+
> Hello, rosylilly
|
29
|
+
|
30
|
+
# ex: scoped (availabled alias in registered room only)
|
31
|
+
|
32
|
+
ruboty flexible scoped alias bye (alnum) -> echo Good bye, $1
|
33
|
+
|
34
|
+
ruboty bye rosylilly
|
35
|
+
> Good bye, rosylilly
|
36
|
+
```
|
37
|
+
|
38
|
+
Available matchers
|
39
|
+
|
40
|
+
- `(alnum)` : `[[:alnum:]]`
|
41
|
+
- `(digit)` : `[[:digit:]]`
|
42
|
+
- `(graph)` : `[[:graph:]]`
|
43
|
+
|
44
|
+
### Help
|
45
|
+
|
46
|
+
```
|
47
|
+
ruboty /list flexible alias\z/ - List flexible alias
|
48
|
+
ruboty /delete flexible alias (?<alias>.+)\z/m - Delete flexible alias
|
49
|
+
ruboty /flexible alias (?<original>.+?) -> (?<alias>.+)\z/m - Create flexible alias message
|
50
|
+
ruboty /flexible scoped alias (?<original>.+?) -> (?<alias>.+)\z/m - Create flexible alias message
|
51
|
+
```
|
52
|
+
|
53
|
+
## Development
|
54
|
+
|
55
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
56
|
+
|
57
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
58
|
+
|
59
|
+
## Contributing
|
60
|
+
|
61
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/zeny-io/ruboty-flexible_alias.
|
62
|
+
|
63
|
+
|
64
|
+
## License
|
65
|
+
|
66
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
67
|
+
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require 'bundler/setup'
|
4
|
+
require 'ruboty/flexible_alias'
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require 'irb'
|
14
|
+
IRB.start
|
data/bin/setup
ADDED
@@ -0,0 +1,36 @@
|
|
1
|
+
require 'ruboty/flexible_alias'
|
2
|
+
|
3
|
+
class Ruboty::FlexibleAlias::Alias
|
4
|
+
def initialize(original, transformed)
|
5
|
+
@original = original
|
6
|
+
@transformed = transformed
|
7
|
+
|
8
|
+
compile!
|
9
|
+
end
|
10
|
+
|
11
|
+
def compile!
|
12
|
+
@compiled = []
|
13
|
+
|
14
|
+
@original.gsub(/([^\)]*)\((digit|alnum|graph)\)([^\(]*)/) do |match|
|
15
|
+
match = Regexp.last_match
|
16
|
+
left = match[1]
|
17
|
+
keyword = match[2]
|
18
|
+
right = match[3]
|
19
|
+
@compiled += [Regexp.escape(left), '([[:', keyword, ':]]+)', Regexp.escape(right)]
|
20
|
+
end
|
21
|
+
|
22
|
+
@compiled += [Regexp.escape(@original)] if @compiled.empty?
|
23
|
+
|
24
|
+
@compiled = Regexp.compile(@compiled.join(''))
|
25
|
+
end
|
26
|
+
|
27
|
+
def tranfrom(original)
|
28
|
+
match = original.match(@compiled)
|
29
|
+
|
30
|
+
if match
|
31
|
+
@transformed.gsub(/\$([0-9]+)/) do |*|
|
32
|
+
match[Regexp.last_match[1].to_i]
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
@@ -0,0 +1,121 @@
|
|
1
|
+
require 'ruboty'
|
2
|
+
|
3
|
+
module Ruboty
|
4
|
+
module Handlers
|
5
|
+
class FlexibleAlias < Base
|
6
|
+
NAMESPACE = 'flexible_alias'.freeze
|
7
|
+
|
8
|
+
on(
|
9
|
+
/flexible alias (?<original>.+?) -> (?<alias>.+)\z/m,
|
10
|
+
description: 'Create flexible alias message',
|
11
|
+
name: 'create'
|
12
|
+
)
|
13
|
+
|
14
|
+
on(
|
15
|
+
/list flexible alias\z/,
|
16
|
+
description: 'List flexible alias',
|
17
|
+
name: 'list'
|
18
|
+
)
|
19
|
+
|
20
|
+
on(
|
21
|
+
/delete flexible alias (?<alias>.+)\z/m,
|
22
|
+
description: 'Delete flexible alias',
|
23
|
+
name: 'delete'
|
24
|
+
)
|
25
|
+
|
26
|
+
on(
|
27
|
+
/flexible scoped alias (?<original>.+?) -> (?<alias>.+)\z/m,
|
28
|
+
description: 'Create flexible alias message',
|
29
|
+
name: 'create_scoped'
|
30
|
+
)
|
31
|
+
|
32
|
+
on(
|
33
|
+
//,
|
34
|
+
description: 'Resolve flexible alias if registered',
|
35
|
+
name: 'resolve',
|
36
|
+
hidden: true
|
37
|
+
)
|
38
|
+
|
39
|
+
def create(message)
|
40
|
+
from = message[:original]
|
41
|
+
to = message[:alias]
|
42
|
+
register('*', from, to)
|
43
|
+
message.reply("Registered alias: #{from} -> #{to}")
|
44
|
+
end
|
45
|
+
|
46
|
+
def create_scoped(message)
|
47
|
+
scope = message.from
|
48
|
+
from = message[:original]
|
49
|
+
to = message[:alias]
|
50
|
+
register(scope, from, to)
|
51
|
+
message.reply("Registered alias: #{from} -> #{to}")
|
52
|
+
end
|
53
|
+
|
54
|
+
def delete(message)
|
55
|
+
scope = message.from
|
56
|
+
if (table[scope] || {}).delete(message[:alias])
|
57
|
+
message.reply('Deleted')
|
58
|
+
else
|
59
|
+
if (table['*'] || {}).delete(message[:alias])
|
60
|
+
message.reply('Deleted')
|
61
|
+
else
|
62
|
+
message.reply('Not found')
|
63
|
+
end
|
64
|
+
end
|
65
|
+
end
|
66
|
+
|
67
|
+
def list(message)
|
68
|
+
message.reply(aliases(message.from), code: true)
|
69
|
+
end
|
70
|
+
|
71
|
+
def resolve(message)
|
72
|
+
scope = message.from
|
73
|
+
scoped = table[scope] || {}
|
74
|
+
all = table['*'] || {}
|
75
|
+
from = message.body.gsub(prefix, '')
|
76
|
+
|
77
|
+
hit = false
|
78
|
+
all.merge(scoped).each_pair do |pattern, transformed|
|
79
|
+
alias_cmd = Ruboty::FlexibleAlias::Alias.new(pattern, transformed)
|
80
|
+
|
81
|
+
next unless aliased = alias_cmd.tranfrom(from)
|
82
|
+
robot.receive(
|
83
|
+
message.original.merge(
|
84
|
+
body: "#{message.body[prefix]}#{aliased}"
|
85
|
+
)
|
86
|
+
)
|
87
|
+
hit = true
|
88
|
+
break
|
89
|
+
end
|
90
|
+
|
91
|
+
hit
|
92
|
+
end
|
93
|
+
|
94
|
+
private
|
95
|
+
|
96
|
+
def register(scope, original, transformed)
|
97
|
+
table[scope] ||= {}
|
98
|
+
table[scope][original] = transformed
|
99
|
+
end
|
100
|
+
|
101
|
+
def table
|
102
|
+
robot.brain.data[NAMESPACE] ||= {}
|
103
|
+
end
|
104
|
+
|
105
|
+
def aliases(scope)
|
106
|
+
scoped = table[scope] || {}
|
107
|
+
all = table['*'] || {}
|
108
|
+
flexible_table = all.merge(scoped)
|
109
|
+
if flexible_table.empty?
|
110
|
+
'No alias registered'
|
111
|
+
else
|
112
|
+
flexible_table.map { |from, to| "#{from} -> #{to}" }.join("\n")
|
113
|
+
end
|
114
|
+
end
|
115
|
+
|
116
|
+
def prefix
|
117
|
+
Ruboty::Action.prefix_pattern(robot.name)
|
118
|
+
end
|
119
|
+
end
|
120
|
+
end
|
121
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'ruboty/flexible_alias/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = 'ruboty-flexible_alias'
|
8
|
+
spec.version = Ruboty::FlexibleAlias::VERSION
|
9
|
+
spec.authors = ['Sho Kusano']
|
10
|
+
spec.email = ['sho-kusano@zeny.io']
|
11
|
+
|
12
|
+
spec.summary = 'Provides flexible alias to ruboty'
|
13
|
+
spec.description = spec.summary
|
14
|
+
spec.homepage = 'https://github.com/zeny-io/ruboty-flexible_alias'
|
15
|
+
spec.license = 'MIT'
|
16
|
+
|
17
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
18
|
+
f.match(%r{^(test|spec|features)/})
|
19
|
+
end
|
20
|
+
spec.bindir = 'exe'
|
21
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
22
|
+
spec.require_paths = ['lib']
|
23
|
+
|
24
|
+
spec.add_development_dependency 'bundler', '~> 1.13'
|
25
|
+
spec.add_development_dependency 'rake', '~> 10.0'
|
26
|
+
spec.add_development_dependency 'rspec', '~> 3.0'
|
27
|
+
spec.add_development_dependency 'ruboty-echo'
|
28
|
+
spec.add_dependency 'ruboty'
|
29
|
+
end
|
metadata
ADDED
@@ -0,0 +1,128 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: ruboty-flexible_alias
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Sho Kusano
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2016-12-13 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.13'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.13'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '3.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '3.0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: ruboty-echo
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: ruboty
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
description: Provides flexible alias to ruboty
|
84
|
+
email:
|
85
|
+
- sho-kusano@zeny.io
|
86
|
+
executables: []
|
87
|
+
extensions: []
|
88
|
+
extra_rdoc_files: []
|
89
|
+
files:
|
90
|
+
- ".gitignore"
|
91
|
+
- ".rspec"
|
92
|
+
- ".travis.yml"
|
93
|
+
- Gemfile
|
94
|
+
- LICENSE.txt
|
95
|
+
- README.md
|
96
|
+
- Rakefile
|
97
|
+
- bin/console
|
98
|
+
- bin/setup
|
99
|
+
- lib/ruboty/flexible_alias.rb
|
100
|
+
- lib/ruboty/flexible_alias/alias.rb
|
101
|
+
- lib/ruboty/flexible_alias/version.rb
|
102
|
+
- lib/ruboty/handlers/flexible_alias.rb
|
103
|
+
- ruboty-flexible_alias.gemspec
|
104
|
+
homepage: https://github.com/zeny-io/ruboty-flexible_alias
|
105
|
+
licenses:
|
106
|
+
- MIT
|
107
|
+
metadata: {}
|
108
|
+
post_install_message:
|
109
|
+
rdoc_options: []
|
110
|
+
require_paths:
|
111
|
+
- lib
|
112
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
113
|
+
requirements:
|
114
|
+
- - ">="
|
115
|
+
- !ruby/object:Gem::Version
|
116
|
+
version: '0'
|
117
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
118
|
+
requirements:
|
119
|
+
- - ">="
|
120
|
+
- !ruby/object:Gem::Version
|
121
|
+
version: '0'
|
122
|
+
requirements: []
|
123
|
+
rubyforge_project:
|
124
|
+
rubygems_version: 2.5.1
|
125
|
+
signing_key:
|
126
|
+
specification_version: 4
|
127
|
+
summary: Provides flexible alias to ruboty
|
128
|
+
test_files: []
|