Skip to content

Commit c306287

Browse files
committed
Azure Function toolkit samples
0 parents  commit c306287

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

82 files changed

+5056
-0
lines changed

.gitignore

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
/[Ll]ibrary/
2+
/[Tt]emp/
3+
/[Oo]bj/
4+
/[Bb]uild/
5+
/[Bb]uilds/
6+
/Assets/AssetStoreTools*
7+
8+
# Visual Studio 2015 cache directory
9+
/.vs/
10+
11+
# Autogenerated VS/MD/Consulo solution and project files
12+
ExportedObj/
13+
.consulo/
14+
*.csproj
15+
*.unityproj
16+
*.sln
17+
*.suo
18+
*.tmp
19+
*.user
20+
*.userprefs
21+
*.pidb
22+
*.booproj
23+
*.svd
24+
*.pdb
25+
26+
# Unity3D generated meta files
27+
*.pidb.meta
28+
#*.meta
29+
/Assets/Dependencies/**/*.meta
30+
31+
# Unity3D Generated File On Crash Reports
32+
sysinfo.txt
33+
34+
# Builds
35+
*.apk
36+
*.unitypackage
37+
38+
# IDEs
39+
#/.vscode
40+
#omnisharp.json
41+
#.editorconfig
42+
43+
# UWP
44+
*.pfx
45+
*.pfx.meta
46+
/UWP

Assets/AzureFunctions.meta

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
+74
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
using System;
2+
using UnityEngine;
3+
using UnityEngine.Networking;
4+
5+
namespace UnityRESTRequest
6+
{
7+
public abstract class AzureFunction<E,S> : RetryableRequest<E,S>
8+
{
9+
[Header("Azure Function")]
10+
11+
[Tooltip("Enter Function account name")]
12+
public string Account = "localhost";
13+
14+
[Tooltip("Enter route prefix")]
15+
public string RoutePrefix = "api";
16+
17+
[Tooltip("Enter Function name")]
18+
public string Function = "hello";
19+
20+
[SerializeField, Tooltip("Enter Function code. \nNB: This is for development use only. Don't store your private Function Code in public source control!")]
21+
private string Code = "";
22+
23+
protected static string LOCALHOST = "http://localhost:7071";
24+
protected static string HOST_ACCOUNT = "https://{0}.azurewebsites.net";
25+
26+
protected override void CustomRequest(UnityWebRequest www)
27+
{
28+
if (!string.IsNullOrEmpty(Code))
29+
{
30+
www.SetRequestHeader("code", Code.Trim());
31+
}
32+
}
33+
34+
protected override string ConfigureApi()
35+
{
36+
/// Use URLEndpoint if defined
37+
if (!string.IsNullOrEmpty(URLEndpoint))
38+
{
39+
return URLEndpoint;
40+
}
41+
/// Else build Uri using Function properties
42+
string host = GetHost(Account);
43+
string functionPath = string.IsNullOrEmpty(RoutePrefix) ? Function : "/" + RoutePrefix + "/" + Function;
44+
return host + functionPath;
45+
}
46+
47+
/// <summary>
48+
/// Returns localhost API or deployed Azure Functions API base url
49+
/// </summary>
50+
/// <returns></returns>
51+
public string GetHost(string accountName)
52+
{
53+
if (string.IsNullOrEmpty(Account) ||
54+
string.Equals(Account, "localhost", System.StringComparison.OrdinalIgnoreCase) ||
55+
string.Equals(Account, "127.0.0.1", System.StringComparison.OrdinalIgnoreCase))
56+
{
57+
return LOCALHOST;
58+
}
59+
else
60+
{
61+
return string.Format(HOST_ACCOUNT, accountName);
62+
}
63+
}
64+
65+
public void SetFunctionCode(string code)
66+
{
67+
Code = code;
68+
}
69+
}
70+
71+
public abstract class AzureFunction : AzureFunction<string,string>
72+
{
73+
}
74+
}

Assets/AzureFunctions/AzureFunction.cs.meta

+11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
+144
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,144 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Text;
5+
using System.Text.RegularExpressions;
6+
using UnityEngine;
7+
using UnityEngine.Networking;
8+
9+
namespace UnityRESTRequest
10+
{
11+
/// <summary>
12+
/// Durable Azure Functions beta (implementation may change)
13+
/// </summary>
14+
/// <typeparam name="E"></typeparam>
15+
/// <typeparam name="S"></typeparam>
16+
public abstract class DurableFunction<E,S> : AzureFunction<E,S>
17+
{
18+
public string TaskHub = "SampleHubJs";
19+
public string Connection = "Storage";
20+
21+
/// <summary>
22+
/// Request will be redirected using the following endpoint using the instance id returned by the initial request headers.
23+
/// </summary>
24+
protected string RedirectedStatusEndpointFormat = "{0}/runtime/webhooks/DurableTaskExtension/instances/{1}?taskHub={2}&connection={3}";
25+
private bool shouldRedirect = false;
26+
private string hostApi = "";
27+
private string instanceId = "";
28+
29+
/// <summary>
30+
/// Here we override the http method as Durable functions use POST to start the task and then use GET to poll status
31+
/// </summary>
32+
/// <param name="www"></param>
33+
protected override void CustomRequest(UnityWebRequest www)
34+
{
35+
base.CustomRequest(www);
36+
if (!shouldRedirect)
37+
{
38+
www.method = UnityWebRequest.kHttpVerbPOST;
39+
}
40+
else
41+
{
42+
www.method = UnityWebRequest.kHttpVerbGET;
43+
}
44+
}
45+
46+
/// <summary>
47+
/// Ensure request should use POST
48+
/// </summary>
49+
/// <param name="data"></param>
50+
/// <param name="filePath"></param>
51+
protected override void AsyncSend(byte[] data = null, string filePath = "")
52+
{
53+
/// reset state if previous request has completed
54+
if (HasRequestSucceeded())
55+
{
56+
shouldRedirect = false;
57+
hostApi = "";
58+
instanceId = "";
59+
}
60+
base.AsyncSend(data, filePath);
61+
}
62+
63+
public override void OnSuccess(Response response)
64+
{
65+
if (!shouldRedirect)
66+
{
67+
var res = response as ResponseText;
68+
if (CheckId(res.Text))
69+
{
70+
instanceId = res.Text;
71+
log(LogType.Log, "Got instance id: " + instanceId);
72+
shouldRedirect = true;
73+
}
74+
}
75+
else if (ValidateResponse(response))
76+
{
77+
log(LogType.Log, "Durable Function Request Succeeded!", response);
78+
79+
/// return instance output array
80+
var res = response as ResponseData<DurableInstance<S>>;
81+
var output = res.Data.output;
82+
var ouputResponse = new ResponseData<S[]>(response.IsError, response.StatusCode, response.Url, response.ResponseHeaders, output);
83+
84+
RequestSucceeded();
85+
FireResponseSuccess(ouputResponse);
86+
}
87+
}
88+
89+
protected override bool ValidateResponse(Response response)
90+
{
91+
var result = response as ResponseData<DurableInstance<S>>;
92+
if (result != null && string.Equals(result.Data.runtimeStatus, "Completed"))
93+
{
94+
return true;
95+
}
96+
return false;
97+
}
98+
99+
/// <summary>
100+
/// Check the instance id is returned ok in the response body text
101+
/// </summary>
102+
/// <param name="id"></param>
103+
/// <returns></returns>
104+
private bool CheckId(string id)
105+
{
106+
string pattern = @"[a-z0-9-]+";
107+
RegexOptions options = RegexOptions.Multiline | RegexOptions.IgnoreCase;
108+
var regex = Regex.Matches(id, pattern, options);
109+
if (regex.Count == 1)
110+
{
111+
return true;
112+
}
113+
Debug.LogError("Unexpected instance id format");
114+
return false;
115+
}
116+
117+
protected override string ConfigureApi()
118+
{
119+
if (!shouldRedirect)
120+
{
121+
return base.ConfigureApi();
122+
}
123+
if (string.IsNullOrEmpty(hostApi))
124+
{
125+
hostApi = GetHost(Account);
126+
}
127+
string pollingUri = string.Format(RedirectedStatusEndpointFormat, hostApi, instanceId, TaskHub, Connection);
128+
return pollingUri;
129+
}
130+
131+
protected override void SuccessHandler(UnityWebRequest www)
132+
{
133+
if (!shouldRedirect)
134+
{
135+
base.SuccessHandler(www);
136+
}
137+
else
138+
{
139+
var response = ParseResponse<DurableInstance<S>>(www);
140+
OnSuccess(response);
141+
}
142+
}
143+
}
144+
}

Assets/AzureFunctions/DurableFunction.cs.meta

+11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Assets/AzureFunctions/Models.meta

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Text;
5+
using UnityEngine;
6+
7+
namespace UnityRESTRequest
8+
{
9+
[Serializable]
10+
public class DurableInstance<T>
11+
{
12+
public string instanceId;
13+
public string runtimeStatus;
14+
public T[] output;
15+
public DateTime createdTime;
16+
public DateTime lastUpdatedTime;
17+
}
18+
}

Assets/AzureFunctions/Models/DurableInstance.cs.meta

+11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Assets/Scenes.meta

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)