Websites/app/logical/storage_manager/git.rb

25 lines
650 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module StorageManager
class Git < StorageManager::Local
def delete(path)
return unless exists?(path)
super
2024-10-21 06:32:17 +00:00
GitJob.perform_later("#{base_path}#{path}", "git add #{base_path}#{path}", "git commit -m \"Remove #{path[1..]}\"", "git push")
end
def put(path, io)
super
2024-10-21 06:32:17 +00:00
if exists?(path) # rubocop:disable Style/IfUnlessModifier
GitJob.perform_later("#{base_path}#{path}", "git add #{base_path}#{path}", "git commit -m \"Add #{path[1..]}\"", "git push")
end
end
private
def system!(*)
system(*, exception: true, chdir: base_path)
end
end
end