Skip to content

Instantly share code, notes, and snippets.

@ealsur
Created March 9, 2018 07:36
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save ealsur/2bc8d2f8c4653e5a7ac7f35f556c477f to your computer and use it in GitHub Desktop.
Azure Cosmos DB + Functions Cookbook —secure access run.csx
#r "Microsoft.Azure.Documents.Client"
using Microsoft.Azure.Documents;
using Microsoft.Azure.Documents.Client;
using System.Net;
using System.Configuration;
using Microsoft.Azure.KeyVault;
using Microsoft.Azure.Services.AppAuthentication;
private static HttpClient httpClient = new HttpClient();
private static DocumentClient client = null;
public static async Task<HttpResponseMessage> Run(HttpRequestMessage req, TraceWriter log)
{
string id = req.GetQueryNameValuePairs()
.FirstOrDefault(q => string.Compare(q.Key, "id", true) == 0)
.Value;
if (string.IsNullOrEmpty(id)){
return req.CreateResponse(HttpStatusCode.BadRequest);
}
if(client == null){
client = await GetSecureDocumentClient();
}
Uri documentUri = UriFactory.CreateDocumentUri("your database","your collection",id);
Document doc = await client.ReadDocumentAsync(documentUri);
if (doc == null){
return req.CreateResponse(HttpStatusCode.NotFound);
}
return req.CreateResponse(HttpStatusCode.OK, doc);
}
private static async Task<DocumentClient> GetSecureDocumentClient()
{
AzureServiceTokenProvider azureServiceTokenProvider = new AzureServiceTokenProvider();
string endpointUrl = ConfigurationManager.AppSettings["cosmosDBAccountEndpoint"];
KeyVaultClient keyVaultClient = new KeyVaultClient(new KeyVaultClient.AuthenticationCallback(azureServiceTokenProvider.KeyVaultTokenCallback), httpClient);
var key = await keyVaultClient.GetSecretAsync(ConfigurationManager.AppSettings["keyVaultAccessUri"]);
return new DocumentClient(new Uri(endpointUrl), key.Value);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment