about summary refs log tree commit diff
path: root/Tests/LibMatrix.HomeserverEmulator/Controllers/Users/FilterController.cs
blob: ecbccd4e0beb3e5b874f86b8704b08ff1cf9a837 (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
using System.Text.Json.Nodes;
using ArcaneLibs.Extensions;
using LibMatrix.EventTypes.Spec.State;
using LibMatrix.Filters;
using LibMatrix.HomeserverEmulator.Services;
using LibMatrix.Responses;
using Microsoft.AspNetCore.Mvc;

namespace LibMatrix.HomeserverEmulator.Controllers;

[ApiController]
[Route("/_matrix/client/{version}/")]
public class FilterController(ILogger<FilterController> logger, TokenService tokenService, UserStore userStore, RoomStore roomStore) : ControllerBase {
    [HttpPost("user/{mxid}/filter")]
    public async Task<object> CreateFilter(string mxid, [FromBody] SyncFilter filter) {
        var token = tokenService.GetAccessToken(HttpContext);
        if (token is null)
            throw new MatrixException() {
                ErrorCode = "M_UNAUTHORIZED",
                Error = "No token passed."
            };

        var user = await userStore.GetUserByToken(token, false);
        if (user is null)
            throw new MatrixException() {
                ErrorCode = "M_UNAUTHORIZED",
                Error = "Invalid token."
            };
        var filterId = Guid.NewGuid().ToString();
        user.Filters[filterId] = filter;
        return new {
            filter_id = filterId
        };
    }
    
    [HttpGet("user/{mxid}/filter/{filterId}")]
    public async Task<SyncFilter> GetFilter(string mxid, string filterId) {
        var token = tokenService.GetAccessToken(HttpContext);
        if (token is null)
            throw new MatrixException() {
                ErrorCode = "M_UNAUTHORIZED",
                Error = "No token passed."
            };

        var user = await userStore.GetUserByToken(token, false);
        if (user is null)
            throw new MatrixException() {
                ErrorCode = "M_UNAUTHORIZED",
                Error = "Invalid token."
            };
        if (!user.Filters.ContainsKey(filterId))
            throw new MatrixException() {
                ErrorCode = "M_NOT_FOUND",
                Error = "Filter not found."
            };
        return user.Filters[filterId];
    }
}