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
use crate::model::content::{ContentData, ContentModel};
use crate::model::project::{ProjectData, ProjectModel};
use crate::model::schema::{SchemaData, SchemaModel};
use c3p0::*;
use lightspeed_core::error::LightSpeedError;

pub mod pg;

#[async_trait::async_trait]
pub trait CmsRepositoryManager: Clone + Send + Sync {
    type Conn: SqlConnectionAsync;
    type C3P0: C3p0PoolAsync<Conn = Self::Conn>;
    type ContentRepo: ContentRepository<Conn = Self::Conn>;
    type ProjectRepo: ProjectRepository<Conn = Self::Conn>;
    type SchemaRepo: SchemaRepository<Conn = Self::Conn>;

    fn c3p0(&self) -> &Self::C3P0;
    async fn start(&self) -> Result<(), LightSpeedError>;

    fn content_repo(&self, qualified_table_name: &str) -> Self::ContentRepo;
    fn project_repo(&self) -> Self::ProjectRepo;
    fn schema_repo(&self) -> Self::SchemaRepo;
}

#[async_trait::async_trait]
pub trait ProjectRepository: Clone + Send + Sync {
    type Conn;

    async fn fetch_by_id(
        &self,
        conn: &mut Self::Conn,
        id: i64,
    ) -> Result<ProjectModel, LightSpeedError>;

    async fn exists_by_name(
        &self,
        conn: &mut Self::Conn,
        name: &str,
    ) -> Result<bool, LightSpeedError>;

    async fn save(
        &self,
        conn: &mut Self::Conn,
        model: NewModel<ProjectData>,
    ) -> Result<ProjectModel, LightSpeedError>;

    async fn update(
        &self,
        conn: &mut Self::Conn,
        model: ProjectModel,
    ) -> Result<ProjectModel, LightSpeedError>;

    async fn delete(
        &self,
        conn: &mut Self::Conn,
        model: ProjectModel,
    ) -> Result<ProjectModel, LightSpeedError>;
}

#[async_trait::async_trait]
pub trait SchemaRepository: Clone + Send + Sync {
    type Conn;

    async fn fetch_by_id(
        &self,
        conn: &mut Self::Conn,
        id: i64,
    ) -> Result<SchemaModel, LightSpeedError>;

    async fn exists_by_name_and_project_id(
        &self,
        conn: &mut Self::Conn,
        name: &str,
        project_id: i64,
    ) -> Result<bool, LightSpeedError>;

    async fn save(
        &self,
        conn: &mut Self::Conn,
        model: NewModel<SchemaData>,
    ) -> Result<SchemaModel, LightSpeedError>;

    async fn update(
        &self,
        conn: &mut Self::Conn,
        model: SchemaModel,
    ) -> Result<SchemaModel, LightSpeedError>;

    async fn delete(
        &self,
        conn: &mut Self::Conn,
        model: SchemaModel,
    ) -> Result<SchemaModel, LightSpeedError>;

    async fn delete_by_project_id(
        &self,
        conn: &mut Self::Conn,
        project_id: i64,
    ) -> Result<u64, LightSpeedError>;
}

#[async_trait::async_trait]
pub trait ContentRepository: Clone + Send + Sync {
    type Conn;

    async fn create_table(&self, conn: &mut Self::Conn) -> Result<(), LightSpeedError>;

    async fn drop_table(&self, conn: &mut Self::Conn) -> Result<(), LightSpeedError>;

    async fn count_all(&self, conn: &mut Self::Conn) -> Result<u64, LightSpeedError>;

    async fn count_all_by_field_value(
        &self,
        conn: &mut Self::Conn,
        field_name: &str,
        field_value: &str,
    ) -> Result<u64, LightSpeedError>;

    async fn create_unique_constraint(
        &self,
        conn: &mut Self::Conn,
        index_name: &str,
        field_name: &str,
    ) -> Result<(), LightSpeedError>;

    async fn drop_unique_constraint(
        &self,
        conn: &mut Self::Conn,
        index_name: &str,
    ) -> Result<(), LightSpeedError>;

    async fn fetch_by_id(
        &self,
        conn: &mut Self::Conn,
        id: i64,
    ) -> Result<ContentModel, LightSpeedError>;

    async fn save(
        &self,
        conn: &mut Self::Conn,
        model: NewModel<ContentData>,
    ) -> Result<ContentModel, LightSpeedError>;

    async fn update(
        &self,
        conn: &mut Self::Conn,
        model: ContentModel,
    ) -> Result<ContentModel, LightSpeedError>;

    async fn delete(
        &self,
        conn: &mut Self::Conn,
        model: ContentModel,
    ) -> Result<ContentModel, LightSpeedError>;
}