Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
49ba1b6a
Commit
49ba1b6a
authored
Jan 14, 2021
by
Mark Chao
Committed by
Mayra Cabrera
Jan 14, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add activate subscription call
Part of Cloud License feature
parent
da836ecd
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
199 additions
and
0 deletions
+199
-0
ee/app/services/gitlab_subscriptions/activate_service.rb
ee/app/services/gitlab_subscriptions/activate_service.rb
+43
-0
ee/lib/gitlab/subscription_portal/client.rb
ee/lib/gitlab/subscription_portal/client.rb
+21
-0
ee/spec/lib/gitlab/subscription_portal/client_spec.rb
ee/spec/lib/gitlab/subscription_portal/client_spec.rb
+44
-0
ee/spec/services/gitlab_subscriptions/activate_service_spec.rb
...ec/services/gitlab_subscriptions/activate_service_spec.rb
+91
-0
No files found.
ee/app/services/gitlab_subscriptions/activate_service.rb
0 → 100644
View file @
49ba1b6a
# frozen_string_literal: true
# Activating self-managed instances
# Part of Cloud Licensing https://gitlab.com/groups/gitlab-org/-/epics/1735
module
GitlabSubscriptions
class
ActivateService
ERROR_MESSAGES
=
{
not_self_managed:
'Not self-managed instance'
,
disabled:
'Cloud license is disabled'
}.
freeze
def
execute
(
activation_code
)
return
error
(
ERROR_MESSAGES
[
:not_self_managed
])
if
Gitlab
.
com?
return
error
(
ERROR_MESSAGES
[
:disabled
])
unless
application_settings
.
cloud_license_enabled?
response
=
client
.
activate
(
activation_code
)
return
response
unless
response
[
:success
]
if
application_settings
.
update
(
cloud_license_auth_token:
response
[
:authentication_token
])
response
else
error
(
application_settings
.
errors
.
full_messages
)
end
rescue
=>
e
error
(
e
.
message
)
end
private
def
client
Gitlab
::
SubscriptionPortal
::
Client
end
def
error
(
message
)
{
success:
false
,
errors:
Array
(
message
)
}
end
def
application_settings
Gitlab
::
CurrentSettings
.
current_application_settings
end
end
end
ee/lib/gitlab/subscription_portal/client.rb
View file @
49ba1b6a
...
...
@@ -24,6 +24,27 @@ module Gitlab
http_get
(
"api/payment_methods/
#{
id
}
"
,
admin_headers
)
end
def
activate
(
activation_code
)
uuid
=
Gitlab
::
CurrentSettings
.
uuid
query
=
<<~
GQL
mutation {
cloudActivationActivate(input: { activationCode: "
#{
activation_code
}
", instanceIdentifier: "
#{
uuid
}
" }) {
authenticationToken
errors
}
}
GQL
response
=
http_post
(
"graphql"
,
admin_headers
,
{
query:
query
}).
dig
(
:data
,
'data'
,
'cloudActivationActivate'
)
if
response
[
'errors'
].
blank?
{
success:
true
,
authentication_token:
response
[
'authenticationToken'
]
}
else
{
success:
false
,
errors:
response
[
'errors'
]
}
end
end
private
def
http_get
(
path
,
headers
)
...
...
ee/spec/lib/gitlab/subscription_portal/client_spec.rb
View file @
49ba1b6a
...
...
@@ -93,4 +93,48 @@ RSpec.describe Gitlab::SubscriptionPortal::Client do
it_behaves_like
'when response code is 422'
it_behaves_like
'when response code is 500'
end
describe
'#activate'
do
let
(
:authentication_token
)
{
'authentication_token'
}
it
'returns success'
do
expect
(
described_class
).
to
receive
(
:http_post
).
and_return
(
{
success:
true
,
data:
{
"data"
=>
{
"cloudActivationActivate"
=>
{
"authenticationToken"
=>
authentication_token
,
"errors"
=>
[]
}
}
}
}
)
result
=
described_class
.
activate
(
'activation_code_abc'
)
expect
(
result
).
to
eq
({
authentication_token:
authentication_token
,
success:
true
})
end
it
'returns failure'
do
expect
(
described_class
).
to
receive
(
:http_post
).
and_return
(
{
success:
true
,
data:
{
"data"
=>
{
"cloudActivationActivate"
=>
{
"authenticationToken"
=>
nil
,
"errors"
=>
[
"invalid activation code"
]
}
}
}
}
)
result
=
described_class
.
activate
(
'activation_code_abc'
)
expect
(
result
).
to
eq
({
errors:
[
"invalid activation code"
],
success:
false
})
end
end
end
ee/spec/services/gitlab_subscriptions/activate_service_spec.rb
0 → 100644
View file @
49ba1b6a
# frozen_string_literal: true
require
'spec_helper'
RSpec
.
describe
GitlabSubscriptions
::
ActivateService
do
let!
(
:application_settings
)
do
stub_env
(
'IN_MEMORY_APPLICATION_SETTINGS'
,
'false'
)
create
(
:application_setting
,
cloud_license_enabled:
cloud_license_enabled
)
end
let
(
:cloud_license_enabled
)
{
true
}
let
(
:authentication_token
)
{
'authentication_token'
}
let
(
:activation_code
)
{
'activation_code'
}
def
stub_client_activate
expect
(
Gitlab
::
SubscriptionPortal
::
Client
).
to
receive
(
:activate
)
.
with
(
activation_code
)
.
and_return
(
response
)
end
before
do
allow
(
Gitlab
::
CurrentSettings
).
to
receive
(
:current_application_settings
).
and_return
(
application_settings
)
end
context
'when CustomerDot returns success'
do
let
(
:response
)
{
{
success:
true
,
authentication_token:
authentication_token
}
}
before
do
stub_client_activate
end
it
'persists authentication_token'
do
expect
(
subject
.
execute
(
activation_code
)).
to
eq
(
response
)
expect
(
application_settings
.
reload
.
cloud_license_auth_token
).
to
eq
(
authentication_token
)
end
context
'when persisting fails'
do
let
(
:response
)
{
{
success:
true
,
authentication_token:
authentication_token
}
}
it
'returns error'
do
application_settings
.
errors
.
add
(
:base
,
:invalid
)
allow
(
application_settings
).
to
receive
(
:update
).
and_return
(
false
)
expect
(
subject
.
execute
(
activation_code
)).
to
eq
({
errors:
[
"is invalid"
],
success:
false
})
end
end
end
context
'when CustomerDot returns failure'
do
let
(
:response
)
{
{
success:
false
,
errors:
[
'foo'
]
}
}
it
'returns error'
do
stub_client_activate
expect
(
subject
.
execute
(
activation_code
)).
to
eq
(
response
)
expect
(
application_settings
.
reload
.
cloud_license_auth_token
).
to
be_nil
end
end
context
'when not self managed instance'
do
let
(
:response
)
{
{
success:
false
,
errors:
[
described_class
::
ERROR_MESSAGES
[
:not_self_managed
]]
}}
it
'returns error'
do
allow
(
Gitlab
).
to
receive
(
:com?
).
and_return
(
true
)
expect
(
Gitlab
::
SubscriptionPortal
::
Client
).
not_to
receive
(
:activate
)
expect
(
subject
.
execute
(
activation_code
)).
to
eq
(
response
)
end
end
context
'when cloud licensing disabled'
do
let
(
:response
)
{
{
success:
false
,
errors:
[
described_class
::
ERROR_MESSAGES
[
:disabled
]]
}}
let
(
:cloud_license_enabled
)
{
false
}
it
'returns error'
do
expect
(
Gitlab
::
SubscriptionPortal
::
Client
).
not_to
receive
(
:activate
)
expect
(
subject
.
execute
(
activation_code
)).
to
eq
(
response
)
end
end
context
'when error is raised'
do
it
'captures error'
do
expect
(
Gitlab
::
SubscriptionPortal
::
Client
).
to
receive
(
:activate
).
and_raise
(
'foo'
)
expect
(
subject
.
execute
(
activation_code
)).
to
eq
({
success:
false
,
errors:
[
'foo'
]
})
end
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment