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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
//! 加密字符串

use std::ops::Deref;

use crate::{rand::RandList, URLCode, ORIGIN_KEY};

/// 加密编码结果
#[derive(Clone, Debug, Default)]
pub struct EncodeResult {
    /// 加密密钥
    pub key: String,
    /// 加密结果
    pub val: String,
}

impl EncodeResult {
    pub fn set_kv(key: String, val: String) -> Self {
        Self { key, val }
    }
}

pub trait EncodeFrom<T> {
    fn encode_from(&self, _: T) -> EncodeResult;
}
#[derive(Clone, Debug)]
pub struct Encode<'a> {
    key: &'a str,
    _result: EncodeResult,
}

impl Deref for Encode<'_> {
    type Target = EncodeResult;

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

impl Default for Encode<'_> {
    fn default() -> Self {
        Self {
            key: ORIGIN_KEY,
            _result: EncodeResult::default(),
        }
    }
}

impl<'a> Encode<'a> {
    pub fn new_key(key: &'a str) -> Self {
        Self {
            key,
            ..Self::default()
        }
    }

    pub fn new() -> Self {
        Self::default()
    }
}

impl EncodeFrom<&str> for Encode<'_> {
    fn encode_from(&self, s: &str) -> EncodeResult {
        let mut cipher = String::new();
        let origin_key = RandList::from(self.key).shuffle();

        URLCode::from(s)
            .vec_ref()
            .into_iter()
            .enumerate()
            .for_each(|(i, ref s)| {
                cipher.push_str(
                    origin_key
                        .get(
                            (i + origin_key
                                .get_index(s)
                                .expect("Can not find index at Encode"))
                                % origin_key.len(),
                        )
                        .unwrap(),
                );
            });

        EncodeResult {
            key: origin_key.join(""),
            val: cipher,
        }
    }
}

impl EncodeFrom<&String> for Encode<'_> {
    fn encode_from(&self, s: &String) -> EncodeResult {
        let mut cipher = String::new();
        let origin_key = RandList::from(self.key).shuffle();

        URLCode::from(s.clone())
            .vec_ref()
            .into_iter()
            .enumerate()
            .for_each(|(i, ref s)| {
                cipher.push_str(
                    origin_key
                        .get(
                            (i + origin_key.get_index(s).expect("Can not find index"))
                                % origin_key.len(),
                        )
                        .unwrap(),
                );
            });

        EncodeResult {
            key: origin_key.join(""),
            val: cipher,
        }
    }
}

impl EncodeFrom<String> for Encode<'_> {
    fn encode_from(&self, s: String) -> EncodeResult {
        let mut cipher = String::new();
        let origin_key = RandList::from(self.key).shuffle();

        URLCode::from(s)
            .vec_ref()
            .into_iter()
            .enumerate()
            .for_each(|(i, ref s)| {
                cipher.push_str(
                    origin_key
                        .get(
                            (i + origin_key.get_index(s).expect("Can not find index"))
                                % origin_key.len(),
                        )
                        .unwrap(),
                );
            });

        EncodeResult {
            key: origin_key.join(""),
            val: cipher,
        }
    }
}

impl EncodeFrom<URLCode> for Encode<'_> {
    fn encode_from(&self, s: URLCode) -> EncodeResult {
        let mut cipher = String::new();
        let origin_key = RandList::from(self.key).shuffle();

        s.vec_ref().into_iter().enumerate().for_each(|(i, ref s)| {
            cipher.push_str(
                origin_key
                    .get(
                        (i + origin_key.get_index(s).expect("Can not find index"))
                            % origin_key.len(),
                    )
                    .unwrap(),
            );
        });

        EncodeResult {
            key: origin_key.join(""),
            val: cipher,
        }
    }
}