about summary refs log tree commit diff
path: root/MatrixRoomUtils.Web/Pages/MediaLocator.razor
diff options
context:
space:
mode:
Diffstat (limited to 'MatrixRoomUtils.Web/Pages/MediaLocator.razor')
-rw-r--r--MatrixRoomUtils.Web/Pages/MediaLocator.razor36
1 files changed, 36 insertions, 0 deletions
diff --git a/MatrixRoomUtils.Web/Pages/MediaLocator.razor b/MatrixRoomUtils.Web/Pages/MediaLocator.razor
new file mode 100644
index 0000000..cd244ef
--- /dev/null
+++ b/MatrixRoomUtils.Web/Pages/MediaLocator.razor
@@ -0,0 +1,36 @@
+@page "/MediaLocator"
+<h3>MediaLocator</h3>
+<hr/>
+
+<span>MXC URL: </span>
+<input type="text" @bind="mxcUrl" />
+<button @onclick="executeSearch">Search</button>
+
+
+@code {
+    string mxcUrl { get; set; }
+    List<string> successResults = new List<string>();
+    List<string> errorResults = new List<string>();
+    List<string> homeservers = new List<string>();
+
+    protected override async Task OnInitializedAsync()
+    {
+        base.OnInitializedAsync();
+        
+    }
+
+    async Task executeSearch()
+    {
+        var client = new HttpClient();
+        var response = await client.GetAsync($"https://matrix.org/_matrix/media/r0/identicon/{mxcUrl}");
+        if (response.IsSuccessStatusCode)
+        {
+            successResults.Add(mxcUrl);
+        }
+        else
+        {
+            errorResults.Add(mxcUrl);
+        }
+    }
+
+}
\ No newline at end of file