about summary refs log tree commit diff
path: root/Utilities/LibMatrix.HomeserverEmulator/Controllers/Media/MediaController.cs
blob: 7899adac4ad9d919e85789c87e9bf49ab664a8c1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
using System.Text.Json.Nodes;
using System.Text.RegularExpressions;
using ArcaneLibs.Collections;
using LibMatrix.HomeserverEmulator.Services;
using LibMatrix.Services;
using Microsoft.AspNetCore.Mvc;

namespace LibMatrix.HomeserverEmulator.Controllers.Media;

[ApiController]
[Route("/_matrix/media/{version}/")]
public class MediaController(
    ILogger<MediaController> logger,
    TokenService tokenService,
    UserStore userStore,
    HSEConfiguration cfg,
    HomeserverResolverService hsResolver,
    MediaStore mediaStore)
    : ControllerBase {
    [HttpPost("upload")]
    public async Task<object> UploadMedia([FromHeader(Name = "Content-Type")] string ContentType, [FromQuery] string filename, [FromBody] Stream file) {
        var token = tokenService.GetAccessTokenOrNull(HttpContext);
        if (token == null)
            throw new MatrixException() {
                ErrorCode = "M_MISSING_TOKEN",
                Error = "Missing token"
            };

        var user = await userStore.GetUserByToken(token);
        if (user == null)
            throw new MatrixException() {
                ErrorCode = "M_UNKNOWN_TOKEN",
                Error = "No such user"
            };

        var mediaId = Guid.NewGuid().ToString();
        var media = new {
            content_uri = $"mxc://{tokenService.GenerateServerName(HttpContext)}/{mediaId}"
        };
        return media;
    }

    [HttpGet("download/{serverName}/{mediaId}")]
    public async Task DownloadMedia(string serverName, string mediaId) {
        var stream = await DownloadRemoteMedia(serverName, mediaId);
        await stream.CopyToAsync(Response.Body);
    }

    [HttpGet("thumbnail/{serverName}/{mediaId}")]
    public async Task DownloadThumbnail(string serverName, string mediaId) {
        await DownloadMedia(serverName, mediaId);
    }

    [HttpGet("preview_url")]
    public async Task<JsonObject> GetPreviewUrl([FromQuery] string url) {
        JsonObject data = new();

        using var hc = new HttpClient();
        using var response = await hc.GetAsync(url);
        var doc = await response.Content.ReadAsStringAsync();
        var match = Regex.Match(doc, "<meta property=\"(.*?)\" content=\"(.*?)\"");

        while (match.Success) {
            data[match.Groups[1].Value] = match.Groups[2].Value;
            match = match.NextMatch();
        }

        return data;
    }

    private async Task<Stream> DownloadRemoteMedia(string serverName, string mediaId) {
        if (cfg.StoreData) {
            var path = Path.Combine(cfg.DataStoragePath, "media", serverName, mediaId);
            if (!System.IO.File.Exists(path)) {
                var mediaUrl = await hsResolver.ResolveMediaUri(serverName, $"mxc://{serverName}/{mediaId}");
                if (mediaUrl is null)
                    throw new MatrixException() {
                        ErrorCode = "M_NOT_FOUND",
                        Error = "Media not found"
                    };
                using var client = new HttpClient();
                var stream = await client.GetStreamAsync(mediaUrl);
                await using var fs = System.IO.File.Create(path);
                await stream.CopyToAsync(fs);
            }
            return new FileStream(path, FileMode.Open);
        }
        else {
            var mediaUrl = await hsResolver.ResolveMediaUri(serverName, $"mxc://{serverName}/{mediaId}");
            if (mediaUrl is null)
                throw new MatrixException() {
                    ErrorCode = "M_NOT_FOUND",
                    Error = "Media not found"
                };
            using var client = new HttpClient();
            return await client.GetStreamAsync(mediaUrl);
        }
    }
}