-
Notifications
You must be signed in to change notification settings - Fork 0
/
AzureVirtualPathProvider.cs
165 lines (144 loc) · 6.91 KB
/
AzureVirtualPathProvider.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
/* Copyright (c) 2011 Wouter A. Alberts and Nathanael D. Jones. See license.txt for your rights. */
using System;
using System.Security.Permissions;
using System.Web;
using System.Web.Hosting;
using Microsoft.WindowsAzure;
using Microsoft.WindowsAzure.Storage;
using Microsoft.WindowsAzure.Storage.Blob;
using ImageResizer.Util;
namespace ImageResizer.Plugins.AzureReader2 {
public class AzureVirtualPathProvider : VirtualPathProvider, IVirtualImageProvider {
private string _virtualFilesystemPrefix = PathUtils.ResolveAppRelative("~/azure/");
private CloudBlobClient _cloudBlobClient = null;
/// <summary>
/// Requests starting with this path will be handled by this virtual path provider.
/// Can be in app-relative form: "~/azure/". Will be translated to domain-relative form.
/// </summary>
public string VirtualFilesystemPrefix {
get {
return _virtualFilesystemPrefix;
}
set {
if (!value.EndsWith("/")) value += "/";
_virtualFilesystemPrefix = value != null ? PathUtils.ResolveAppRelativeAssumeAppRelative(value) : value;
}
}
private bool _lazyExistenceCheck = false;
/// <summary>
/// If true,
/// </summary>
public bool LazyExistenceCheck {
get { return _lazyExistenceCheck; }
set { _lazyExistenceCheck = value; }
}
public CloudBlobClient CloudBlobClient {
get {
return _cloudBlobClient;
}
set {
_cloudBlobClient = value;
}
}
public AzureVirtualPathProvider(string blobStorageConnection) {
// Setup the connection to Windows Azure Storage
// The 1.x Azure SDK offers a CloudStorageAccount.FromConfigurationSetting()
// method that looks up the connection string from the fabric's configuration
// and creates the CloudStorageAccount. In 2.x, that method has disappeared
// and we have to talk to the CloudConfigurationManager directly.
var connectionString = CloudConfigurationManager.GetSetting(blobStorageConnection);
// Earlier versions of AzureReader2 simply assumed/required that the
// 'blobStorageConnection' value was the connection string itself, and
// not a config key. Therefore, we fall back to that behavior if the
// configuration lookup fails.
if (string.IsNullOrEmpty(connectionString))
{
connectionString = blobStorageConnection;
}
var cloudStorageAccount = CloudStorageAccount.Parse(connectionString);
CloudBlobClient = cloudStorageAccount.CreateCloudBlobClient();
}
/// <summary>
/// Determines whether a specified virtual path is within the virtual file system.
/// </summary>
/// <param name="virtualPath">An absolute virtual path.</param>
/// <returns>
/// True if the virtual path is within the virtual file sytem; otherwise, false.
/// </returns>
public bool IsPathVirtual(string virtualPath){
return (virtualPath.StartsWith(VirtualFilesystemPrefix, StringComparison.OrdinalIgnoreCase));
}
/// <summary>
/// Internal usage only
/// </summary>
/// <param name="virtualPath"></param>
/// <returns></returns>
public override bool FileExists(string virtualPath) {
if (FileExists(virtualPath, null))
return true;
else {
return Previous.FileExists(virtualPath);
}
}
/// <summary>
/// For internal use only
/// </summary>
/// <param name="virtualPath"></param>
/// <returns></returns>
public override VirtualFile GetFile(string virtualPath) {
VirtualFile vf = (VirtualFile)GetFile(virtualPath, null);
return (vf == null) ? Previous.GetFile(virtualPath) : vf;
}
/// <summary>
/// Returns true if the specified file is within the azure virtual directory prefix, and if it exists. Returns true even if the file doesn't exist when LazyExistenceCheck=true
/// </summary>
/// <param name="virtualPath"></param>
/// <param name="queryString"></param>
/// <returns></returns>
public bool FileExists(string virtualPath, System.Collections.Specialized.NameValueCollection queryString) {
if (IsPathVirtual(virtualPath)) {
if (LazyExistenceCheck) return true;
try {
// Strip prefix from virtual path; keep container and blob
// mb:12/8/2012 - need to prepend the blob client base uri to the url
string relativeBlobURL = string.Format("{0}/{1}", CloudBlobClient.BaseUri.OriginalString.TrimEnd('/', '\\'), virtualPath.Substring(VirtualFilesystemPrefix.Length).Trim('/', '\\'));
// Get a reference to the blob
// mb:12/8/2012 - this call now must be a uri
ICloudBlob cloudBlob = CloudBlobClient.GetBlobReferenceFromServer(new Uri(relativeBlobURL));
cloudBlob.FetchAttributes();
return true;
} catch (StorageException e) {
if (e.RequestInformation.HttpStatusCode == 404) {
return false;
} else {
throw;
}
}
}
return false;
}
public IVirtualFile GetFile(string virtualPath, System.Collections.Specialized.NameValueCollection queryString) {
if (IsPathVirtual(virtualPath)) {
// Strip prefix from virtual path; keep container and blob
string relativeBlobURL = virtualPath.Substring(VirtualFilesystemPrefix.Length).Trim('/', '\\');
try {
if (!LazyExistenceCheck) {
// Get a reference to the blob
// mb: 12/8/2012 - creating uri here to keep the above relativeBlobURL as is to create & return an AzureFile
Uri relativeBlobUri = new Uri(string.Format("{0}/{1}", CloudBlobClient.BaseUri.OriginalString.TrimEnd('/', '\\'), relativeBlobURL));
ICloudBlob cloudBlob = CloudBlobClient.GetBlobReferenceFromServer(relativeBlobUri);
cloudBlob.FetchAttributes();
}
return new AzureFile(relativeBlobURL, this);
} catch (StorageException e) {
if (e.RequestInformation.HttpStatusCode == 404) {
return null;
} else {
throw;
}
}
}
return null;
}
}
}