Reformat stream controller some

Mostly just whitespace changes, shortening lines for readability. Adds a
few comments that outline what's supposed to happen.
master
Peter Marheine 6 years ago
parent d42af4575f
commit cae8f8b4e5
  1. 28
      airsonic-main/src/main/java/org/airsonic/player/controller/StreamController.java

@ -53,8 +53,7 @@ import java.util.regex.Matcher;
import java.util.regex.Pattern; import java.util.regex.Pattern;
/** /**
* A controller which streams the content of a {@link PlayQueue} to a remote * A controller which streams the content of a {@link PlayQueue} to a remote {@link Player}.
* {@link Player}.
* *
* @author Sindre Mehus * @author Sindre Mehus
*/ */
@ -95,7 +94,8 @@ public class StreamController {
try { try {
if (!(authentication instanceof JWTAuthenticationToken) && !user.isStreamRole()) { if (!(authentication instanceof JWTAuthenticationToken) && !user.isStreamRole()) {
response.sendError(HttpServletResponse.SC_FORBIDDEN, "Streaming is forbidden for user " + user.getUsername()); response.sendError(HttpServletResponse.SC_FORBIDDEN,
"Streaming is forbidden for user " + user.getUsername());
return; return;
} }
@ -133,7 +133,8 @@ public class StreamController {
if (isSingleFile) { if (isSingleFile) {
if (!(authentication instanceof JWTAuthenticationToken) && !securityService.isFolderAccessAllowed(file, user.getUsername())) { if (!(authentication instanceof JWTAuthenticationToken) && !securityService.isFolderAccessAllowed(file,
user.getUsername())) {
response.sendError(HttpServletResponse.SC_FORBIDDEN, response.sendError(HttpServletResponse.SC_FORBIDDEN,
"Access to file " + file.getId() + " is forbidden for user " + user.getUsername()); "Access to file " + file.getId() + " is forbidden for user " + user.getUsername());
return; return;
@ -157,10 +158,12 @@ public class StreamController {
response.setHeader("Accept-Ranges", "bytes"); response.setHeader("Accept-Ranges", "bytes");
} }
TranscodingService.Parameters parameters = transcodingService.getParameters(file, player, maxBitRate, preferredTargetFormat, null); TranscodingService.Parameters parameters = transcodingService.getParameters(file, player, maxBitRate,
preferredTargetFormat, null);
long fileLength = getFileLength(parameters); long fileLength = getFileLength(parameters);
boolean isConversion = parameters.isDownsample() || parameters.isTranscode(); boolean isConversion = parameters.isDownsample() || parameters.isTranscode();
boolean estimateContentLength = ServletRequestUtils.getBooleanParameter(request, "estimateContentLength", false); boolean estimateContentLength = ServletRequestUtils.getBooleanParameter(request,
"estimateContentLength", false);
boolean isHls = ServletRequestUtils.getBooleanParameter(request, "hls", false); boolean isHls = ServletRequestUtils.getBooleanParameter(request, "hls", false);
range = getRange(request, file); range = getRange(request, file);
@ -174,6 +177,7 @@ public class StreamController {
Util.setContentLength(response, fileLength); Util.setContentLength(response, fileLength);
} }
// Set content type of response
if (isHls) { if (isHls) {
response.setContentType(StringUtil.getMimeType("ts")); // HLS is always MPEG TS. response.setContentType(StringUtil.getMimeType("ts")); // HLS is always MPEG TS.
} else { } else {
@ -188,6 +192,7 @@ public class StreamController {
} }
} }
// All headers are set, stop if that's all the client requested.
if (request.getMethod().equals("HEAD")) { if (request.getMethod().equals("HEAD")) {
return; return;
} }
@ -258,7 +263,10 @@ public class StreamController {
shouldCatch |= Util.isInstanceOfClassName(e, "org.apache.catalina.connector.ClientAbortException"); shouldCatch |= Util.isInstanceOfClassName(e, "org.apache.catalina.connector.ClientAbortException");
shouldCatch |= Util.isInstanceOfClassName(e, "org.eclipse.jetty.io.EofException"); shouldCatch |= Util.isInstanceOfClassName(e, "org.eclipse.jetty.io.EofException");
if (shouldCatch) { if (shouldCatch) {
LOG.info("{}: Client unexpectedly closed connection while loading {} ({})", request.getRemoteAddr(), Util.getAnonymizedURLForRequest(request), e.getCause().toString()); LOG.info("{}: Client unexpectedly closed connection while loading {} ({})",
request.getRemoteAddr(),
Util.getAnonymizedURLForRequest(request),
e.getCause().toString());
return; return;
} }
@ -358,12 +366,14 @@ public class StreamController {
} }
} }
private VideoTranscodingSettings createVideoTranscodingSettings(MediaFile file, HttpServletRequest request) throws ServletRequestBindingException { private VideoTranscodingSettings createVideoTranscodingSettings(MediaFile file, HttpServletRequest request)
throws ServletRequestBindingException {
Integer existingWidth = file.getWidth(); Integer existingWidth = file.getWidth();
Integer existingHeight = file.getHeight(); Integer existingHeight = file.getHeight();
Integer maxBitRate = ServletRequestUtils.getIntParameter(request, "maxBitRate"); Integer maxBitRate = ServletRequestUtils.getIntParameter(request, "maxBitRate");
int timeOffset = ServletRequestUtils.getIntParameter(request, "timeOffset", 0); int timeOffset = ServletRequestUtils.getIntParameter(request, "timeOffset", 0);
int defaultDuration = file.getDurationSeconds() == null ? Integer.MAX_VALUE : file.getDurationSeconds() - timeOffset; int defaultDuration = file.getDurationSeconds() == null ? Integer.MAX_VALUE :
file.getDurationSeconds() - timeOffset;
int duration = ServletRequestUtils.getIntParameter(request, "duration", defaultDuration); int duration = ServletRequestUtils.getIntParameter(request, "duration", defaultDuration);
boolean hls = ServletRequestUtils.getBooleanParameter(request, "hls", false); boolean hls = ServletRequestUtils.getBooleanParameter(request, "hls", false);

Loading…
Cancel
Save