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
//! Searchable model trait
//!
//! Defines which fields are searchable and the default ordering for a model.
use OrderingField;
use ;
/// Trait for models that support search and ordering
///
/// Implement this trait to define which fields can be searched
/// and what the default ordering should be.
///
/// # Examples
///
/// ```rust
/// # use reinhardt_rest::filters::{SearchableModel, field_extensions::FieldOrderingExt, OrderingField};
/// # use reinhardt_db::orm::{Model, Field, FieldSelector};
/// #
/// # #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
/// # struct Post {
/// # id: i64,
/// # title: String,
/// # content: String,
/// # created_at: String,
/// # }
/// #
/// # #[derive(Clone)]
/// # struct PostFields;
/// # impl FieldSelector for PostFields {
/// # fn with_alias(self, _alias: &str) -> Self { self }
/// # }
/// #
/// # impl Model for Post {
/// # type PrimaryKey = i64;
/// # type Fields = PostFields;
/// # fn table_name() -> &'static str { "posts" }
/// # fn new_fields() -> Self::Fields { PostFields }
/// # fn primary_key(&self) -> Option<Self::PrimaryKey> { Some(self.id) }
/// # fn set_primary_key(&mut self, value: Self::PrimaryKey) { self.id = value; }
/// # }
/// #
/// impl SearchableModel for Post {
/// fn searchable_fields() -> Vec<Field<Self, String>> {
/// vec![
/// Field::new(vec!["title"]),
/// Field::new(vec!["content"]),
/// ]
/// }
///
/// fn default_ordering() -> Vec<OrderingField<Self>> {
/// vec![Field::<Self, String>::new(vec!["created_at"]).desc()]
/// }
/// }
///
/// // Verify the implementation
/// let fields = Post::searchable_fields();
/// assert_eq!(fields.len(), 2);
/// let ordering = Post::default_ordering();
/// assert_eq!(ordering.len(), 1);
/// ```