demarches-normaliennes/app/services/clamav_service.rb

22 lines
546 B
Ruby
Raw Normal View History

2016-04-14 16:50:13 +02:00
class ClamavService
def self.safe_file?(file_path)
return true if !Rails.configuration.x.clamav.enabled
2018-12-18 21:29:31 +01:00
FileUtils.chmod(0666, file_path)
2016-04-14 16:50:13 +02:00
2016-04-15 15:32:15 +02:00
client = ClamAV::Client.new
response = client.execute(ClamAV::Commands::ScanCommand.new(file_path)).first
case response
when ClamAV::SuccessResponse
true
when ClamAV::VirusResponse
false
when ClamAV::ErrorResponse
raise "ClamAV ErrorResponse : #{response.error_str}"
else
raise "ClamAV unkown response #{response.class.name}"
end
2016-04-14 16:50:13 +02:00
end
2017-04-04 15:27:04 +02:00
end