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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
// Copyright 2024 New Vector Ltd.
// Copyright 2022-2024 The Matrix.org Foundation C.I.C.
//
// SPDX-License-Identifier: AGPL-3.0-only
// Please see LICENSE in the repository root for full details.

use std::{borrow::Cow, ops::Deref};

use thiserror::Error;

#[derive(Clone, PartialEq, Eq)]
pub struct RawJwt<'a> {
    inner: Cow<'a, str>,
    first_dot: usize,
    second_dot: usize,
}

impl RawJwt<'static> {
    pub(super) fn new(inner: String, first_dot: usize, second_dot: usize) -> Self {
        Self {
            inner: inner.into(),
            first_dot,
            second_dot,
        }
    }
}

impl<'a> std::fmt::Display for RawJwt<'a> {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(f, "{}", self.inner)
    }
}

impl<'a> RawJwt<'a> {
    pub fn header(&'a self) -> &'a str {
        &self.inner[..self.first_dot]
    }

    pub fn payload(&'a self) -> &'a str {
        &self.inner[self.first_dot + 1..self.second_dot]
    }

    pub fn signature(&'a self) -> &'a str {
        &self.inner[self.second_dot + 1..]
    }

    pub fn signed_part(&'a self) -> &'a str {
        &self.inner[..self.second_dot]
    }

    pub fn into_owned(self) -> RawJwt<'static> {
        RawJwt {
            inner: self.inner.into_owned().into(),
            first_dot: self.first_dot,
            second_dot: self.second_dot,
        }
    }
}

impl<'a> Deref for RawJwt<'a> {
    type Target = str;

    fn deref(&self) -> &Self::Target {
        &self.inner
    }
}

#[derive(Debug, Error)]
pub enum DecodeError {
    #[error("no dots found in JWT")]
    NoDots,

    #[error("only one dot found in JWT")]
    OnlyOneDot,

    #[error("too many dots in JWT")]
    TooManyDots,
}

impl<'a> From<RawJwt<'a>> for String {
    fn from(val: RawJwt<'a>) -> Self {
        val.inner.into()
    }
}

impl<'a> TryFrom<&'a str> for RawJwt<'a> {
    type Error = DecodeError;
    fn try_from(value: &'a str) -> Result<Self, Self::Error> {
        let mut indices = value
            .char_indices()
            .filter_map(|(idx, c)| (c == '.').then_some(idx));

        let first_dot = indices.next().ok_or(DecodeError::NoDots)?;
        let second_dot = indices.next().ok_or(DecodeError::OnlyOneDot)?;

        if indices.next().is_some() {
            return Err(DecodeError::TooManyDots);
        }

        Ok(Self {
            inner: value.into(),
            first_dot,
            second_dot,
        })
    }
}

impl TryFrom<String> for RawJwt<'static> {
    type Error = DecodeError;
    fn try_from(value: String) -> Result<Self, Self::Error> {
        let mut indices = value
            .char_indices()
            .filter_map(|(idx, c)| (c == '.').then_some(idx));

        let first_dot = indices.next().ok_or(DecodeError::NoDots)?;
        let second_dot = indices.next().ok_or(DecodeError::OnlyOneDot)?;

        if indices.next().is_some() {
            return Err(DecodeError::TooManyDots);
        }

        Ok(Self {
            inner: value.into(),
            first_dot,
            second_dot,
        })
    }
}