Class: Dependabot::PullRequestUpdater

Inherits:
Object
  • Object
show all
Defined in:
lib/dependabot/pull_request_updater.rb,
lib/dependabot/pull_request_updater/azure.rb,
lib/dependabot/pull_request_updater/github.rb,
lib/dependabot/pull_request_updater/gitlab.rb

Defined Under Namespace

Classes: Azure, BranchProtected, Github, Gitlab

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(source:, base_commit:, old_commit:, files:, credentials:, pull_request_number:, author_details: nil, signature_key: nil, provider_metadata: {}) ⇒ PullRequestUpdater

Returns a new instance of PullRequestUpdater.



14
15
16
17
18
19
20
21
22
23
24
25
26
27
# File 'lib/dependabot/pull_request_updater.rb', line 14

def initialize(source:, base_commit:, old_commit:, files:,
               credentials:, pull_request_number:,
               author_details: nil, signature_key: nil,
               provider_metadata: {})
  @source              = source
  @base_commit         = base_commit
  @old_commit          = old_commit
  @files               = files
  @credentials         = credentials
  @pull_request_number = pull_request_number
  @author_details      = author_details
  @signature_key       = signature_key
  @provider_metadata   = 
end

Instance Attribute Details

#author_detailsObject (readonly)

Returns the value of attribute author_details.



11
12
13
# File 'lib/dependabot/pull_request_updater.rb', line 11

def author_details
  @author_details
end

#base_commitObject (readonly)

Returns the value of attribute base_commit.



11
12
13
# File 'lib/dependabot/pull_request_updater.rb', line 11

def base_commit
  @base_commit
end

#credentialsObject (readonly)

Returns the value of attribute credentials.



11
12
13
# File 'lib/dependabot/pull_request_updater.rb', line 11

def credentials
  @credentials
end

#filesObject (readonly)

Returns the value of attribute files.



11
12
13
# File 'lib/dependabot/pull_request_updater.rb', line 11

def files
  @files
end

#old_commitObject (readonly)

Returns the value of attribute old_commit.



11
12
13
# File 'lib/dependabot/pull_request_updater.rb', line 11

def old_commit
  @old_commit
end

#provider_metadataObject (readonly)

Returns the value of attribute provider_metadata.



11
12
13
# File 'lib/dependabot/pull_request_updater.rb', line 11

def 
  @provider_metadata
end

#pull_request_numberObject (readonly)

Returns the value of attribute pull_request_number.



11
12
13
# File 'lib/dependabot/pull_request_updater.rb', line 11

def pull_request_number
  @pull_request_number
end

#signature_keyObject (readonly)

Returns the value of attribute signature_key.



11
12
13
# File 'lib/dependabot/pull_request_updater.rb', line 11

def signature_key
  @signature_key
end

#sourceObject (readonly)

Returns the value of attribute source.



11
12
13
# File 'lib/dependabot/pull_request_updater.rb', line 11

def source
  @source
end

Instance Method Details

#updateObject



29
30
31
32
33
34
35
36
# File 'lib/dependabot/pull_request_updater.rb', line 29

def update
  case source.provider
  when "github" then github_updater.update
  when "gitlab" then gitlab_updater.update
  when "azure" then azure_updater.update
  else raise "Unsupported provider #{source.provider}"
  end
end