slkecho 2.1.4 → 2.1.6

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 29aa4e772ea7ce59d518976a361d677af50c50104f96f246f75cff0f792919fa
4
- data.tar.gz: e39892dec6c6061c1293279c93a062757b4740a2fec250848b9cf4c391535363
3
+ metadata.gz: 1758bd89b754485e44d4268df132bb18866fc210d4ecb6e460f3e76bf0906f76
4
+ data.tar.gz: 3ab51b0007244fa47314cfb837a254e668a9ea2f00a5e96b433cdd42b672d3b0
5
5
  SHA512:
6
- metadata.gz: 90abb14d94ef0a810de5dd7924e38981dbf2b3e978ee60c3f54dadefa2863d6ad89054a78588f50d67cc04f2770940452938f5ef5c0b980f5d083af169ee1f71
7
- data.tar.gz: 8fe7ca6e4a5814bba69c8a26232a20f9d1f56ea10f3ed72d66fdb8db54f40ba4a4d5f5ed15c44ab301b372d142d389b9bddd13a110736689947acf70a925273a
6
+ metadata.gz: 49428da2ed9644b5d70c154dd7c0218aaac8fe009f1fdd22ca4abd20601e71db9d7fd254ef9dbd78839402281fe76f789e1bdf07d4489d52d6bed197f4a5f549
7
+ data.tar.gz: b9f38dc1c3be84941b08b9cc69e0fa94bf84e7439d1c4e03b03ad99fc3d695a39efee653702d85f44a3dd459ff599511fd58368a0b42ca6a69466a6440734969
data/CHANGELOG.md CHANGED
@@ -1,8 +1,18 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [v2.1.6] - 2025-01-05
4
+
5
+ - refactor: options building
6
+ - refactor: slack request
7
+
8
+ ## [v2.1.5] - 2025-01-04
9
+
10
+ - feat: Start type signature implementation
11
+ - chore: update dependencies
12
+
3
13
  ## [v2.1.4] - 2024-08-31
4
14
 
5
- - Only update dependencies
15
+ - chore: update dependencies
6
16
 
7
17
  ## [v2.1.3] - 2024-03-15
8
18
 
data/Steepfile ADDED
@@ -0,0 +1,40 @@
1
+ # frozen_string_literal: true
2
+
3
+ # D = Steep::Diagnostic
4
+ #
5
+ # target :lib do
6
+ # signature "sig"
7
+ #
8
+ # check "lib" # Directory name
9
+ # check "Gemfile" # File name
10
+ # check "app/models/**/*.rb" # Glob
11
+ # # ignore "lib/templates/*.rb"
12
+ #
13
+ # # library "pathname" # Standard libraries
14
+ # # library "strong_json" # Gems
15
+ #
16
+ # # configure_code_diagnostics(D::Ruby.default) # `default` diagnostics setting (applies by default)
17
+ # # configure_code_diagnostics(D::Ruby.strict) # `strict` diagnostics setting
18
+ # # configure_code_diagnostics(D::Ruby.lenient) # `lenient` diagnostics setting
19
+ # # configure_code_diagnostics(D::Ruby.silent) # `silent` diagnostics setting
20
+ # # configure_code_diagnostics do |hash| # You can setup everything yourself
21
+ # # hash[D::Ruby::NoMethod] = :information
22
+ # # end
23
+ # end
24
+
25
+ # target :test do
26
+ # signature "sig", "sig-private"
27
+ #
28
+ # check "test"
29
+ #
30
+ # # library "pathname" # Standard libraries
31
+ # end
32
+
33
+ target :lib do
34
+ signature "sig"
35
+
36
+ library "net-http"
37
+ library "uri"
38
+
39
+ check "lib/slkecho/slack_request/lookup_user_by_email.rb"
40
+ end
@@ -0,0 +1,22 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "net/http"
4
+ require "uri"
5
+
6
+ module Slkecho
7
+ class HTTP
8
+ class << self
9
+ def get(uri, headers: nil)
10
+ http = Net::HTTP.new(uri.host, uri.port)
11
+ http.use_ssl = uri.scheme == "https"
12
+ http.get(uri, headers)
13
+ end
14
+
15
+ def post(uri, headers: nil, body: nil)
16
+ http = Net::HTTP.new(uri.host, uri.port)
17
+ http.use_ssl = uri.scheme == "https"
18
+ http.post(uri, body, headers)
19
+ end
20
+ end
21
+ end
22
+ end
@@ -4,46 +4,47 @@ require "optparse"
4
4
 
5
5
  module Slkecho
6
6
  class OptionParser
7
- def option_parser # rubocop:disable Metrics/AbcSize,Metrics/MethodLength
7
+ def option_parser # rubocop:disable Metrics/MethodLength
8
8
  @option_parser ||= ::OptionParser.new do |o|
9
9
  o.banner = "Usage: slkecho [options] message"
10
10
  o.program_name = "slkecho"
11
11
  o.version = Slkecho::VERSION
12
- o.on("-c", "--channel CHANNEL", "Slack channel to post message.") { @options.channel = _1 }
13
- o.on("-m", "--mention-by-email EMAIL", "Mention to user by email.") { @options.mention_by_email = _1 }
14
- o.on("--username USERNAME", "Set user name for message.") { @options.username = _1 }
15
- o.on("--icon-url ICON_URL", "Set user icon image for message by URL.") { @options.icon_url = _1 }
16
- o.on("--icon-emoji ICON_EMOJI", "Set user image for message by emoji.") { @options.icon_emoji = _1 }
17
- o.on("--message-as-blocks", "Post message as blocks.") { @options.message_as_blocks = true }
12
+ o.on("-c", "--channel CHANNEL", "Slack channel to post message.")
13
+ o.on("-m", "--mention-by-email EMAIL", "Mention to user by email.")
14
+ o.on("--username USERNAME", "Set user name for message.")
15
+ o.on("--icon-url ICON_URL", "Set user icon image for message by URL.")
16
+ o.on("--icon-emoji ICON_EMOJI", "Set user image for message by emoji.")
17
+ o.on("--message-as-blocks", "Post message as blocks.")
18
18
  end
19
19
  end
20
20
 
21
21
  def parse(argv)
22
- options = parse_options(argv)
22
+ options = build_options(argv)
23
23
  validate_options(options)
24
24
 
25
25
  options
26
26
  end
27
27
 
28
- def parse_options(argv)
29
- @options = Slkecho::Options.new
30
- argv = option_parser.parse(argv)
28
+ def build_options(argv)
29
+ option_values = {}
30
+ argv = option_parser.parse(argv, into: option_values)
31
+ option_values = option_values.transform_keys { _1.to_s.tr("-", "_") }
31
32
 
32
- @options.message = if !argv.empty?
33
- argv.first
34
- elsif !$stdin.tty?
35
- $stdin.read.then { _1.empty? ? nil : _1 }
36
- end
33
+ Slkecho::Options.new(option_values).tap do |opt|
34
+ opt.message = fetch_message(argv)
35
+ end
36
+ end
37
37
 
38
- @options.dup
38
+ def fetch_message(argv)
39
+ if !argv.empty?
40
+ argv.first
41
+ elsif !$stdin.tty?
42
+ $stdin.read.then { _1.empty? ? nil : _1 }
43
+ end
39
44
  end
40
45
 
41
46
  def validate_options(options)
42
- # channel
43
- raise Slkecho::InvalidOptionError, "channel is required." if options.channel.nil?
44
-
45
- # message
46
- raise Slkecho::InvalidOptionError, "message is missing." if options.message.nil?
47
+ raise Slkecho::InvalidOptionError, options.error_message unless options.valid?
47
48
 
48
49
  true
49
50
  end
@@ -1,7 +1,25 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require "active_model"
4
+
3
5
  module Slkecho
4
6
  class Options
5
- attr_accessor :channel, :mention_by_email, :message, :username, :icon_url, :icon_emoji, :message_as_blocks
7
+ include ActiveModel::Model
8
+ include ActiveModel::Attributes
9
+
10
+ attribute :channel, :string
11
+ attribute :mention_by_email, :string
12
+ attribute :message, :string
13
+ attribute :username, :string
14
+ attribute :icon_url, :string
15
+ attribute :icon_emoji, :string
16
+ attribute :message_as_blocks, :boolean
17
+
18
+ validates :channel, presence: { message: "is required." }
19
+ validates :message, presence: { message: "is missing." }, if: -> { message.nil? }
20
+
21
+ def error_message
22
+ errors.full_messages.join(" ").downcase
23
+ end
6
24
  end
7
25
  end
@@ -5,27 +5,17 @@ require "uri"
5
5
  require "json"
6
6
 
7
7
  require_relative "../slack_request"
8
+ require_relative "../http"
8
9
 
9
10
  module Slkecho
10
11
  module SlackRequest
11
12
  class LookupUserByEmail
12
13
  def initialize(slack_api_token:)
13
14
  @slack_api_token = slack_api_token
14
-
15
- @uri = URI.parse("https://slack.com/api/users.lookupByEmail")
16
- @http = Net::HTTP.new(@uri.host, @uri.port)
17
- @http.use_ssl = true
18
- @headers = {
19
- "Authorization" => "Bearer #{slack_api_token}",
20
- "Content-Type" => "application/x-www-form-urlencoded"
21
- }
22
15
  end
23
16
 
24
17
  def request(email:)
25
- user_info = Slkecho::SlackRequest.send_request do
26
- @http.get(uri_with_query(@uri, { email: email }), @headers)
27
- end
28
-
18
+ user_info = send_request(email, @slack_api_token)
29
19
  case user_info
30
20
  in { ok: true, user: user }
31
21
  user
@@ -36,8 +26,21 @@ module Slkecho
36
26
  end
37
27
  end
38
28
 
29
+ private
30
+
31
+ def send_request(email, token)
32
+ Slkecho::SlackRequest.send_request do
33
+ uri = uri_with_query("https://slack.com/api/users.lookupByEmail", { email: email })
34
+ headers = {
35
+ "Authorization" => "Bearer #{token}",
36
+ "Content-Type" => "application/x-www-form-urlencoded"
37
+ }
38
+ Slkecho::HTTP.get(uri, headers: headers)
39
+ end
40
+ end
41
+
39
42
  def uri_with_query(uri, params)
40
- uri.dup.tap { _1.query = URI.encode_www_form(params) }
43
+ URI(uri).tap { _1.query = URI.encode_www_form(params) }
41
44
  end
42
45
  end
43
46
  end
@@ -4,30 +4,30 @@ require "net/http"
4
4
  require "uri"
5
5
  require "json"
6
6
 
7
+ require_relative "../http"
7
8
  require_relative "../slack_request"
8
9
 
9
10
  module Slkecho
10
11
  module SlackRequest
11
12
  class PostMessage
12
- Params = Struct.new(:channel, :blocks, :username, :icon_url, :icon_emoji, keyword_init: true)
13
+ Params = Struct.new(:channel, :blocks, :username, :icon_url, :icon_emoji, keyword_init: true) do
14
+ def to_request_body
15
+ JSON.dump({
16
+ channel: channel,
17
+ blocks: blocks,
18
+ username: username,
19
+ icon_url: icon_url,
20
+ icon_emoji: icon_emoji
21
+ })
22
+ end
23
+ end
13
24
 
14
25
  def initialize(slack_api_token:)
15
26
  @slack_api_token = slack_api_token
16
-
17
- @uri = URI.parse("https://slack.com/api/chat.postMessage")
18
- @http = Net::HTTP.new(@uri.host, @uri.port)
19
- @http.use_ssl = true
20
- @headers = {
21
- "Content-Type" => "application/json; charset=utf-8",
22
- "Authorization" => "Bearer #{slack_api_token}"
23
- }
24
27
  end
25
28
 
26
29
  def request(params)
27
- result = Slkecho::SlackRequest.send_request do
28
- @http.post(@uri.path, request_body(params).to_json, @headers)
29
- end
30
-
30
+ result = send_request(@slack_api_token, params)
31
31
  case result
32
32
  in { ok: true }
33
33
  true
@@ -36,14 +36,19 @@ module Slkecho
36
36
  end
37
37
  end
38
38
 
39
- def request_body(params)
40
- {
41
- channel: params.channel,
42
- blocks: params.blocks,
43
- username: params.username,
44
- icon_url: params.icon_url,
45
- icon_emoji: params.icon_emoji
46
- }
39
+ private
40
+
41
+ def send_request(token, params)
42
+ Slkecho::SlackRequest.send_request do
43
+ uri = URI("https://slack.com/api/chat.postMessage")
44
+ headers = {
45
+ "Content-Type" => "application/json; charset=utf-8",
46
+ "Authorization" => "Bearer #{token}"
47
+ }
48
+ body = params.to_request_body
49
+
50
+ Slkecho::HTTP.post(uri, headers: headers, body: body)
51
+ end
47
52
  end
48
53
  end
49
54
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Slkecho
4
- VERSION = "2.1.4"
4
+ VERSION = "2.1.6"
5
5
  end
@@ -0,0 +1,5 @@
1
+ module Slkecho
2
+ class HTTP
3
+ def self.get: (URI::Generic, headers: Hash[String, String]) -> void
4
+ end
5
+ end
@@ -0,0 +1,11 @@
1
+ module Slkecho
2
+ module SlackRequest
3
+ class LookupUserByEmail
4
+ @slack_api_token: String
5
+
6
+ def initialize: (slack_api_token: String) -> void
7
+ def send_request: (String, String) -> untyped
8
+ def uri_with_query: (String, untyped) -> untyped
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,5 @@
1
+ module Slkecho
2
+ module SlackRequest
3
+ def self.send_request: () { () -> void } -> void
4
+ end
5
+ end
metadata CHANGED
@@ -1,15 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: slkecho
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.4
4
+ version: 2.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - okonomi
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-08-31 00:00:00.000000000 Z
12
- dependencies: []
11
+ date: 2025-01-05 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: activemodel
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
13
27
  description: Post message to Slack like echo command.
14
28
  email:
15
29
  - okonomi@oknm.jp
@@ -21,11 +35,13 @@ files:
21
35
  - CHANGELOG.md
22
36
  - LICENSE.txt
23
37
  - README.md
38
+ - Steepfile
24
39
  - exe/slkecho
25
40
  - lib/slkecho.rb
26
41
  - lib/slkecho/blocks_builder.rb
27
42
  - lib/slkecho/cli.rb
28
43
  - lib/slkecho/configuration.rb
44
+ - lib/slkecho/http.rb
29
45
  - lib/slkecho/option_parser.rb
30
46
  - lib/slkecho/options.rb
31
47
  - lib/slkecho/slack_client.rb
@@ -34,6 +50,9 @@ files:
34
50
  - lib/slkecho/slack_request/post_message.rb
35
51
  - lib/slkecho/version.rb
36
52
  - sig/slkecho.rbs
53
+ - sig/slkecho/http.rbs
54
+ - sig/slkecho/slack_request.rbs
55
+ - sig/slkecho/slack_request/lookup_user_by_email.rbs
37
56
  homepage: https://github.com/okonomi/slkecho
38
57
  licenses:
39
58
  - MIT
@@ -43,7 +62,7 @@ metadata:
43
62
  changelog_uri: https://github.com/okonomi/slkecho/blob/main/CHANGELOG.md
44
63
  github_repo: https://github.com/okonomi/slkecho
45
64
  rubygems_mfa_required: 'true'
46
- post_install_message:
65
+ post_install_message:
47
66
  rdoc_options: []
48
67
  require_paths:
49
68
  - lib
@@ -58,8 +77,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
58
77
  - !ruby/object:Gem::Version
59
78
  version: '0'
60
79
  requirements: []
61
- rubygems_version: 3.5.11
62
- signing_key:
80
+ rubygems_version: 3.5.22
81
+ signing_key:
63
82
  specification_version: 4
64
83
  summary: Post message to Slack like echo command.
65
84
  test_files: []