class PactBroker::Versions::BranchVersionRepository

Public Instance Methods

add_branch(version, branch_name, auto_created: false) click to toggle source
# File lib/pact_broker/versions/branch_version_repository.rb, line 23
def add_branch(version, branch_name, auto_created: false)
  branch = find_or_create_branch(version.pacticipant, branch_name)
  branch_version = version.branch_version_for_branch(branch)
  if branch_version
    branch_version.update(updated_at: Sequel.datetime_class.now)
  else
    branch_version = PactBroker::Versions::BranchVersion.new(version: version, branch: branch, auto_created: auto_created).insert_ignore
    PactBroker::Versions::BranchHead.new(branch: branch, branch_version: branch_version).upsert
  end
  pacticipant_service.maybe_set_main_branch(version.pacticipant, branch_name)
  branch_version
end
delete_branch_version(branch_version) click to toggle source

Deletes a branch version - that is, removes a version from a branch. Updates the branch head if the deleted branch version was the latest for the branch.

@param [PactBroker::Versions::BranchVersion] the branch version to delete

# File lib/pact_broker/versions/branch_version_repository.rb, line 40
def delete_branch_version(branch_version)
  latest = branch_version.latest?
  branch = branch_version.latest? ? branch_version.branch : nil
  deleted = branch_version.delete
  if latest
    new_head_branch_version = BranchVersion.find_latest_for_branch(branch)
    if new_head_branch_version
      PactBroker::Versions::BranchHead.new(branch: branch, branch_version: new_head_branch_version).upsert
    end
  end
  deleted
end
find_branch_version(pacticipant_name:, branch_name:, version_number:, **) click to toggle source
# File lib/pact_broker/versions/branch_version_repository.rb, line 10
def find_branch_version(pacticipant_name:, branch_name:, version_number:, **)
  BranchVersion.where(
    version: PactBroker::Domain::Version.where_pacticipant_name_and_version_number(pacticipant_name, version_number),
    branch: Branch.where(name: branch_name)
  ).single_record
end
find_or_create_branch_version(pacticipant_name:, branch_name:, version_number:, **) click to toggle source
# File lib/pact_broker/versions/branch_version_repository.rb, line 17
def find_or_create_branch_version(pacticipant_name:, branch_name:, version_number:, **)
  pacticipant = pacticipant_repository.find_by_name_or_create(pacticipant_name)
  version = version_repository.find_by_pacticipant_id_and_number_or_create(pacticipant.id, version_number)
  branch_version_repository.add_branch(version, branch_name)
end

Private Instance Methods

create_branch(pacticipant, branch_name) click to toggle source
# File lib/pact_broker/versions/branch_version_repository.rb, line 63
def create_branch(pacticipant, branch_name)
  PactBroker::Versions::Branch.new(pacticipant: pacticipant, name: branch_name).insert_ignore
end
find_branch(pacticipant, branch_name) click to toggle source
# File lib/pact_broker/versions/branch_version_repository.rb, line 59
def find_branch(pacticipant, branch_name)
  PactBroker::Versions::Branch.where(pacticipant: pacticipant, name: branch_name).single_record
end
find_or_create_branch(pacticipant, branch_name) click to toggle source
# File lib/pact_broker/versions/branch_version_repository.rb, line 55
def find_or_create_branch(pacticipant, branch_name)
  find_branch(pacticipant, branch_name) || create_branch(pacticipant, branch_name)
end