Class: Kontena::Callbacks::InviteSelfAfterDeploy
- Inherits:
-
Kontena::Callback
- Object
- Kontena::Callback
- Kontena::Callbacks::InviteSelfAfterDeploy
- Defined in:
- lib/kontena/callbacks/master/deploy/70_invite_self_after_deploy.rb
Instance Attribute Summary
Attributes inherited from Kontena::Callback
Instance Method Summary collapse
Methods inherited from Kontena::Callback
callbacks, #initialize, matches_commands, run_callbacks
Constructor Details
This class inherits a constructor from Kontena::Callback
Instance Method Details
#after ⇒ Object
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 |
# File 'lib/kontena/callbacks/master/deploy/70_invite_self_after_deploy.rb', line 25 def after extend Kontena::Cli::Common return unless current_master return unless command.exit_code == 0 return nil if command.respond_to?(:skip_auth_provider?) && command.skip_auth_provider? return nil unless cloud_user_data invite_response = nil spinner "Creating user #{cloud_user_data[:email]} into Kontena Master" do |spin| invite_response = Kontena.run(["master", "user", "invite", "--external-id", cloud_user_data[:id], "--return", cloud_user_data[:email]]) spin.fail! unless invite_response.kind_of?(Hash) && invite_response.has_key?('invite_code') end return nil unless invite_response logger.debug { "Got invite code: #{invite_response['invite_code']}" } success = spinner "Adding master_admin role for #{cloud_user_data[:email]}" do |spin| spin.fail! unless Kontena.run(["master", "user", "role", "add", "--silent", "master_admin", cloud_user_data[:email]]) true end return nil unless success if current_master.grid spinner "Adding #{cloud_user_data[:email]} to grid '#{current_master.grid}'" do |spin| spin.fail! unless Kontena.run(["grid", "user", "add", "--grid", current_master.grid, cloud_user_data[:email]]) end end return nil unless current_master.username.to_s == 'admin' new_user_token = spinner "Creating an access token for #{cloud_user_data[:email]}" do |spin| Kontena.run!(["master", "token", "create", "-e", "0", "-s", "user", "--return", "-u", cloud_user_data[:email]]) end master_name = current_master.name.dup master_url = current_master.url old_master = current_master spinner "Copying server '#{current_master.name}' to '#{current_master.name}-admin' in configuration" do config.servers << Kontena::Cli::Config::Server.new( name: "#{current_master.name}-admin", url: current_master.url, username: 'admin', grid: current_master.grid, token: Kontena::Cli::Config::Token.new( access_token: current_master.token.access_token, refresh_token: current_master.token.refresh_token, expires_at: current_master.token.expires_at, parent_type: :master, parent_name: "#{current_master.name}-admin" ), account: 'master' ) end spinner "Authenticating as #{cloud_user_data[:email]} to Kontena Master '#{current_master.name}'" do current_master.token = Kontena::Cli::Config::Token.new( access_token: new_user_token[:access_token], refresh_token: new_user_token[:refresh_token], expires_at: new_user_token[:expires_in].to_i > 0 ? Time.now.utc.to_i + new_user_token[:expires_in].to_i : nil, parent_type: :master, parent_name: "#{current_master.name}" ) current_master.username = new_user_token[:user_name].to_s == "" ? new_user_token[:user_email] : new_user_token[:user_name] config.write end end |
#cloud_user_data ⇒ Object
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
# File 'lib/kontena/callbacks/master/deploy/70_invite_self_after_deploy.rb', line 7 def cloud_user_data return @cloud_user_data if @cloud_user_data return nil unless cloud_auth? user_data = {} response = nil spinner "Retrieving user information from Kontena Cloud" do response = cloud_client.get(kontena_account.userinfo_endpoint) end if response && response.kind_of?(Hash) && response.has_key?('data') && response['data'].has_key?('attributes') user_data[:email] = response['data']['attributes']['email'] user_data[:username] = response['data']['attributes']['username'] user_data[:id] = response['data']['id'] user_data[:verified] = response['data']['attributes']['verified'] @cloud_user_data = user_data end @cloud_user_data end |