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
|
use std::{
borrow::Cow,
fmt,
};
use anyhow::{
Result,
bail,
};
use async_std::sync::{
Arc,
Mutex,
};
use chrono::{
DateTime,
FixedOffset,
Local,
};
use sqlx::{
Postgres,
Row,
postgres::PgPoolOptions,
pool::PoolConnection,
};
#[derive(sqlx::FromRow, Debug)]
pub struct List {
pub source_id: i32,
pub channel: String,
pub enabled: bool,
pub url: String,
pub iv_hash: Option<String>,
pub url_re: Option<String>,
}
impl fmt::Display for List {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> Result<(), fmt::Error> {
write!(f, "#{} \\*ļøā£ `{}` {}\nš `{}`", self.source_id, self.channel,
match self.enabled {
true => "š enabled",
false => "ā disabled",
}, self.url)?;
if let Some(iv_hash) = &self.iv_hash {
write!(f, "\nIV: `{iv_hash}`")?;
|
<
<
<
<
>
>
>
>
>
|
|
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
|
use std::{
borrow::Cow,
fmt,
};
use async_std::sync::{
Arc,
Mutex,
};
use chrono::{
DateTime,
FixedOffset,
Local,
};
use sqlx::{
Postgres,
Row,
postgres::PgPoolOptions,
pool::PoolConnection,
};
use stacked_errors::{
Result,
StackableErr,
bail,
};
#[derive(sqlx::FromRow, Debug)]
pub struct List {
pub source_id: i32,
pub channel: String,
pub enabled: bool,
pub url: String,
pub iv_hash: Option<String>,
pub url_re: Option<String>,
}
impl fmt::Display for List {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> std::result::Result<(), fmt::Error> {
write!(f, "#{} \\*ļøā£ `{}` {}\nš `{}`", self.source_id, self.channel,
match self.enabled {
true => "š enabled",
false => "ā disabled",
}, self.url)?;
if let Some(iv_hash) = &self.iv_hash {
write!(f, "\nIV: `{iv_hash}`")?;
|
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
|
impl Db {
pub fn new (pguri: &str) -> Result<Db> {
Ok(Db (
Arc::new(Mutex::new(PgPoolOptions::new()
.max_connections(5)
.acquire_timeout(std::time::Duration::new(300, 0))
.idle_timeout(std::time::Duration::new(60, 0))
.connect_lazy(pguri)?)),
))
}
pub async fn begin(&self) -> Result<Conn> {
let pool = self.0.lock_arc().await;
let conn = Conn ( pool.acquire().await? );
Ok(conn)
}
}
pub struct Conn (
PoolConnection<Postgres>,
);
impl Conn {
pub async fn add_post (&mut self, source_id: i32, date: &DateTime<FixedOffset>, post_url: &str) -> Result<()> {
sqlx::query("insert into rsstg_post (source_id, posted, url) values ($1, $2, $3);")
.bind(source_id)
.bind(date)
.bind(post_url)
.execute(&mut *self.0).await?;
Ok(())
}
pub async fn clean <I> (&mut self, source_id: i32, owner: I) -> Result<Cow<'_, str>>
where I: Into<i64> {
match sqlx::query("delete from rsstg_post p using rsstg_source s where p.source_id = $1 and owner = $2 and p.source_id = s.source_id;")
.bind(source_id)
.bind(owner.into())
.execute(&mut *self.0).await?.rows_affected() {
0 => { Ok("No data found found.".into()) },
x => { Ok(format!("{x} posts purged.").into()) },
}
}
pub async fn delete <I> (&mut self, source_id: i32, owner: I) -> Result<Cow<'_, str>>
where I: Into<i64> {
match sqlx::query("delete from rsstg_source where source_id = $1 and owner = $2;")
.bind(source_id)
.bind(owner.into())
.execute(&mut *self.0).await?.rows_affected() {
0 => { Ok("No data found found.".into()) },
x => { Ok(format!("{} sources removed.", x).into()) },
}
}
pub async fn disable <I> (&mut self, source_id: i32, owner: I) -> Result<&str>
where I: Into<i64> {
match sqlx::query("update rsstg_source set enabled = false where source_id = $1 and owner = $2")
.bind(source_id)
.bind(owner.into())
.execute(&mut *self.0).await?.rows_affected() {
1 => { Ok("Source disabled.") },
0 => { Ok("Source not found.") },
_ => { bail!("Database error.") },
}
}
pub async fn enable <I> (&mut self, source_id: i32, owner: I) -> Result<&str>
where I: Into<i64> {
match sqlx::query("update rsstg_source set enabled = true where source_id = $1 and owner = $2")
.bind(source_id)
.bind(owner.into())
.execute(&mut *self.0).await?.rows_affected() {
1 => { Ok("Source enabled.") },
0 => { Ok("Source not found.") },
_ => { bail!("Database error.") },
}
}
pub async fn exists <I> (&mut self, post_url: &str, id: I) -> Result<Option<bool>>
where I: Into<i64> {
let row = sqlx::query("select exists(select true from rsstg_post where url = $1 and source_id = $2) as exists;")
.bind(post_url)
.bind(id.into())
.fetch_one(&mut *self.0).await?;
let exists: Option<bool> = row.try_get("exists")?;
Ok(exists)
}
pub async fn get_queue (&mut self) -> Result<Vec<Queue>> {
let block: Vec<Queue> = sqlx::query_as("select source_id, next_fetch, owner from rsstg_order natural left join rsstg_source where next_fetch < now() + interval '1 minute';")
.fetch_all(&mut *self.0).await?;
Ok(block)
}
pub async fn get_list <I> (&mut self, owner: I) -> Result<Vec<List>>
where I: Into<i64> {
let source: Vec<List> = sqlx::query_as("select source_id, channel, enabled, url, iv_hash, url_re from rsstg_source where owner = $1 order by source_id")
.bind(owner.into())
.fetch_all(&mut *self.0).await?;
Ok(source)
}
pub async fn get_one <I> (&mut self, owner: I, id: i32) -> Result<Option<List>>
where I: Into<i64> {
let source: Option<List> = sqlx::query_as("select source_id, channel, enabled, url, iv_hash, url_re from rsstg_source where owner = $1 and source_id = $2")
.bind(owner.into())
.bind(id)
.fetch_optional(&mut *self.0).await?;
Ok(source)
}
pub async fn get_source <I> (&mut self, id: i32, owner: I) -> Result<Source>
where I: Into<i64> {
let source: Source = sqlx::query_as("select channel_id, url, iv_hash, owner, url_re from rsstg_source where source_id = $1 and owner = $2")
.bind(id)
.bind(owner.into())
.fetch_one(&mut *self.0).await?;
Ok(source)
}
pub async fn set_scrape <I> (&mut self, id: I) -> Result<()>
where I: Into<i64> {
sqlx::query("update rsstg_source set last_scrape = now() where source_id = $1;")
.bind(id.into())
.execute(&mut *self.0).await?;
Ok(())
}
pub async fn update <I> (&mut self, update: Option<i32>, channel: &str, channel_id: i64, url: &str, iv_hash: Option<&str>, url_re: Option<&str>, owner: I) -> Result<&str>
where I: Into<i64> {
match match update {
Some(id) => {
|
|
>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
|
impl Db {
pub fn new (pguri: &str) -> Result<Db> {
Ok(Db (
Arc::new(Mutex::new(PgPoolOptions::new()
.max_connections(5)
.acquire_timeout(std::time::Duration::new(300, 0))
.idle_timeout(std::time::Duration::new(60, 0))
.connect_lazy(pguri)
.stack()?)),
))
}
pub async fn begin(&self) -> Result<Conn> {
let pool = self.0.lock_arc().await;
let conn = Conn ( pool.acquire().await.stack()? );
Ok(conn)
}
}
pub struct Conn (
PoolConnection<Postgres>,
);
impl Conn {
pub async fn add_post (&mut self, source_id: i32, date: &DateTime<FixedOffset>, post_url: &str) -> Result<()> {
sqlx::query("insert into rsstg_post (source_id, posted, url) values ($1, $2, $3);")
.bind(source_id)
.bind(date)
.bind(post_url)
.execute(&mut *self.0).await.stack()?;
Ok(())
}
pub async fn clean <I> (&mut self, source_id: i32, owner: I) -> Result<Cow<'_, str>>
where I: Into<i64> {
match sqlx::query("delete from rsstg_post p using rsstg_source s where p.source_id = $1 and owner = $2 and p.source_id = s.source_id;")
.bind(source_id)
.bind(owner.into())
.execute(&mut *self.0).await.stack()?.rows_affected() {
0 => { Ok("No data found found.".into()) },
x => { Ok(format!("{x} posts purged.").into()) },
}
}
pub async fn delete <I> (&mut self, source_id: i32, owner: I) -> Result<Cow<'_, str>>
where I: Into<i64> {
match sqlx::query("delete from rsstg_source where source_id = $1 and owner = $2;")
.bind(source_id)
.bind(owner.into())
.execute(&mut *self.0).await.stack()?.rows_affected() {
0 => { Ok("No data found found.".into()) },
x => { Ok(format!("{x} sources removed.").into()) },
}
}
pub async fn disable <I> (&mut self, source_id: i32, owner: I) -> Result<&str>
where I: Into<i64> {
match sqlx::query("update rsstg_source set enabled = false where source_id = $1 and owner = $2")
.bind(source_id)
.bind(owner.into())
.execute(&mut *self.0).await.stack()?.rows_affected() {
1 => { Ok("Source disabled.") },
0 => { Ok("Source not found.") },
_ => { bail!("Database error.") },
}
}
pub async fn enable <I> (&mut self, source_id: i32, owner: I) -> Result<&str>
where I: Into<i64> {
match sqlx::query("update rsstg_source set enabled = true where source_id = $1 and owner = $2")
.bind(source_id)
.bind(owner.into())
.execute(&mut *self.0).await.stack()?.rows_affected() {
1 => { Ok("Source enabled.") },
0 => { Ok("Source not found.") },
_ => { bail!("Database error.") },
}
}
pub async fn exists <I> (&mut self, post_url: &str, id: I) -> Result<Option<bool>>
where I: Into<i64> {
let row = sqlx::query("select exists(select true from rsstg_post where url = $1 and source_id = $2) as exists;")
.bind(post_url)
.bind(id.into())
.fetch_one(&mut *self.0).await.stack()?;
let exists: Option<bool> = row.try_get("exists").stack()?;
Ok(exists)
}
pub async fn get_queue (&mut self) -> Result<Vec<Queue>> {
let block: Vec<Queue> = sqlx::query_as("select source_id, next_fetch, owner from rsstg_order natural left join rsstg_source where next_fetch < now() + interval '1 minute';")
.fetch_all(&mut *self.0).await.stack()?;
Ok(block)
}
pub async fn get_list <I> (&mut self, owner: I) -> Result<Vec<List>>
where I: Into<i64> {
let source: Vec<List> = sqlx::query_as("select source_id, channel, enabled, url, iv_hash, url_re from rsstg_source where owner = $1 order by source_id")
.bind(owner.into())
.fetch_all(&mut *self.0).await.stack()?;
Ok(source)
}
pub async fn get_one <I> (&mut self, owner: I, id: i32) -> Result<Option<List>>
where I: Into<i64> {
let source: Option<List> = sqlx::query_as("select source_id, channel, enabled, url, iv_hash, url_re from rsstg_source where owner = $1 and source_id = $2")
.bind(owner.into())
.bind(id)
.fetch_optional(&mut *self.0).await.stack()?;
Ok(source)
}
pub async fn get_source <I> (&mut self, id: i32, owner: I) -> Result<Source>
where I: Into<i64> {
let source: Source = sqlx::query_as("select channel_id, url, iv_hash, owner, url_re from rsstg_source where source_id = $1 and owner = $2")
.bind(id)
.bind(owner.into())
.fetch_one(&mut *self.0).await.stack()?;
Ok(source)
}
pub async fn set_scrape <I> (&mut self, id: I) -> Result<()>
where I: Into<i64> {
sqlx::query("update rsstg_source set last_scrape = now() where source_id = $1;")
.bind(id.into())
.execute(&mut *self.0).await.stack()?;
Ok(())
}
pub async fn update <I> (&mut self, update: Option<i32>, channel: &str, channel_id: i64, url: &str, iv_hash: Option<&str>, url_re: Option<&str>, owner: I) -> Result<&str>
where I: Into<i64> {
match match update {
Some(id) => {
|