Moved image handling to diff controller since it doesn't support the csrf header, need to test more in an hour (WIP)
This commit is contained in:
@@ -86,7 +86,7 @@ angular.module("umbraco.directives.html")
|
|||||||
|
|
||||||
//get the proxy url for big thumbnails (this ensures one is always generated)
|
//get the proxy url for big thumbnails (this ensures one is always generated)
|
||||||
var thumbnailUrl = umbRequestHelper.getApiUrl(
|
var thumbnailUrl = umbRequestHelper.getApiUrl(
|
||||||
"mediaApiBaseUrl",
|
"imagesApiBaseUrl",
|
||||||
"GetBigThumbnail",
|
"GetBigThumbnail",
|
||||||
[{ mediaId: photo.id }]);
|
[{ mediaId: photo.id }]);
|
||||||
photo.thumbnail = thumbnailUrl;
|
photo.thumbnail = thumbnailUrl;
|
||||||
|
|||||||
@@ -57,7 +57,7 @@ function fileUploadController($scope, $element, $compile, imageHelper, fileManag
|
|||||||
_.each($scope.persistedFiles, function (file) {
|
_.each($scope.persistedFiles, function (file) {
|
||||||
|
|
||||||
var thumbnailUrl = umbRequestHelper.getApiUrl(
|
var thumbnailUrl = umbRequestHelper.getApiUrl(
|
||||||
"mediaApiBaseUrl",
|
"imagesApiBaseUrl",
|
||||||
"GetBigThumbnail",
|
"GetBigThumbnail",
|
||||||
[{ originalImagePath: file.file }]);
|
[{ originalImagePath: file.file }]);
|
||||||
|
|
||||||
|
|||||||
@@ -84,6 +84,10 @@ namespace Umbraco.Web.Editors
|
|||||||
"mediaApiBaseUrl", Url.GetUmbracoApiServiceBaseUrl<MediaController>(
|
"mediaApiBaseUrl", Url.GetUmbracoApiServiceBaseUrl<MediaController>(
|
||||||
controller => controller.GetRootMedia())
|
controller => controller.GetRootMedia())
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"imagesApiBaseUrl", Url.GetUmbracoApiServiceBaseUrl<ImagesController>(
|
||||||
|
controller => controller.GetBigThumbnail(0))
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"sectionApiBaseUrl", Url.GetUmbracoApiServiceBaseUrl<SectionController>(
|
"sectionApiBaseUrl", Url.GetUmbracoApiServiceBaseUrl<SectionController>(
|
||||||
controller => controller.GetSections())
|
controller => controller.GetSections())
|
||||||
|
|||||||
145
src/Umbraco.Web/Editors/ImagesController.cs
Normal file
145
src/Umbraco.Web/Editors/ImagesController.cs
Normal file
@@ -0,0 +1,145 @@
|
|||||||
|
using System;
|
||||||
|
using System.Drawing;
|
||||||
|
using System.IO;
|
||||||
|
using System.Net;
|
||||||
|
using System.Net.Http;
|
||||||
|
using System.Net.Http.Headers;
|
||||||
|
using Umbraco.Core;
|
||||||
|
using Umbraco.Core.IO;
|
||||||
|
using Umbraco.Core.Media;
|
||||||
|
using Umbraco.Web.Mvc;
|
||||||
|
using Umbraco.Web.WebApi;
|
||||||
|
using Umbraco.Web.WebApi.Filters;
|
||||||
|
using Constants = Umbraco.Core.Constants;
|
||||||
|
|
||||||
|
namespace Umbraco.Web.Editors
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// A controller used to return images for media
|
||||||
|
/// </summary>
|
||||||
|
[PluginController("UmbracoApi")]
|
||||||
|
public class ImagesController : UmbracoAuthorizedApiController
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Gets the big thumbnail image for the media id
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="mediaId"></param>
|
||||||
|
/// <returns></returns>
|
||||||
|
/// <remarks>
|
||||||
|
/// If there is no media, image property or image file is found then this will return not found.
|
||||||
|
/// </remarks>
|
||||||
|
public HttpResponseMessage GetBigThumbnail(int mediaId)
|
||||||
|
{
|
||||||
|
var media = Services.MediaService.GetById(mediaId);
|
||||||
|
if (media == null)
|
||||||
|
{
|
||||||
|
return Request.CreateResponse(HttpStatusCode.NotFound);
|
||||||
|
}
|
||||||
|
var imageProp = media.Properties[Constants.Conventions.Media.File];
|
||||||
|
if (imageProp == null)
|
||||||
|
{
|
||||||
|
return Request.CreateResponse(HttpStatusCode.NotFound);
|
||||||
|
}
|
||||||
|
|
||||||
|
var imagePath = imageProp.Value.ToString();
|
||||||
|
|
||||||
|
return GetBigThumbnail(imagePath);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets the big thumbnail image for the original image path
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="originalImagePath"></param>
|
||||||
|
/// <returns></returns>
|
||||||
|
/// <remarks>
|
||||||
|
/// If there is no original image is found then this will return not found.
|
||||||
|
/// </remarks>
|
||||||
|
public HttpResponseMessage GetBigThumbnail(string originalImagePath)
|
||||||
|
{
|
||||||
|
return GetResized(originalImagePath, 500, "big-thumb");
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets a resized image for the media id
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="mediaId"></param>
|
||||||
|
/// <param name="width"></param>
|
||||||
|
/// <returns></returns>
|
||||||
|
/// <remarks>
|
||||||
|
/// If there is no media, image property or image file is found then this will return not found.
|
||||||
|
/// </remarks>
|
||||||
|
public HttpResponseMessage GetResized(int mediaId, int width)
|
||||||
|
{
|
||||||
|
var media = Services.MediaService.GetById(mediaId);
|
||||||
|
if (media == null)
|
||||||
|
{
|
||||||
|
return new HttpResponseMessage(HttpStatusCode.NotFound);
|
||||||
|
}
|
||||||
|
var imageProp = media.Properties[Constants.Conventions.Media.File];
|
||||||
|
if (imageProp == null)
|
||||||
|
{
|
||||||
|
return new HttpResponseMessage(HttpStatusCode.NotFound);
|
||||||
|
}
|
||||||
|
|
||||||
|
var imagePath = imageProp.Value.ToString();
|
||||||
|
|
||||||
|
return GetResized(imagePath, width);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets a resized image for the image at the given path
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="imagePath"></param>
|
||||||
|
/// <param name="width"></param>
|
||||||
|
/// <returns></returns>
|
||||||
|
/// <remarks>
|
||||||
|
/// If there is no media, image property or image file is found then this will return not found.
|
||||||
|
/// </remarks>
|
||||||
|
public HttpResponseMessage GetResized(string imagePath, int width)
|
||||||
|
{
|
||||||
|
return GetResized(imagePath, width, Convert.ToString(width));
|
||||||
|
}
|
||||||
|
|
||||||
|
private HttpResponseMessage GetResized(string imagePath, int width, string suffix)
|
||||||
|
{
|
||||||
|
var mediaFileSystem = FileSystemProviderManager.Current.GetFileSystemProvider<MediaFileSystem>();
|
||||||
|
var ext = Path.GetExtension(imagePath);
|
||||||
|
var thumbFilePath = imagePath.TrimEnd(ext) + "_" + suffix + ".jpg";
|
||||||
|
var fullOrgPath = mediaFileSystem.GetFullPath(mediaFileSystem.GetRelativePath(imagePath));
|
||||||
|
var fullNewPath = mediaFileSystem.GetFullPath(mediaFileSystem.GetRelativePath(thumbFilePath));
|
||||||
|
var thumbIsNew = mediaFileSystem.FileExists(fullNewPath) == false;
|
||||||
|
if (thumbIsNew)
|
||||||
|
{
|
||||||
|
//we need to generate it
|
||||||
|
if (mediaFileSystem.FileExists(fullOrgPath) == false)
|
||||||
|
{
|
||||||
|
return Request.CreateResponse(HttpStatusCode.NotFound);
|
||||||
|
}
|
||||||
|
|
||||||
|
using (var fileStream = mediaFileSystem.OpenFile(fullOrgPath))
|
||||||
|
{
|
||||||
|
if (fileStream.CanSeek) fileStream.Seek(0, 0);
|
||||||
|
using (var originalImage = Image.FromStream(fileStream))
|
||||||
|
{
|
||||||
|
ImageHelper.GenerateThumbnail(
|
||||||
|
originalImage,
|
||||||
|
width,
|
||||||
|
fullNewPath,
|
||||||
|
"jpg",
|
||||||
|
mediaFileSystem);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
var result = Request.CreateResponse(HttpStatusCode.OK);
|
||||||
|
//NOTE: That we are not closing this stream as the framework will do that for us, if we try it will
|
||||||
|
// fail. See http://stackoverflow.com/questions/9541351/returning-binary-file-from-controller-in-asp-net-web-api
|
||||||
|
var stream = mediaFileSystem.OpenFile(fullNewPath);
|
||||||
|
if (stream.CanSeek) stream.Seek(0, 0);
|
||||||
|
result.Content = new StreamContent(stream);
|
||||||
|
result.Headers.Date = mediaFileSystem.GetLastModified(imagePath);
|
||||||
|
result.Content.Headers.ContentType = new MediaTypeHeaderValue("image/jpeg");
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,11 +1,9 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Drawing;
|
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Net;
|
using System.Net;
|
||||||
using System.Net.Http;
|
using System.Net.Http;
|
||||||
using System.Net.Http.Formatting;
|
using System.Net.Http.Formatting;
|
||||||
using System.Net.Http.Headers;
|
|
||||||
using System.Security.AccessControl;
|
using System.Security.AccessControl;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
@@ -17,7 +15,6 @@ using Umbraco.Core;
|
|||||||
using Umbraco.Core.Dynamics;
|
using Umbraco.Core.Dynamics;
|
||||||
using Umbraco.Core.IO;
|
using Umbraco.Core.IO;
|
||||||
using Umbraco.Core.Logging;
|
using Umbraco.Core.Logging;
|
||||||
using Umbraco.Core.Media;
|
|
||||||
using Umbraco.Core.Models;
|
using Umbraco.Core.Models;
|
||||||
using Umbraco.Core.Models.Editors;
|
using Umbraco.Core.Models.Editors;
|
||||||
using Umbraco.Core.Models.Membership;
|
using Umbraco.Core.Models.Membership;
|
||||||
@@ -38,8 +35,6 @@ using Umbraco.Core.Configuration;
|
|||||||
|
|
||||||
namespace Umbraco.Web.Editors
|
namespace Umbraco.Web.Editors
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// This controller is decorated with the UmbracoApplicationAuthorizeAttribute which means that any user requesting
|
/// This controller is decorated with the UmbracoApplicationAuthorizeAttribute which means that any user requesting
|
||||||
/// access to ALL of the methods on this controller will need access to the media application.
|
/// access to ALL of the methods on this controller will need access to the media application.
|
||||||
@@ -64,130 +59,7 @@ namespace Umbraco.Web.Editors
|
|||||||
: base(umbracoContext)
|
: base(umbracoContext)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Gets the big thumbnail image for the media id
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="mediaId"></param>
|
|
||||||
/// <returns></returns>
|
|
||||||
/// <remarks>
|
|
||||||
/// If there is no media, image property or image file is found then this will return not found.
|
|
||||||
/// </remarks>
|
|
||||||
public HttpResponseMessage GetBigThumbnail(int mediaId)
|
|
||||||
{
|
|
||||||
var media = Services.MediaService.GetById(mediaId);
|
|
||||||
if (media == null)
|
|
||||||
{
|
|
||||||
return Request.CreateResponse(HttpStatusCode.NotFound);
|
|
||||||
}
|
|
||||||
var imageProp = media.Properties[Constants.Conventions.Media.File];
|
|
||||||
if (imageProp == null)
|
|
||||||
{
|
|
||||||
return Request.CreateResponse(HttpStatusCode.NotFound);
|
|
||||||
}
|
|
||||||
|
|
||||||
var imagePath = imageProp.Value.ToString();
|
|
||||||
|
|
||||||
return GetBigThumbnail(imagePath);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Gets the big thumbnail image for the original image path
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="originalImagePath"></param>
|
|
||||||
/// <returns></returns>
|
|
||||||
/// <remarks>
|
|
||||||
/// If there is no original image is found then this will return not found.
|
|
||||||
/// </remarks>
|
|
||||||
public HttpResponseMessage GetBigThumbnail(string originalImagePath)
|
|
||||||
{
|
|
||||||
return GetResized(originalImagePath, 500, "big-thumb");
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Gets a resized image for the media id
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="mediaId"></param>
|
|
||||||
/// <param name="width"></param>
|
|
||||||
/// <returns></returns>
|
|
||||||
/// <remarks>
|
|
||||||
/// If there is no media, image property or image file is found then this will return not found.
|
|
||||||
/// </remarks>
|
|
||||||
public HttpResponseMessage GetResized(int mediaId, int width)
|
|
||||||
{
|
|
||||||
var media = Services.MediaService.GetById(mediaId);
|
|
||||||
if (media == null)
|
|
||||||
{
|
|
||||||
return new HttpResponseMessage(HttpStatusCode.NotFound);
|
|
||||||
}
|
|
||||||
var imageProp = media.Properties[Constants.Conventions.Media.File];
|
|
||||||
if (imageProp == null)
|
|
||||||
{
|
|
||||||
return new HttpResponseMessage(HttpStatusCode.NotFound);
|
|
||||||
}
|
|
||||||
|
|
||||||
var imagePath = imageProp.Value.ToString();
|
|
||||||
|
|
||||||
return GetResized(imagePath, width);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Gets a resized image for the image at the given path
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="imagePath"></param>
|
|
||||||
/// <param name="width"></param>
|
|
||||||
/// <returns></returns>
|
|
||||||
/// <remarks>
|
|
||||||
/// If there is no media, image property or image file is found then this will return not found.
|
|
||||||
/// </remarks>
|
|
||||||
public HttpResponseMessage GetResized(string imagePath, int width)
|
|
||||||
{
|
|
||||||
return GetResized(imagePath, width, Convert.ToString(width));
|
|
||||||
}
|
|
||||||
|
|
||||||
private HttpResponseMessage GetResized(string imagePath, int width, string suffix)
|
|
||||||
{
|
|
||||||
var mediaFileSystem = FileSystemProviderManager.Current.GetFileSystemProvider<MediaFileSystem>();
|
|
||||||
var ext = Path.GetExtension(imagePath);
|
|
||||||
var thumbFilePath = imagePath.TrimEnd(ext) + "_" + suffix + ".jpg";
|
|
||||||
var fullOrgPath = mediaFileSystem.GetFullPath(mediaFileSystem.GetRelativePath(imagePath));
|
|
||||||
var fullNewPath = mediaFileSystem.GetFullPath(mediaFileSystem.GetRelativePath(thumbFilePath));
|
|
||||||
var thumbIsNew = mediaFileSystem.FileExists(fullNewPath) == false;
|
|
||||||
if (thumbIsNew)
|
|
||||||
{
|
|
||||||
//we need to generate it
|
|
||||||
if (mediaFileSystem.FileExists(fullOrgPath) == false)
|
|
||||||
{
|
|
||||||
return Request.CreateResponse(HttpStatusCode.NotFound);
|
|
||||||
}
|
|
||||||
|
|
||||||
using (var fileStream = mediaFileSystem.OpenFile(fullOrgPath))
|
|
||||||
{
|
|
||||||
if (fileStream.CanSeek) fileStream.Seek(0, 0);
|
|
||||||
using (var originalImage = Image.FromStream(fileStream))
|
|
||||||
{
|
|
||||||
ImageHelper.GenerateThumbnail(
|
|
||||||
originalImage,
|
|
||||||
width,
|
|
||||||
fullNewPath,
|
|
||||||
"jpg",
|
|
||||||
mediaFileSystem);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
var result = Request.CreateResponse(HttpStatusCode.OK);
|
|
||||||
//NOTE: That we are not closing this stream as the framework will do that for us, if we try it will
|
|
||||||
// fail. See http://stackoverflow.com/questions/9541351/returning-binary-file-from-controller-in-asp-net-web-api
|
|
||||||
var stream = mediaFileSystem.OpenFile(fullNewPath);
|
|
||||||
if (stream.CanSeek) stream.Seek(0, 0);
|
|
||||||
result.Content = new StreamContent(stream);
|
|
||||||
result.Headers.Date = mediaFileSystem.GetLastModified(imagePath);
|
|
||||||
result.Content.Headers.ContentType = new MediaTypeHeaderValue("image/jpeg");
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets an empty content item for the
|
/// Gets an empty content item for the
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|||||||
@@ -5,8 +5,12 @@ using Umbraco.Web.WebApi.Filters;
|
|||||||
namespace Umbraco.Web.Editors
|
namespace Umbraco.Web.Editors
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// An abstract API controller that only supports JSON
|
/// An abstract API controller that only supports JSON and all requests must contain the correct csrf header
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
/// <remarks>
|
||||||
|
/// Inheriting from this controller means that ALL of your methods are JSON methods that are called by Angular,
|
||||||
|
/// methods that are not called by Angular or don't contain a valid csrf header will NOT work.
|
||||||
|
/// </remarks>
|
||||||
[ValidateAngularAntiForgeryToken]
|
[ValidateAngularAntiForgeryToken]
|
||||||
public abstract class UmbracoAuthorizedJsonController : UmbracoAuthorizedApiController
|
public abstract class UmbracoAuthorizedJsonController : UmbracoAuthorizedApiController
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -300,6 +300,7 @@
|
|||||||
<Compile Include="Editors\DataTypeController.cs" />
|
<Compile Include="Editors\DataTypeController.cs" />
|
||||||
<Compile Include="Editors\DataTypeValidateAttribute.cs" />
|
<Compile Include="Editors\DataTypeValidateAttribute.cs" />
|
||||||
<Compile Include="Editors\EntityControllerActionSelector.cs" />
|
<Compile Include="Editors\EntityControllerActionSelector.cs" />
|
||||||
|
<Compile Include="Editors\ImagesController.cs" />
|
||||||
<Compile Include="Models\ContentEditing\EntityTypeSearchResult.cs" />
|
<Compile Include="Models\ContentEditing\EntityTypeSearchResult.cs" />
|
||||||
<Compile Include="Models\IRenderModel.cs" />
|
<Compile Include="Models\IRenderModel.cs" />
|
||||||
<Compile Include="Models\RenderModelOfTContent.cs" />
|
<Compile Include="Models\RenderModelOfTContent.cs" />
|
||||||
|
|||||||
Reference in New Issue
Block a user