269 lines
7.3 KiB
Rust
269 lines
7.3 KiB
Rust
use crate::{
|
|
ActiveModelTrait, ColumnTrait, EntityName, EntityTrait, IntoActiveModel, Iterable,
|
|
PrimaryKeyTrait, QueryTrait,
|
|
};
|
|
use core::marker::PhantomData;
|
|
use sea_query::{Expr, InsertStatement, ValueTuple};
|
|
|
|
#[derive(Debug)]
|
|
pub struct Insert<A>
|
|
where
|
|
A: ActiveModelTrait,
|
|
{
|
|
pub(crate) query: InsertStatement,
|
|
pub(crate) columns: Vec<bool>,
|
|
pub(crate) primary_key: Option<ValueTuple>,
|
|
pub(crate) model: PhantomData<A>,
|
|
}
|
|
|
|
impl<A> Default for Insert<A>
|
|
where
|
|
A: ActiveModelTrait,
|
|
{
|
|
fn default() -> Self {
|
|
Self::new()
|
|
}
|
|
}
|
|
|
|
impl<A> Insert<A>
|
|
where
|
|
A: ActiveModelTrait,
|
|
{
|
|
pub(crate) fn new() -> Self {
|
|
Self {
|
|
query: InsertStatement::new()
|
|
.into_table(A::Entity::default().table_ref())
|
|
.to_owned(),
|
|
columns: Vec::new(),
|
|
primary_key: None,
|
|
model: PhantomData,
|
|
}
|
|
}
|
|
|
|
/// Insert one Model or ActiveModel
|
|
///
|
|
/// Model
|
|
/// ```
|
|
/// use sea_orm::{entity::*, query::*, tests_cfg::cake, DbBackend};
|
|
///
|
|
/// assert_eq!(
|
|
/// Insert::one(cake::Model {
|
|
/// id: 1,
|
|
/// name: "Apple Pie".to_owned(),
|
|
/// })
|
|
/// .build(DbBackend::Postgres)
|
|
/// .to_string(),
|
|
/// r#"INSERT INTO "cake" ("id", "name") VALUES (1, 'Apple Pie')"#,
|
|
/// );
|
|
/// ```
|
|
/// ActiveModel
|
|
/// ```
|
|
/// use sea_orm::{entity::*, query::*, tests_cfg::cake, DbBackend};
|
|
///
|
|
/// assert_eq!(
|
|
/// Insert::one(cake::ActiveModel {
|
|
/// id: Unset(None),
|
|
/// name: Set("Apple Pie".to_owned()),
|
|
/// })
|
|
/// .build(DbBackend::Postgres)
|
|
/// .to_string(),
|
|
/// r#"INSERT INTO "cake" ("name") VALUES ('Apple Pie')"#,
|
|
/// );
|
|
/// ```
|
|
pub fn one<M>(m: M) -> Insert<A>
|
|
where
|
|
M: IntoActiveModel<A>,
|
|
{
|
|
Self::new().add(m)
|
|
}
|
|
|
|
/// Insert many Model or ActiveModel
|
|
///
|
|
/// ```
|
|
/// use sea_orm::{entity::*, query::*, tests_cfg::cake, DbBackend};
|
|
///
|
|
/// assert_eq!(
|
|
/// Insert::many(vec![
|
|
/// cake::Model {
|
|
/// id: 1,
|
|
/// name: "Apple Pie".to_owned(),
|
|
/// },
|
|
/// cake::Model {
|
|
/// id: 2,
|
|
/// name: "Orange Scone".to_owned(),
|
|
/// }
|
|
/// ])
|
|
/// .build(DbBackend::Postgres)
|
|
/// .to_string(),
|
|
/// r#"INSERT INTO "cake" ("id", "name") VALUES (1, 'Apple Pie'), (2, 'Orange Scone')"#,
|
|
/// );
|
|
/// ```
|
|
pub fn many<M, I>(models: I) -> Self
|
|
where
|
|
M: IntoActiveModel<A>,
|
|
I: IntoIterator<Item = M>,
|
|
{
|
|
Self::new().add_many(models)
|
|
}
|
|
|
|
#[allow(clippy::should_implement_trait)]
|
|
pub fn add<M>(mut self, m: M) -> Self
|
|
where
|
|
M: IntoActiveModel<A>,
|
|
{
|
|
let mut am: A = m.into_active_model();
|
|
self.primary_key =
|
|
if !<<A::Entity as EntityTrait>::PrimaryKey as PrimaryKeyTrait>::auto_increment() {
|
|
am.get_primary_key_value()
|
|
} else {
|
|
None
|
|
};
|
|
let mut columns = Vec::new();
|
|
let mut values = Vec::new();
|
|
let columns_empty = self.columns.is_empty();
|
|
for (idx, col) in <A::Entity as EntityTrait>::Column::iter().enumerate() {
|
|
let av = am.take(col);
|
|
let av_has_val = av.is_set() || av.is_unchanged();
|
|
let col_def = col.def();
|
|
let enum_name = col_def.get_column_type().get_enum_name();
|
|
|
|
if columns_empty {
|
|
self.columns.push(av_has_val);
|
|
} else if self.columns[idx] != av_has_val {
|
|
panic!("columns mismatch");
|
|
}
|
|
if av_has_val {
|
|
columns.push(col);
|
|
let val = Expr::val(av.into_value().unwrap());
|
|
let expr = if let Some(enum_name) = enum_name {
|
|
Expr::enum_value(enum_name, val)
|
|
} else {
|
|
val.into()
|
|
};
|
|
values.push(expr);
|
|
}
|
|
}
|
|
self.query.columns(columns);
|
|
self.query.exprs_panic(values);
|
|
self
|
|
}
|
|
|
|
pub fn add_many<M, I>(mut self, models: I) -> Self
|
|
where
|
|
M: IntoActiveModel<A>,
|
|
I: IntoIterator<Item = M>,
|
|
{
|
|
for model in models.into_iter() {
|
|
self = self.add(model);
|
|
}
|
|
self
|
|
}
|
|
}
|
|
|
|
impl<A> QueryTrait for Insert<A>
|
|
where
|
|
A: ActiveModelTrait,
|
|
{
|
|
type QueryStatement = InsertStatement;
|
|
|
|
fn query(&mut self) -> &mut InsertStatement {
|
|
&mut self.query
|
|
}
|
|
|
|
fn as_query(&self) -> &InsertStatement {
|
|
&self.query
|
|
}
|
|
|
|
fn into_query(self) -> InsertStatement {
|
|
self.query
|
|
}
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use crate::tests_cfg::cake;
|
|
use crate::{ActiveValue, DbBackend, Insert, QueryTrait};
|
|
|
|
#[test]
|
|
fn insert_1() {
|
|
assert_eq!(
|
|
Insert::<cake::ActiveModel>::new()
|
|
.add(cake::ActiveModel {
|
|
id: ActiveValue::unset(),
|
|
name: ActiveValue::set("Apple Pie".to_owned()),
|
|
})
|
|
.build(DbBackend::Postgres)
|
|
.to_string(),
|
|
r#"INSERT INTO "cake" ("name") VALUES ('Apple Pie')"#,
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn insert_2() {
|
|
assert_eq!(
|
|
Insert::<cake::ActiveModel>::new()
|
|
.add(cake::ActiveModel {
|
|
id: ActiveValue::set(1),
|
|
name: ActiveValue::set("Apple Pie".to_owned()),
|
|
})
|
|
.build(DbBackend::Postgres)
|
|
.to_string(),
|
|
r#"INSERT INTO "cake" ("id", "name") VALUES (1, 'Apple Pie')"#,
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn insert_3() {
|
|
assert_eq!(
|
|
Insert::<cake::ActiveModel>::new()
|
|
.add(cake::Model {
|
|
id: 1,
|
|
name: "Apple Pie".to_owned(),
|
|
})
|
|
.build(DbBackend::Postgres)
|
|
.to_string(),
|
|
r#"INSERT INTO "cake" ("id", "name") VALUES (1, 'Apple Pie')"#,
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn insert_4() {
|
|
assert_eq!(
|
|
Insert::<cake::ActiveModel>::new()
|
|
.add_many(vec![
|
|
cake::Model {
|
|
id: 1,
|
|
name: "Apple Pie".to_owned(),
|
|
},
|
|
cake::Model {
|
|
id: 2,
|
|
name: "Orange Scone".to_owned(),
|
|
}
|
|
])
|
|
.build(DbBackend::Postgres)
|
|
.to_string(),
|
|
r#"INSERT INTO "cake" ("id", "name") VALUES (1, 'Apple Pie'), (2, 'Orange Scone')"#,
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
#[should_panic(expected = "columns mismatch")]
|
|
fn insert_5() {
|
|
let apple = cake::ActiveModel {
|
|
name: ActiveValue::set("Apple".to_owned()),
|
|
..Default::default()
|
|
};
|
|
let orange = cake::ActiveModel {
|
|
id: ActiveValue::set(2),
|
|
name: ActiveValue::set("Orange".to_owned()),
|
|
};
|
|
assert_eq!(
|
|
Insert::<cake::ActiveModel>::new()
|
|
.add_many(vec![apple, orange])
|
|
.build(DbBackend::Postgres)
|
|
.to_string(),
|
|
r#"INSERT INTO "cake" ("id", "name") VALUES (NULL, 'Apple'), (2, 'Orange')"#,
|
|
);
|
|
}
|
|
}
|