Drop flash video onebox (#12261)

Flash was discontinued by Adobe at the end of 2020. There is no need to continue OneBox support for it
This commit is contained in:
David Taylor
2021-03-02 17:11:14 +00:00
committed by GitHub
parent 4adce0d844
commit 8fd46c04ea
5 changed files with 14 additions and 56 deletions

View File

@ -1,19 +0,0 @@
# frozen_string_literal: true
module Onebox
module Engine
class FlashVideoOnebox
include Engine
matches_regexp /^https?:\/\/.*\.(swf|flv)$/
def to_html
if SiteSetting.enable_flash_video_onebox
"<object width='100%' height='100%'><param name='#{@url}' value='#{@url}'><embed src='#{@url}' width='100%' height='100%'></embed></object>"
else
"<a href='#{@url}'>#{@url}</a>"
end
end
end
end
end