Merge pull request #3372 from betagouv/dev

MEP 2019-02-05-01
This commit is contained in:
Mathieu Magnin 2019-02-05 13:14:27 +01:00 committed by GitHub
commit 958be414c4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,7 @@
class ClamavService class ClamavService
def self.safe_file?(file_path) def self.safe_file?(file_path)
if Rails.env.development? if Rails.env.development?
Rails.logger.info("Rails.env = development => fake scan") # FIXME : remove me
return true return true
end end
@ -8,7 +9,7 @@ class ClamavService
client = ClamAV::Client.new client = ClamAV::Client.new
response = client.execute(ClamAV::Commands::ScanCommand.new(file_path)) response = client.execute(ClamAV::Commands::ScanCommand.new(file_path))
Rails.logger.info("ClamAV response for #{file_path} : #{response.first.class.name}") # FIXME : remove me
response.first.class != ClamAV::VirusResponse response.first.class != ClamAV::VirusResponse
end end
end end