Class: Slack::Events::Request

Inherits:
Object
  • Object
show all
Defined in:
lib/slack/events/request.rb

Defined Under Namespace

Classes: InvalidSignature, MissingSigningSecret, TimestampExpired

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(http_request, options = {}) ⇒ Request

Returns a new instance of Request.



16
17
18
19
20
21
# File 'lib/slack/events/request.rb', line 16

def initialize(http_request, options = {})
  @http_request = http_request
  @signing_secret = options[:signing_secret] || Slack::Events.config.signing_secret
  @signature_expires_in =
    options[:signature_expires_in] || Slack::Events.config.signature_expires_in
end

Instance Attribute Details

#http_requestObject (readonly)

Returns the value of attribute http_request.



12
13
14
# File 'lib/slack/events/request.rb', line 12

def http_request
  @http_request
end

#signature_expires_inObject (readonly)

Returns the value of attribute signature_expires_in.



12
13
14
# File 'lib/slack/events/request.rb', line 12

def signature_expires_in
  @signature_expires_in
end

#signing_secretObject (readonly)

Returns the value of attribute signing_secret.



12
13
14
# File 'lib/slack/events/request.rb', line 12

def signing_secret
  @signing_secret
end

Instance Method Details

#bodyObject

Request body.



40
41
42
43
44
45
46
47
48
# File 'lib/slack/events/request.rb', line 40

def body
  @body ||= begin
    input = http_request.body
    input.rewind
    body = input.read
    input.rewind
    body
  end
end

#expired?Boolean

Returns true if the signature coming from Slack has expired.

Returns:

  • (Boolean)


51
52
53
# File 'lib/slack/events/request.rb', line 51

def expired?
  timestamp.nil? || (Time.now.to_i - timestamp.to_i).abs > signature_expires_in
end

#signatureObject

The signature is created by combining the signing secret with the body of the request Slack is sending using a standard HMAC-SHA256 keyed hash.



30
31
32
# File 'lib/slack/events/request.rb', line 30

def signature
  @signature ||= http_request.get_header('HTTP_X_SLACK_SIGNATURE')
end

#timestampObject

Request timestamp.



24
25
26
# File 'lib/slack/events/request.rb', line 24

def timestamp
  @timestamp ||= http_request.get_header('HTTP_X_SLACK_REQUEST_TIMESTAMP')
end

#valid?Boolean

Returns true if the signature coming from Slack is valid.

Returns:

  • (Boolean)

Raises:



56
57
58
59
60
61
62
63
64
65
# File 'lib/slack/events/request.rb', line 56

def valid?
  raise MissingSigningSecret unless signing_secret
  raise InvalidSignature unless signature

  digest = OpenSSL::Digest.new('SHA256')
  signature_basestring = [version, timestamp, body].join(':')
  hex_hash = OpenSSL::HMAC.hexdigest(digest, signing_secret, signature_basestring)
  computed_signature = [version, hex_hash].join('=')
  Utils::Security.secure_compare(computed_signature, signature)
end

#verify!Object

Validates the request signature and its expiration.

Raises:



68
69
70
71
72
73
# File 'lib/slack/events/request.rb', line 68

def verify!
  raise TimestampExpired if expired?
  raise InvalidSignature unless valid?

  true
end

#versionObject

Signature version.



35
36
37
# File 'lib/slack/events/request.rb', line 35

def version
  'v0'
end