Loading [MathJax]/extensions/tex2jax.js
azure-storage-files-shares
All Classes Functions Variables Pages
share_sas_builder.hpp
1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4#pragma once
5
6#include <azure/core/nullable.hpp>
7#include <azure/storage/common/account_sas_builder.hpp>
8#include <azure/storage/common/internal/constants.hpp>
9
10#include <string>
11#include <type_traits>
12
13namespace Azure { namespace Storage { namespace Sas {
14
18 enum class ShareSasResource
19 {
23 Share,
24
29 File,
30 };
31
35 enum class ShareSasPermissions
36 {
40 Read = 1,
41
45 Write = 2,
46
50 Delete = 4,
51
55 List = 8,
56
60 Create = 16,
61
65 All = ~0,
66 };
67
68 inline ShareSasPermissions operator|(ShareSasPermissions lhs, ShareSasPermissions rhs)
69 {
70 using type = std::underlying_type_t<ShareSasPermissions>;
71 return static_cast<ShareSasPermissions>(static_cast<type>(lhs) | static_cast<type>(rhs));
72 }
73
74 inline ShareSasPermissions operator&(ShareSasPermissions lhs, ShareSasPermissions rhs)
75 {
76 using type = std::underlying_type_t<ShareSasPermissions>;
77 return static_cast<ShareSasPermissions>(static_cast<type>(lhs) & static_cast<type>(rhs));
78 }
79
83 enum class ShareFileSasPermissions
84 {
88 Read = 1,
89
93 Write = 2,
94
99 Delete = 4,
100
104 Create = 8,
105
109 All = ~0,
110 };
111
112 inline ShareFileSasPermissions operator|(ShareFileSasPermissions lhs, ShareFileSasPermissions rhs)
113 {
114 using type = std::underlying_type_t<ShareFileSasPermissions>;
115 return static_cast<ShareFileSasPermissions>(static_cast<type>(lhs) | static_cast<type>(rhs));
116 }
117
118 inline ShareFileSasPermissions operator&(ShareFileSasPermissions lhs, ShareFileSasPermissions rhs)
119 {
120 using type = std::underlying_type_t<ShareFileSasPermissions>;
121 return static_cast<ShareFileSasPermissions>(static_cast<type>(lhs) & static_cast<type>(rhs));
122 }
123
128 struct ShareSasBuilder final
129 {
134 SasProtocol Protocol;
135
140 Azure::Nullable<Azure::DateTime> StartsOn;
141
147 Azure::DateTime ExpiresOn;
148
155 Azure::Nullable<std::string> IPRange;
156
161 std::string Identifier;
162
166 std::string ShareName;
167
171 std::string FilePath;
172
176 ShareSasResource Resource;
177
181 std::string CacheControl;
182
187
191 std::string ContentEncoding;
192
196 std::string ContentLanguage;
197
201 std::string ContentType;
202
208 void SetPermissions(ShareSasPermissions permissions);
209
215 void SetPermissions(ShareFileSasPermissions permissions);
216
222 void SetPermissions(std::string rawPermissions) { Permissions = std::move(rawPermissions); }
223
231 std::string GenerateSasToken(const StorageSharedKeyCredential& credential);
232
241 std::string GenerateSasStringToSign(const StorageSharedKeyCredential& credential);
242
243 private:
244 std::string Permissions;
245 };
246
247}}} // namespace Azure::Storage::Sas
ShareSasBuilder is used to generate a Shared Access Signature (SAS) for an Azure Storage share or fil...
Definition share_sas_builder.hpp:129
Azure::Nullable< std::string > IPRange
Specifies an IP address or a range of IP addresses from which to accept requests. If the IP address f...
Definition share_sas_builder.hpp:155
std::string GenerateSasToken(const StorageSharedKeyCredential &credential)
Uses the StorageSharedKeyCredential to sign this shared access signature, to produce the proper SAS q...
std::string ContentEncoding
Override the value returned for Content-Encoding response header..
Definition share_sas_builder.hpp:191
std::string ShareName
The name of the file share being made accessible.
Definition share_sas_builder.hpp:166
std::string FilePath
The name of the share file being made accessible, or empty for a share SAS..
Definition share_sas_builder.hpp:171
std::string Identifier
An optional unique value up to 64 characters in length that correlates to an access policy specified ...
Definition share_sas_builder.hpp:161
Azure::Nullable< Azure::DateTime > StartsOn
Optionally specify the time at which the shared access signature becomes valid. This timestamp will b...
Definition share_sas_builder.hpp:140
ShareSasResource Resource
Specifies which resources are accessible via the shared access signature.
Definition share_sas_builder.hpp:176
void SetPermissions(std::string rawPermissions)
Sets the permissions for the SAS using a raw permissions string.
Definition share_sas_builder.hpp:222
void SetPermissions(ShareFileSasPermissions permissions)
Sets the permissions for the share SAS.
std::string ContentType
Override the value returned for Content-Type response header..
Definition share_sas_builder.hpp:201
Azure::DateTime ExpiresOn
The time at which the shared access signature becomes invalid. This field must be omitted if it has b...
Definition share_sas_builder.hpp:147
std::string ContentDisposition
Override the value returned for Content-Disposition response header..
Definition share_sas_builder.hpp:186
SasProtocol Protocol
The optional signed protocol field specifies the protocol permitted for a request made with the SAS.
Definition share_sas_builder.hpp:134
std::string GenerateSasStringToSign(const StorageSharedKeyCredential &credential)
For debugging purposes only.
std::string ContentLanguage
Override the value returned for Content-Language response header..
Definition share_sas_builder.hpp:196
void SetPermissions(ShareSasPermissions permissions)
Sets the permissions for the share SAS.
std::string CacheControl
Override the value returned for Cache-Control response header..
Definition share_sas_builder.hpp:181