about summary refs log tree commit diff
path: root/LibMatrix/Extensions/StringExtensions.cs
blob: 491fa779e7a99fd7620ec856f29f0d97f2f5e253 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
namespace LibMatrix.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}";
    // }
}