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
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
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
//! # Russenger Library
//!
//! The Russenger library provides a set of modules and macros to help you build bots using the Russenger bot framework.
//!
//! ## Modules
//!
//! - `cli`: This module provides command-line interface utilities.
//! - `core`: This module contains the core functionalities of the Russenger bot framework.
//! - `prelude`: This module re-exports important traits and structs for convenience.
//! - `query`: This module provides utilities for handling queries.
//! - `response_models`: This module contains models for different types of responses.
//!
//! ## Macros
//!
//! - `action`: This proc macro is used to define an action.
//! - `russenger::actions!`: This macro is used to register the actions for the main application.
//!
//! ## New Features
//!
//! - **Custom Models**: Developers can now use their own models with the Russenger library. This is made possible by the integration with rusql_alchemy, an ORM for sqlx. This means that models are defined in Rust code, eliminating the need to write SQL queries.
//!
//! ## Examples
//!
//! Creating a new action that sends a greeting message when the user input is "Hello":
//!
//! ```rust
//! use russenger::prelude::*;
//!
//! #[derive(FromRow, Clone, Model)]
//! pub struct Register {
//! #[field(primary_key = true, auto_increment = true)]
//! pub id: Integer,
//! #[field(foreign_key = "RussengerUser.facebook_user_id", unique = true)]
//! pub user_id: String,
//! #[field(size = 30, unique = true)]
//! pub username: String,
//! }
//!
//! async fn index(res: Res, req: Req) -> Result<()> {
//! // Send a greeting message to the user
//! res.send(TextModel::new(&req.user, "Hello!")).await?;
//!
//! // Check if the user is registered
//! if let Some(user_register) = Register::get(kwargs!(user_id = req.user), &req.query.conn).await {
//! // If the user is registered, send a personalized greeting message
//! res.send(TextModel::new(&req.user, &format!("Hello {}", user_register.username)))
//! .await?;
//! } else {
//! // If the user is not registered, ask for their name
//! res.send(TextModel::new(&req.user, "What is your name: "))
//! .await?;
//! // Set the next action to SignUp
//! res.redirect("/signup").await?;
//! return Ok(());
//! }
//!
//! // If the user is registered, set the next action to GetUserInput
//! res.redirect("/get_user_input").await?;
//!
//! Ok(())
//! }
//!
//! async fn signup(res: Res, req: Req) -> Result<()> {
//! // Get the username from the user input
//! let username: String = req.data.get_value()?;
//!
//! // Try to create a new Register record for the user
//! let message = if Register::create(kwargs!(user_id = req.user, username = username), &req.query.conn).await {
//! "Register success"
//! } else {
//! "Register failed"
//! };
//!
//! // Send a message to the user indicating whether the registration was successful
//! res.send(TextModel::new(&req.user, message)).await?;
//!
//! // Go back to the index action
//! index(res, req).await?;
//!
//! Ok(())
//! }
//!
//! async fn get_user_input(res: Res, req: Req) -> Result<()> {
//! // Define a closure that creates a new Payload for a given value
//! let payload = |value: &str| Payload::new("/next_action", Some(Data::new(value)));
//!
//! // Create a QuickReplyModel with two options: "blue" and "red"
//! let quick_replies: Vec<QuickReply> = vec![
//! QuickReply::new("blue", None, payload("blue")),
//! QuickReply::new("red", None, payload("red")),
//! ];
//! let quick_reply_model = QuickReplyModel::new(&req.user, "choose one color", quick_replies);
//!
//! // Send the QuickReplyModel to the user
//! res.send(quick_reply_model).await?;
//!
//! Ok(())
//! }
//!
//! async fn next_action(res: Res, req: Req) -> Result<()> {
//! // Get the color chosen by the user
//! let color: String = req.data.get_value()?;
//!
//! // Send a message to the user confirming their choice
//! res.send(TextModel::new(&req.user, &color)).await?;
//!
//! // Go back to the index action
//! index(res, req).await?;
//!
//! Ok(())
//! }
//!
//! #[tokio::main]
//! async fn main() -> Result<()> {
//! App::init().await?
//! .attach(
//! Router::new()
//! .add("/", index)
//! .add("/signup", signup)
//! .add("/get_user_input", get_user_input)
//! .add("/next_action", next_action)
//! )
//! .launch()
//! .await?;
//! Ok(())
//! }
//! ```
//!
//! These examples demonstrate how to define an action, use custom models, and register actions for the main application.
pub use ;
pub use anyhow;
use Context;
pub use rusql_alchemy;
use Result;
use Query;
use actix_files as fs;
use ;
use Mutex;
use ;
/// # App State
///
/// This module contains the `AppState` struct which is used to store the state of the application.
///
/// # Fields
///
/// * `query`: A `Query` that represents the query made by the user.
async