about summary refs log tree commit diff
path: root/MatrixRoomUtils.Core/Extensions/StringExtensions.cs
blob: b81d59fcf12afe3d978d7949d29bd44bf087ff4f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
namespace MatrixRoomUtils.Core.Extensions;

public static class StringExtensions {
    // public static async Task<string> GetMediaUrl(this string MxcUrl)
    // {
    //     //MxcUrl: mxc://rory.gay/ocRVanZoUTCcifcVNwXgbtTg
    //     //target: https://matrix.rory.gay/_matrix/media/v3/download/rory.gay/ocRVanZoUTCcifcVNwXgbtTg
    //     
    //     var server = MxcUrl.Split('/')[2];
    //     var mediaId = MxcUrl.Split('/')[3];
    //     return $"{(await new RemoteHomeServer(server).Configure()).FullHomeServerDomain}/_matrix/media/v3/download/{server}/{mediaId}";
    // }
}