imgur: force https, simplify regex

This commit is contained in:
Lorenz Hübschle-Schneider 2017-04-19 14:01:57 +02:00
parent 14879811a5
commit 6d7de0c746
1 changed files with 5 additions and 2 deletions

View File

@ -339,14 +339,17 @@ plugins.factory('userPlugins', function() {
*/ */
var videoPlugin = new UrlPlugin('video', function(url) { var videoPlugin = new UrlPlugin('video', function(url) {
if (url.match(/\.(3gp|avi|flv|gifv|mkv|mp4|ogv|webm|wmv)\b/i)) { if (url.match(/\.(3gp|avi|flv|gifv|mkv|mp4|ogv|webm|wmv)\b/i)) {
if (url.match(/^http:\/\/(i\.)?imgur\.com\//i)) {
// imgur: force https
url = url.replace(/^http:/, "https:");
}
return function() { return function() {
var element = this.getElement(), src; var element = this.getElement(), src;
var velement = angular.element('<video autoplay loop muted></video>') var velement = angular.element('<video autoplay loop muted></video>')
.addClass('embed') .addClass('embed')
.attr('width', '560'); .attr('width', '560');
// imgur doesn't always have webm for gifv so add sources for webm and mp4 // imgur doesn't always have webm for gifv so add sources for webm and mp4
if (url.match(/^http:\/\/(i\.)?imgur\.com\//i) && if (url.match(/^https:\/\/(i\.)?imgur\.com\/.*\.gifv/i)) {
url.indexOf('.gifv') > -1) {
src = angular.element('<source></source>') src = angular.element('<source></source>')
.attr('src', url.replace(/\.gifv\b/i, ".webm")) .attr('src', url.replace(/\.gifv\b/i, ".webm"))
.attr('type', 'video/webm'); .attr('type', 'video/webm');