2016-08-15 03:58:33 -04:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
describe UserApiKeysController do
|
|
|
|
|
|
|
|
let :public_key do
|
2017-08-31 00:06:56 -04:00
|
|
|
<<~TXT
|
|
|
|
-----BEGIN PUBLIC KEY-----
|
|
|
|
MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDh7BS7Ey8hfbNhlNAW/47pqT7w
|
|
|
|
IhBz3UyBYzin8JurEQ2pY9jWWlY8CH147KyIZf1fpcsi7ZNxGHeDhVsbtUKZxnFV
|
|
|
|
p16Op3CHLJnnJKKBMNdXMy0yDfCAHZtqxeBOTcCo1Vt/bHpIgiK5kmaekyXIaD0n
|
|
|
|
w0z/BYpOgZ8QwnI5ZwIDAQAB
|
|
|
|
-----END PUBLIC KEY-----
|
|
|
|
TXT
|
2016-08-15 03:58:33 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
let :private_key do
|
2017-08-31 00:06:56 -04:00
|
|
|
<<~TXT
|
|
|
|
-----BEGIN RSA PRIVATE KEY-----
|
|
|
|
MIICWwIBAAKBgQDh7BS7Ey8hfbNhlNAW/47pqT7wIhBz3UyBYzin8JurEQ2pY9jW
|
|
|
|
WlY8CH147KyIZf1fpcsi7ZNxGHeDhVsbtUKZxnFVp16Op3CHLJnnJKKBMNdXMy0y
|
|
|
|
DfCAHZtqxeBOTcCo1Vt/bHpIgiK5kmaekyXIaD0nw0z/BYpOgZ8QwnI5ZwIDAQAB
|
|
|
|
AoGAeHesbjzCivc+KbBybXEEQbBPsThY0Y+VdgD0ewif2U4UnNhzDYnKJeTZExwQ
|
|
|
|
vAK2YsRDV3KbhljnkagQduvmgJyCKuV/CxZvbJddwyIs3+U2D4XysQp3e1YZ7ROr
|
|
|
|
YlOIoekHCx1CNm6A4iImqGxB0aJ7Owdk3+QSIaMtGQWaPTECQQDz2UjJ+bomguNs
|
|
|
|
zdcv3ZP7W3U5RG+TpInSHiJXpt2JdNGfHItozGJCxfzDhuKHK5Cb23bgldkvB9Xc
|
|
|
|
p/tngTtNAkEA7S4cqUezA82xS7aYPehpRkKEmqzMwR3e9WeL7nZ2cdjZAHgXe49l
|
|
|
|
3mBhidEyRmtPqbXo1Xix8LDuqik0IdnlgwJAQeYTnLnHS8cNjQbnw4C/ECu8Nzi+
|
|
|
|
aokJ0eXg5A0tS4ttZvGA31Z0q5Tz5SdbqqnkT6p0qub0JZiZfCNNdsBe9QJAaGT5
|
|
|
|
fJDwfGYW+YpfLDCV1bUFhMc2QHITZtSyxL0jmSynJwu02k/duKmXhP+tL02gfMRy
|
|
|
|
vTMorxZRllgYeCXeXQJAEGRXR8/26jwqPtKKJzC7i9BuOYEagqj0nLG2YYfffCMc
|
|
|
|
d3JGCf7DMaUlaUE8bJ08PtHRJFSGkNfDJLhLKSjpbw==
|
|
|
|
-----END RSA PRIVATE KEY-----
|
|
|
|
TXT
|
2016-08-15 03:58:33 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
let :args do
|
|
|
|
{
|
2016-10-14 01:05:27 -04:00
|
|
|
scopes: 'read',
|
2017-07-27 21:20:09 -04:00
|
|
|
client_id: "x" * 32,
|
2016-08-15 03:58:33 -04:00
|
|
|
auth_redirect: 'http://over.the/rainbow',
|
|
|
|
application_name: 'foo',
|
|
|
|
public_key: public_key,
|
|
|
|
nonce: SecureRandom.hex
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2016-08-16 19:58:19 -04:00
|
|
|
context 'new' do
|
|
|
|
it "supports a head request cleanly" do
|
2018-06-03 23:00:08 -04:00
|
|
|
head "/user-api-key/new"
|
|
|
|
expect(response.status).to eq(200)
|
2018-10-25 05:46:34 -04:00
|
|
|
expect(response.headers["Auth-Api-Version"]).to eq("3")
|
2016-08-16 19:58:19 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-08-15 03:58:33 -04:00
|
|
|
context 'create' do
|
|
|
|
|
|
|
|
it "does not allow anon" do
|
2018-06-03 23:00:08 -04:00
|
|
|
post "/user-api-key.json", params: args
|
2018-01-11 22:15:10 -05:00
|
|
|
expect(response.status).to eq(403)
|
2016-08-15 03:58:33 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "refuses to redirect to disallowed place" do
|
2018-06-03 23:00:08 -04:00
|
|
|
sign_in(Fabricate(:user))
|
|
|
|
post "/user-api-key.json", params: args
|
|
|
|
expect(response.status).to eq(403)
|
2016-08-15 03:58:33 -04:00
|
|
|
end
|
|
|
|
|
2016-09-12 01:42:06 -04:00
|
|
|
it "will allow tokens for staff without TL" do
|
|
|
|
SiteSetting.min_trust_level_for_user_api_key = 2
|
|
|
|
SiteSetting.allowed_user_api_auth_redirects = args[:auth_redirect]
|
|
|
|
|
|
|
|
user = Fabricate(:user, trust_level: 1, moderator: true)
|
|
|
|
|
2018-06-03 23:00:08 -04:00
|
|
|
sign_in(user)
|
2016-09-12 01:42:06 -04:00
|
|
|
|
2018-06-03 23:00:08 -04:00
|
|
|
post "/user-api-key.json", params: args
|
|
|
|
expect(response.status).to eq(302)
|
2016-09-12 01:42:06 -04:00
|
|
|
end
|
|
|
|
|
2016-08-15 03:58:33 -04:00
|
|
|
it "will not create token unless TL is met" do
|
|
|
|
SiteSetting.min_trust_level_for_user_api_key = 2
|
|
|
|
SiteSetting.allowed_user_api_auth_redirects = args[:auth_redirect]
|
|
|
|
|
|
|
|
user = Fabricate(:user, trust_level: 1)
|
2018-06-03 23:00:08 -04:00
|
|
|
sign_in(user)
|
2016-08-15 03:58:33 -04:00
|
|
|
|
2018-06-03 23:00:08 -04:00
|
|
|
post "/user-api-key.json", params: args
|
|
|
|
expect(response.status).to eq(403)
|
2016-08-15 03:58:33 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "will deny access if requesting more rights than allowed" do
|
|
|
|
SiteSetting.min_trust_level_for_user_api_key = 0
|
|
|
|
SiteSetting.allowed_user_api_auth_redirects = args[:auth_redirect]
|
2016-10-14 01:05:27 -04:00
|
|
|
SiteSetting.allow_user_api_key_scopes = "write"
|
2016-08-15 03:58:33 -04:00
|
|
|
|
|
|
|
user = Fabricate(:user, trust_level: 0)
|
2018-06-03 23:00:08 -04:00
|
|
|
sign_in(user)
|
2016-08-15 03:58:33 -04:00
|
|
|
|
2018-06-03 23:00:08 -04:00
|
|
|
post "/user-api-key.json", params: args
|
|
|
|
expect(response.status).to eq(403)
|
2016-08-15 03:58:33 -04:00
|
|
|
end
|
|
|
|
|
2016-09-02 03:08:46 -04:00
|
|
|
it "allows for a revoke with no id" do
|
|
|
|
key = Fabricate(:readonly_user_api_key)
|
2018-06-03 23:00:08 -04:00
|
|
|
post "/user-api-key/revoke.json", headers: { HTTP_USER_API_KEY: key.key }
|
2016-09-02 03:08:46 -04:00
|
|
|
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
key.reload
|
|
|
|
expect(key.revoked_at).not_to eq(nil)
|
|
|
|
end
|
|
|
|
|
2016-09-02 02:57:41 -04:00
|
|
|
it "will not allow readonly api keys to revoke others" do
|
|
|
|
key1 = Fabricate(:readonly_user_api_key)
|
|
|
|
key2 = Fabricate(:readonly_user_api_key)
|
|
|
|
|
2018-06-03 23:00:08 -04:00
|
|
|
post "/user-api-key/revoke.json",
|
|
|
|
params: { id: key2.id },
|
|
|
|
headers: { HTTP_USER_API_KEY: key1.key }
|
2016-09-02 02:57:41 -04:00
|
|
|
|
|
|
|
expect(response.status).to eq(403)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "will allow readonly api keys to revoke self" do
|
|
|
|
key = Fabricate(:readonly_user_api_key)
|
2018-06-03 23:00:08 -04:00
|
|
|
post "/user-api-key/revoke.json",
|
|
|
|
params: { id: key.id },
|
|
|
|
headers: { HTTP_USER_API_KEY: key.key }
|
2016-09-02 02:57:41 -04:00
|
|
|
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
key.reload
|
|
|
|
expect(key.revoked_at).not_to eq(nil)
|
|
|
|
end
|
|
|
|
|
2016-08-25 23:12:38 -04:00
|
|
|
it "will not return p access if not yet configured" do
|
|
|
|
SiteSetting.min_trust_level_for_user_api_key = 0
|
|
|
|
SiteSetting.allowed_user_api_auth_redirects = args[:auth_redirect]
|
|
|
|
|
2016-10-14 01:05:27 -04:00
|
|
|
args[:scopes] = "push,read"
|
2016-08-25 23:12:38 -04:00
|
|
|
args[:push_url] = "https://push.it/here"
|
|
|
|
|
|
|
|
user = Fabricate(:user, trust_level: 0)
|
2018-06-03 23:00:08 -04:00
|
|
|
sign_in(user)
|
2016-08-25 23:12:38 -04:00
|
|
|
|
2018-06-03 23:00:08 -04:00
|
|
|
post "/user-api-key.json", params: args
|
|
|
|
expect(response.status).to eq(302)
|
2016-08-25 23:12:38 -04:00
|
|
|
|
|
|
|
uri = URI.parse(response.redirect_url)
|
|
|
|
|
|
|
|
query = uri.query
|
|
|
|
payload = query.split("payload=")[1]
|
|
|
|
encrypted = Base64.decode64(CGI.unescape(payload))
|
|
|
|
|
|
|
|
key = OpenSSL::PKey::RSA.new(private_key)
|
|
|
|
|
|
|
|
parsed = JSON.parse(key.private_decrypt(encrypted))
|
|
|
|
|
|
|
|
expect(parsed["nonce"]).to eq(args[:nonce])
|
2016-10-14 01:05:27 -04:00
|
|
|
expect(parsed["push"]).to eq(false)
|
2018-10-25 05:46:34 -04:00
|
|
|
expect(parsed["api"]).to eq(3)
|
2016-08-25 23:12:38 -04:00
|
|
|
|
2016-08-25 23:18:20 -04:00
|
|
|
key = user.user_api_keys.first
|
2016-10-14 01:05:27 -04:00
|
|
|
expect(key.scopes).to include("push")
|
2016-08-25 23:18:20 -04:00
|
|
|
expect(key.push_url).to eq("https://push.it/here")
|
2016-08-25 23:12:38 -04:00
|
|
|
end
|
|
|
|
|
2016-08-15 03:58:33 -04:00
|
|
|
it "will redirect correctly with valid token" do
|
|
|
|
SiteSetting.min_trust_level_for_user_api_key = 0
|
|
|
|
SiteSetting.allowed_user_api_auth_redirects = args[:auth_redirect]
|
|
|
|
SiteSetting.allowed_user_api_push_urls = "https://push.it/here"
|
|
|
|
|
2016-10-14 01:05:27 -04:00
|
|
|
args[:scopes] = "push,notifications,message_bus,session_info"
|
2016-08-15 03:58:33 -04:00
|
|
|
args[:push_url] = "https://push.it/here"
|
|
|
|
|
|
|
|
user = Fabricate(:user, trust_level: 0)
|
2018-06-03 23:00:08 -04:00
|
|
|
sign_in(user)
|
2016-08-15 03:58:33 -04:00
|
|
|
|
2018-06-03 23:00:08 -04:00
|
|
|
post "/user-api-key.json", params: args
|
|
|
|
expect(response.status).to eq(302)
|
2016-08-15 03:58:33 -04:00
|
|
|
|
|
|
|
uri = URI.parse(response.redirect_url)
|
|
|
|
|
|
|
|
query = uri.query
|
|
|
|
payload = query.split("payload=")[1]
|
|
|
|
encrypted = Base64.decode64(CGI.unescape(payload))
|
|
|
|
|
|
|
|
key = OpenSSL::PKey::RSA.new(private_key)
|
|
|
|
|
|
|
|
parsed = JSON.parse(key.private_decrypt(encrypted))
|
|
|
|
|
|
|
|
expect(parsed["nonce"]).to eq(args[:nonce])
|
2016-10-14 01:05:27 -04:00
|
|
|
expect(parsed["push"]).to eq(true)
|
2016-08-15 03:58:33 -04:00
|
|
|
|
|
|
|
api_key = UserApiKey.find_by(key: parsed["key"])
|
|
|
|
|
|
|
|
expect(api_key.user_id).to eq(user.id)
|
2016-10-14 01:05:27 -04:00
|
|
|
expect(api_key.scopes.sort).to eq(["push", "message_bus", "notifications", "session_info"].sort)
|
2016-08-15 03:58:33 -04:00
|
|
|
expect(api_key.push_url).to eq("https://push.it/here")
|
|
|
|
|
|
|
|
uri.query = ""
|
|
|
|
expect(uri.to_s).to eq(args[:auth_redirect] + "?")
|
|
|
|
|
2016-08-16 03:06:33 -04:00
|
|
|
# should overwrite if needed
|
|
|
|
args["access"] = "pr"
|
2018-06-03 23:00:08 -04:00
|
|
|
post "/user-api-key.json", params: args
|
2016-08-16 03:06:33 -04:00
|
|
|
|
2018-06-03 23:00:08 -04:00
|
|
|
expect(response.status).to eq(302)
|
2016-08-15 03:58:33 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|