demarches-normaliennes/app/services/clamav_service.rb
2017-04-04 16:59:38 +02:00

16 lines
376 B
Ruby

class ClamavService
def self.safe_file? path_file
if Rails.env == 'development'
return CLAMAV[:response] if CLAMAV[:mock?]
end
FileUtils.chmod 0666, path_file
client = ClamAV::Client.new
response = client.execute(ClamAV::Commands::ScanCommand.new(path_file))
return false if response.first.class == ClamAV::VirusResponse
true
end
end