Java tutorial
/* * Symphony - A modern community (forum/SNS/blog) platform written in Java. * Copyright (C) 2012-2018, b3log.org & hacpai.com * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package org.b3log.symphony.util; import org.apache.commons.lang.StringUtils; import org.b3log.latke.ioc.LatkeBeanManager; import org.b3log.latke.ioc.Lifecycle; import org.b3log.latke.service.LangPropsService; import org.b3log.latke.service.LangPropsServiceImpl; import java.util.regex.Matcher; import java.util.regex.Pattern; /** * Video player utilities. * * @author <a href="http://88250.b3log.org">Liang Ding</a> * @version 1.0.0.1, Aug 21, 2017 * @since 2.2.0 */ public final class VideoPlayers { /** * Video URL regix. */ private static final String VIDEO_URL_REGEX = "<p>( )*<a href.*\\.(rm|rmvb|3gp|avi|mpeg|mp4|wmv|mkv|dat|asf|flv).*</a>( )*</p>"; /** * Video URL regex pattern. */ private static final Pattern PATTERN = Pattern.compile(VIDEO_URL_REGEX, Pattern.CASE_INSENSITIVE); private VideoPlayers() { } /** * Renders the specified content with video player if need. * * @param content the specified content * @return rendered content */ public static final String render(final String content) { final LatkeBeanManager beanManager = Lifecycle.getBeanManager(); final LangPropsService langPropsService = beanManager.getReference(LangPropsServiceImpl.class); final StringBuffer contentBuilder = new StringBuffer(); final Matcher m = PATTERN.matcher(content); while (m.find()) { String videoURL = m.group(); videoURL = StringUtils.substringBetween(videoURL, "href=\"", "\" rel="); m.appendReplacement(contentBuilder, "<video src=\"" + videoURL + "\" controls=\"controls\">" + langPropsService.get("notSupportPlayLabel") + "</video>\n"); } m.appendTail(contentBuilder); return contentBuilder.toString(); } }