Do one thing per line

This commit is contained in:
gregoirenovel 2018-10-01 13:24:37 +02:00
parent 8a55fba127
commit b994fa4206
26 changed files with 186 additions and 62 deletions

View file

@ -1,7 +1,9 @@
class ClamavService
def self.safe_file?(file_path)
if Rails.env == 'development'
return CLAMAV[:response] if CLAMAV[:mock?]
if CLAMAV[:mock?]
return CLAMAV[:response]
end
end
FileUtils.chmod 0666, file_path
@ -9,7 +11,10 @@ class ClamavService
client = ClamAV::Client.new
response = client.execute(ClamAV::Commands::ScanCommand.new(file_path))
return false if response.first.class == ClamAV::VirusResponse
if response.first.class == ClamAV::VirusResponse
return false
end
true
end
end