2013-03-28 14:37:44 -04:00
|
|
|
require 'spec_helper'
|
2017-10-02 20:52:19 -04:00
|
|
|
require 'raven/transports/dummy'
|
|
|
|
require_relative '../../../config/initializers/sentry'
|
2013-03-28 14:37:44 -04:00
|
|
|
|
2017-04-21 16:32:02 -04:00
|
|
|
describe API::Helpers do
|
2016-11-22 04:04:23 -05:00
|
|
|
include API::APIGuard::HelperMethods
|
2017-05-01 11:13:33 -04:00
|
|
|
include described_class
|
2016-08-18 20:06:33 -04:00
|
|
|
include SentryHelper
|
2016-04-18 05:17:38 -04:00
|
|
|
|
2013-03-28 14:37:44 -04:00
|
|
|
let(:user) { create(:user) }
|
|
|
|
let(:admin) { create(:admin) }
|
|
|
|
let(:key) { create(:key, user: user) }
|
|
|
|
|
2017-07-26 06:34:52 -04:00
|
|
|
let(:csrf_token) { SecureRandom.base64(ActionController::RequestForgeryProtection::AUTHENTICITY_TOKEN_LENGTH) }
|
|
|
|
let(:env) do
|
|
|
|
{
|
|
|
|
'rack.input' => '',
|
|
|
|
'rack.session' => {
|
|
|
|
_csrf_token: csrf_token
|
|
|
|
},
|
2017-11-09 13:04:19 -05:00
|
|
|
'REQUEST_METHOD' => 'GET',
|
|
|
|
'CONTENT_TYPE' => 'text/plain;charset=utf-8'
|
2017-07-26 06:34:52 -04:00
|
|
|
}
|
|
|
|
end
|
2017-01-19 17:41:12 -05:00
|
|
|
let(:header) { }
|
2017-11-07 04:52:05 -05:00
|
|
|
let(:request) { Grape::Request.new(env)}
|
2017-11-09 13:04:19 -05:00
|
|
|
let(:params) { request.params }
|
2013-03-28 14:37:44 -04:00
|
|
|
|
2017-06-20 08:02:25 -04:00
|
|
|
before do
|
|
|
|
allow_any_instance_of(self.class).to receive(:options).and_return({})
|
|
|
|
end
|
2017-06-20 04:27:45 -04:00
|
|
|
|
2016-09-16 13:38:07 -04:00
|
|
|
def warden_authenticate_returns(value)
|
|
|
|
warden = double("warden", authenticate: value)
|
|
|
|
env['warden'] = warden
|
|
|
|
end
|
|
|
|
|
2017-01-19 17:41:12 -05:00
|
|
|
def error!(message, status, header)
|
2016-11-30 09:48:19 -05:00
|
|
|
raise Exception.new("#{status} - #{message}")
|
2013-03-28 14:37:44 -04:00
|
|
|
end
|
|
|
|
|
2017-11-09 13:04:19 -05:00
|
|
|
def set_param(key, value)
|
|
|
|
request.update_param(key, value)
|
|
|
|
end
|
|
|
|
|
2013-03-28 14:37:44 -04:00
|
|
|
describe ".current_user" do
|
2016-09-16 13:38:07 -04:00
|
|
|
subject { current_user }
|
|
|
|
|
2017-07-26 06:34:52 -04:00
|
|
|
describe "Warden authentication", :allow_forgery_protection do
|
2016-09-22 08:56:43 -04:00
|
|
|
context "with invalid credentials" do
|
|
|
|
context "GET request" do
|
2017-06-14 14:18:56 -04:00
|
|
|
before do
|
|
|
|
env['REQUEST_METHOD'] = 'GET'
|
|
|
|
end
|
|
|
|
|
2016-09-22 08:56:43 -04:00
|
|
|
it { is_expected.to be_nil }
|
|
|
|
end
|
2016-09-16 13:38:07 -04:00
|
|
|
end
|
|
|
|
|
2016-09-22 08:56:43 -04:00
|
|
|
context "with valid credentials" do
|
2017-06-14 14:18:56 -04:00
|
|
|
before do
|
|
|
|
warden_authenticate_returns user
|
|
|
|
end
|
2016-09-16 13:38:07 -04:00
|
|
|
|
2016-09-22 08:56:43 -04:00
|
|
|
context "GET request" do
|
2017-06-14 14:18:56 -04:00
|
|
|
before do
|
|
|
|
env['REQUEST_METHOD'] = 'GET'
|
|
|
|
end
|
|
|
|
|
2016-09-22 08:56:43 -04:00
|
|
|
it { is_expected.to eq(user) }
|
|
|
|
end
|
|
|
|
|
|
|
|
context "HEAD request" do
|
2017-06-14 14:18:56 -04:00
|
|
|
before do
|
|
|
|
env['REQUEST_METHOD'] = 'HEAD'
|
|
|
|
end
|
|
|
|
|
2016-09-22 08:56:43 -04:00
|
|
|
it { is_expected.to eq(user) }
|
|
|
|
end
|
|
|
|
|
|
|
|
context "PUT request" do
|
2017-06-14 14:18:56 -04:00
|
|
|
before do
|
|
|
|
env['REQUEST_METHOD'] = 'PUT'
|
|
|
|
end
|
|
|
|
|
2017-07-26 06:34:52 -04:00
|
|
|
context 'without CSRF token' do
|
|
|
|
it { is_expected.to be_nil }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with CSRF token' do
|
|
|
|
before do
|
|
|
|
env['HTTP_X_CSRF_TOKEN'] = csrf_token
|
|
|
|
end
|
|
|
|
|
|
|
|
it { is_expected.to eq(user) }
|
|
|
|
end
|
2016-09-22 08:56:43 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
context "POST request" do
|
2017-06-14 14:18:56 -04:00
|
|
|
before do
|
|
|
|
env['REQUEST_METHOD'] = 'POST'
|
|
|
|
end
|
|
|
|
|
2017-07-26 06:34:52 -04:00
|
|
|
context 'without CSRF token' do
|
|
|
|
it { is_expected.to be_nil }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with CSRF token' do
|
|
|
|
before do
|
|
|
|
env['HTTP_X_CSRF_TOKEN'] = csrf_token
|
|
|
|
end
|
|
|
|
|
|
|
|
it { is_expected.to eq(user) }
|
|
|
|
end
|
2016-09-22 08:56:43 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
context "DELETE request" do
|
2017-06-14 14:18:56 -04:00
|
|
|
before do
|
|
|
|
env['REQUEST_METHOD'] = 'DELETE'
|
|
|
|
end
|
|
|
|
|
2017-07-26 06:34:52 -04:00
|
|
|
context 'without CSRF token' do
|
|
|
|
it { is_expected.to be_nil }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with CSRF token' do
|
|
|
|
before do
|
|
|
|
env['HTTP_X_CSRF_TOKEN'] = csrf_token
|
|
|
|
end
|
|
|
|
|
|
|
|
it { is_expected.to eq(user) }
|
|
|
|
end
|
2016-09-22 08:56:43 -04:00
|
|
|
end
|
2016-09-16 13:38:07 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-04-18 06:18:54 -04:00
|
|
|
describe "when authenticating using a user's personal access tokens" do
|
|
|
|
let(:personal_access_token) { create(:personal_access_token, user: user) }
|
|
|
|
|
2017-09-27 09:31:52 -04:00
|
|
|
it "returns a 401 response for an invalid token" do
|
2017-11-09 13:04:19 -05:00
|
|
|
env[Gitlab::Auth::UserAuthFinders::PRIVATE_TOKEN_HEADER] = 'invalid token'
|
2016-11-28 02:00:41 -05:00
|
|
|
|
2017-09-27 09:31:52 -04:00
|
|
|
expect { current_user }.to raise_error /401/
|
2016-04-18 06:18:54 -04:00
|
|
|
end
|
|
|
|
|
2017-10-12 08:38:39 -04:00
|
|
|
it "returns a 403 response for a user without access" do
|
2017-11-09 13:04:19 -05:00
|
|
|
env[Gitlab::Auth::UserAuthFinders::PRIVATE_TOKEN_HEADER] = personal_access_token.token
|
2016-07-18 04:16:56 -04:00
|
|
|
allow_any_instance_of(Gitlab::UserAccess).to receive(:allowed?).and_return(false)
|
2016-11-28 02:00:41 -05:00
|
|
|
|
2017-10-12 08:38:39 -04:00
|
|
|
expect { current_user }.to raise_error /403/
|
2017-09-27 09:31:52 -04:00
|
|
|
end
|
|
|
|
|
2017-10-12 08:38:39 -04:00
|
|
|
it 'returns a 403 response for a user who is blocked' do
|
2017-09-27 09:31:52 -04:00
|
|
|
user.block!
|
2017-11-09 13:04:19 -05:00
|
|
|
env[Gitlab::Auth::UserAuthFinders::PRIVATE_TOKEN_HEADER] = personal_access_token.token
|
2017-09-27 09:31:52 -04:00
|
|
|
|
2017-10-12 08:38:39 -04:00
|
|
|
expect { current_user }.to raise_error /403/
|
2016-04-18 06:18:54 -04:00
|
|
|
end
|
|
|
|
|
2017-10-30 13:49:46 -04:00
|
|
|
it "sets current_user" do
|
2017-11-09 13:04:19 -05:00
|
|
|
env[Gitlab::Auth::UserAuthFinders::PRIVATE_TOKEN_HEADER] = personal_access_token.token
|
2016-04-18 06:18:54 -04:00
|
|
|
expect(current_user).to eq(user)
|
|
|
|
end
|
|
|
|
|
2017-09-27 09:56:48 -04:00
|
|
|
it "does not allow tokens without the appropriate scope" do
|
|
|
|
personal_access_token = create(:personal_access_token, user: user, scopes: ['read_user'])
|
2017-11-09 13:04:19 -05:00
|
|
|
env[Gitlab::Auth::UserAuthFinders::PRIVATE_TOKEN_HEADER] = personal_access_token.token
|
2017-09-27 09:56:48 -04:00
|
|
|
|
2017-11-16 11:03:19 -05:00
|
|
|
expect { current_user }.to raise_error Gitlab::Auth::InsufficientScopeError
|
2017-09-27 09:56:48 -04:00
|
|
|
end
|
|
|
|
|
2016-04-18 06:18:54 -04:00
|
|
|
it 'does not allow revoked tokens' do
|
|
|
|
personal_access_token.revoke!
|
2017-11-09 13:04:19 -05:00
|
|
|
env[Gitlab::Auth::UserAuthFinders::PRIVATE_TOKEN_HEADER] = personal_access_token.token
|
2016-11-28 02:00:41 -05:00
|
|
|
|
2017-11-16 11:03:19 -05:00
|
|
|
expect { current_user }.to raise_error Gitlab::Auth::RevokedError
|
2016-04-18 06:18:54 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not allow expired tokens' do
|
|
|
|
personal_access_token.update_attributes!(expires_at: 1.day.ago)
|
2017-11-09 13:04:19 -05:00
|
|
|
env[Gitlab::Auth::UserAuthFinders::PRIVATE_TOKEN_HEADER] = personal_access_token.token
|
2016-11-28 02:00:41 -05:00
|
|
|
|
2017-11-16 11:03:19 -05:00
|
|
|
expect { current_user }.to raise_error Gitlab::Auth::ExpiredError
|
2016-04-18 06:18:54 -04:00
|
|
|
end
|
2013-03-28 14:37:44 -04:00
|
|
|
end
|
|
|
|
end
|
2016-07-12 10:31:55 -04:00
|
|
|
|
2016-08-18 20:06:33 -04:00
|
|
|
describe '.handle_api_exception' do
|
|
|
|
before do
|
|
|
|
allow_any_instance_of(self.class).to receive(:sentry_enabled?).and_return(true)
|
|
|
|
allow_any_instance_of(self.class).to receive(:rack_response)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not report a MethodNotAllowed exception to Sentry' do
|
|
|
|
exception = Grape::Exceptions::MethodNotAllowed.new({ 'X-GitLab-Test' => '1' })
|
|
|
|
allow(exception).to receive(:backtrace).and_return(caller)
|
|
|
|
|
|
|
|
expect(Raven).not_to receive(:capture_exception).with(exception)
|
|
|
|
|
|
|
|
handle_api_exception(exception)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does report RuntimeError to Sentry' do
|
|
|
|
exception = RuntimeError.new('test error')
|
|
|
|
allow(exception).to receive(:backtrace).and_return(caller)
|
|
|
|
|
|
|
|
expect_any_instance_of(self.class).to receive(:sentry_context)
|
2017-10-02 20:52:19 -04:00
|
|
|
expect(Raven).to receive(:capture_exception).with(exception, extra: {})
|
2016-08-18 20:06:33 -04:00
|
|
|
|
|
|
|
handle_api_exception(exception)
|
|
|
|
end
|
2017-09-29 07:14:08 -04:00
|
|
|
|
|
|
|
context 'with a personal access token given' do
|
|
|
|
let(:token) { create(:personal_access_token, scopes: ['api'], user: user) }
|
|
|
|
|
|
|
|
# Regression test for https://gitlab.com/gitlab-org/gitlab-ce/issues/38571
|
|
|
|
it 'does not raise an additional exception because of missing `request`' do
|
|
|
|
# We need to stub at a lower level than #sentry_enabled? otherwise
|
|
|
|
# Sentry is not enabled when the request below is made, and the test
|
|
|
|
# would pass even without the fix
|
|
|
|
expect(Gitlab::Sentry).to receive(:enabled?).twice.and_return(true)
|
|
|
|
expect(ProjectsFinder).to receive(:new).and_raise('Runtime Error!')
|
|
|
|
|
|
|
|
get api('/projects', personal_access_token: token)
|
|
|
|
|
|
|
|
# The 500 status is expected as we're testing a case where an exception
|
|
|
|
# is raised, but Grape shouldn't raise an additional exception
|
|
|
|
expect(response).to have_gitlab_http_status(500)
|
|
|
|
expect(json_response['message']).not_to include("undefined local variable or method `request'")
|
|
|
|
expect(json_response['message']).to start_with("\nRuntimeError (Runtime Error!):")
|
|
|
|
end
|
|
|
|
end
|
2017-10-02 20:52:19 -04:00
|
|
|
|
|
|
|
context 'extra information' do
|
|
|
|
# Sentry events are an array of the form [auth_header, data, options]
|
|
|
|
let(:event_data) { Raven.client.transport.events.first[1] }
|
|
|
|
|
|
|
|
before do
|
|
|
|
stub_application_setting(
|
|
|
|
sentry_enabled: true,
|
|
|
|
sentry_dsn: "dummy://12345:67890@sentry.localdomain/sentry/42"
|
|
|
|
)
|
|
|
|
configure_sentry
|
|
|
|
Raven.client.configuration.encoding = 'json'
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'sends the params, excluding confidential values' do
|
|
|
|
expect(Gitlab::Sentry).to receive(:enabled?).twice.and_return(true)
|
|
|
|
expect(ProjectsFinder).to receive(:new).and_raise('Runtime Error!')
|
|
|
|
|
|
|
|
get api('/projects', user), password: 'dont_send_this', other_param: 'send_this'
|
|
|
|
|
|
|
|
expect(event_data).to include('other_param=send_this')
|
|
|
|
expect(event_data).to include('password=********')
|
|
|
|
end
|
|
|
|
end
|
2016-08-18 20:06:33 -04:00
|
|
|
end
|
2016-11-30 09:48:19 -05:00
|
|
|
|
|
|
|
describe '.authenticate_non_get!' do
|
|
|
|
%w[HEAD GET].each do |method_name|
|
|
|
|
context "method is #{method_name}" do
|
|
|
|
before do
|
2016-12-23 11:03:25 -05:00
|
|
|
expect_any_instance_of(self.class).to receive(:route).and_return(double(request_method: method_name))
|
2016-11-30 09:48:19 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not raise an error' do
|
|
|
|
expect_any_instance_of(self.class).not_to receive(:authenticate!)
|
|
|
|
|
|
|
|
expect { authenticate_non_get! }.not_to raise_error
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
%w[POST PUT PATCH DELETE].each do |method_name|
|
|
|
|
context "method is #{method_name}" do
|
|
|
|
before do
|
2016-12-23 11:03:25 -05:00
|
|
|
expect_any_instance_of(self.class).to receive(:route).and_return(double(request_method: method_name))
|
2016-11-30 09:48:19 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'calls authenticate!' do
|
|
|
|
expect_any_instance_of(self.class).to receive(:authenticate!)
|
|
|
|
|
|
|
|
authenticate_non_get!
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '.authenticate!' do
|
|
|
|
context 'current_user is nil' do
|
|
|
|
before do
|
|
|
|
expect_any_instance_of(self.class).to receive(:current_user).and_return(nil)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns a 401 response' do
|
2017-09-27 09:31:52 -04:00
|
|
|
expect { authenticate! }.to raise_error /401/
|
2016-11-30 09:48:19 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'current_user is present' do
|
2017-04-21 02:44:47 -04:00
|
|
|
let(:user) { build(:user) }
|
|
|
|
|
2016-11-30 09:48:19 -05:00
|
|
|
before do
|
2017-09-27 09:31:52 -04:00
|
|
|
expect_any_instance_of(self.class).to receive(:current_user).and_return(user)
|
2016-11-30 09:48:19 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not raise an error' do
|
|
|
|
expect { authenticate! }.not_to raise_error
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2017-10-30 13:49:46 -04:00
|
|
|
|
|
|
|
context 'sudo' do
|
|
|
|
shared_examples 'successful sudo' do
|
|
|
|
it 'sets current_user' do
|
|
|
|
expect(current_user).to eq(user)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'sets sudo?' do
|
|
|
|
expect(sudo?).to be_truthy
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
shared_examples 'sudo' do
|
|
|
|
context 'when admin' do
|
|
|
|
before do
|
|
|
|
token.user = admin
|
|
|
|
token.save!
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when token has sudo scope' do
|
|
|
|
before do
|
|
|
|
token.scopes = %w[sudo]
|
|
|
|
token.save!
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when user exists' do
|
|
|
|
context 'when using header' do
|
|
|
|
context 'when providing username' do
|
|
|
|
before do
|
|
|
|
env[API::Helpers::SUDO_HEADER] = user.username
|
|
|
|
end
|
|
|
|
|
|
|
|
it_behaves_like 'successful sudo'
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when providing user ID' do
|
|
|
|
before do
|
|
|
|
env[API::Helpers::SUDO_HEADER] = user.id.to_s
|
|
|
|
end
|
|
|
|
|
|
|
|
it_behaves_like 'successful sudo'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when using param' do
|
|
|
|
context 'when providing username' do
|
|
|
|
before do
|
2017-11-09 13:04:19 -05:00
|
|
|
set_param(API::Helpers::SUDO_PARAM, user.username)
|
2017-10-30 13:49:46 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it_behaves_like 'successful sudo'
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when providing user ID' do
|
|
|
|
before do
|
2017-11-09 13:04:19 -05:00
|
|
|
set_param(API::Helpers::SUDO_PARAM, user.id.to_s)
|
2017-10-30 13:49:46 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it_behaves_like 'successful sudo'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when user does not exist' do
|
|
|
|
before do
|
2017-11-09 13:04:19 -05:00
|
|
|
set_param(API::Helpers::SUDO_PARAM, 'nonexistent')
|
2017-10-30 13:49:46 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'raises an error' do
|
|
|
|
expect { current_user }.to raise_error /User with ID or username 'nonexistent' Not Found/
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when token does not have sudo scope' do
|
|
|
|
before do
|
|
|
|
token.scopes = %w[api]
|
|
|
|
token.save!
|
|
|
|
|
2017-11-09 13:04:19 -05:00
|
|
|
set_param(API::Helpers::SUDO_PARAM, user.id.to_s)
|
2017-10-30 13:49:46 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'raises an error' do
|
2017-11-16 11:03:19 -05:00
|
|
|
expect { current_user }.to raise_error Gitlab::Auth::InsufficientScopeError
|
2017-10-30 13:49:46 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when not admin' do
|
|
|
|
before do
|
|
|
|
token.user = user
|
|
|
|
token.save!
|
|
|
|
|
2017-11-09 13:04:19 -05:00
|
|
|
set_param(API::Helpers::SUDO_PARAM, user.id.to_s)
|
2017-10-30 13:49:46 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'raises an error' do
|
|
|
|
expect { current_user }.to raise_error /Must be admin to use sudo/
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'using an OAuth token' do
|
|
|
|
let(:token) { create(:oauth_access_token) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
env['HTTP_AUTHORIZATION'] = "Bearer #{token.token}"
|
|
|
|
end
|
|
|
|
|
|
|
|
it_behaves_like 'sudo'
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'using a personal access token' do
|
|
|
|
let(:token) { create(:personal_access_token) }
|
|
|
|
|
|
|
|
context 'passed as param' do
|
|
|
|
before do
|
2017-11-09 13:04:19 -05:00
|
|
|
set_param(Gitlab::Auth::UserAuthFinders::PRIVATE_TOKEN_PARAM, token.token)
|
2017-10-30 13:49:46 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it_behaves_like 'sudo'
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'passed as header' do
|
|
|
|
before do
|
2017-11-09 13:04:19 -05:00
|
|
|
env[Gitlab::Auth::UserAuthFinders::PRIVATE_TOKEN_HEADER] = token.token
|
2017-10-30 13:49:46 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it_behaves_like 'sudo'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'using warden authentication' do
|
|
|
|
before do
|
|
|
|
warden_authenticate_returns admin
|
|
|
|
env[API::Helpers::SUDO_HEADER] = user.username
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'raises an error' do
|
|
|
|
expect { current_user }.to raise_error /Must be authenticated using an OAuth or Personal Access Token to use sudo/
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2014-04-11 15:45:56 -04:00
|
|
|
end
|