1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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
|
# frozen_string_literal: true
module Files
class BaseService < Commits::CreateService
FileChangedError = Class.new(StandardError)
def initialize(*args)
super
git_user = Gitlab::Git::User.from_gitlab(current_user) if current_user.present?
@author_email = commit_email(git_user)
@author_name = params[:author_name] || git_user&.name
@commit_message = params[:commit_message]
@last_commit_sha = params[:last_commit_sha]
@file_path = params[:file_path]
@previous_path = params[:previous_path]
@file_content = params[:file_content]
if params[:file_content_encoding] == 'base64' && @file_content.present?
@file_content = Base64.decode64(@file_content)
end
@execute_filemode = params[:execute_filemode]
end
def file_has_changed?(path, commit_id)
return false unless commit_id
last_commit_from_branch = get_last_commit_for_path(ref: @start_branch, path: path)
return false unless last_commit_from_branch
last_commit_from_commit_id = get_last_commit_for_path(ref: commit_id, path: path)
return false unless last_commit_from_commit_id
last_commit_from_branch.sha != last_commit_from_commit_id.sha
end
private
def get_last_commit_for_path(ref:, path:)
Gitlab::Git::Commit.last_for_path(@start_project.repository, ref, path, literal_pathspec: true)
end
def commit_email(git_user)
return params[:author_email] if params[:author_email].present?
return unless current_user
namespace_commit_email = current_user.namespace_commit_email_for_project(@start_project)
return namespace_commit_email.email.email if namespace_commit_email
git_user.email
end
end
end
|