Module: BitBucket::Validations::Token

Included in:
BitBucket::Validations
Defined in:
lib/bitbucket_rest_api/validations/token.rb

Constant Summary collapse

TOKEN_REQUIRED =
[
    'get /user',
    'get /user/emails',
    'get /user/followers',
    'get /user/following',
    'get /user/keys',
    'get /user/repos',
    'patch /user',
    'post /user/emails',
    'post /user/keys',
    'post /user/repos'
]
TOKEN_REQUIRED_REGEXP =
[
    /repos\/.*\/.*\/comments/,
]

Instance Method Summary collapse

Instance Method Details

#validates_token_for(method, path) ⇒ Object

Ensures that required authentication token is present before request is sent.



29
30
31
32
33
34
35
36
37
38
39
# File 'lib/bitbucket_rest_api/validations/token.rb', line 29

def validates_token_for(method, path)
  return true unless TOKEN_REQUIRED.grep("#{method} #{path}").empty?

  token_required = false
  TOKEN_REQUIRED_REGEXP.each do |regex|
    if "#{method} #{path}" =~ regex
      token_required = true
    end
  end
  return token_required
end