52 lines
1.1 KiB
Rust
52 lines
1.1 KiB
Rust
|
use {
|
||
|
crate::{db_create, db_delete, db_load, db_update},
|
||
|
diesel::prelude::*,
|
||
|
jirs_data::{Comment, CommentId, IssueId, UserId},
|
||
|
};
|
||
|
|
||
|
db_load! {
|
||
|
LoadIssueComments,
|
||
|
msg => comments => comments.distinct_on(id).filter(issue_id.eq(msg.issue_id)),
|
||
|
Comment,
|
||
|
issue_id => IssueId
|
||
|
}
|
||
|
|
||
|
db_create! {
|
||
|
CreateComment,
|
||
|
msg => comments => diesel::insert_into(comments).values((
|
||
|
body.eq(msg.body),
|
||
|
user_id.eq(msg.user_id),
|
||
|
issue_id.eq(msg.issue_id),
|
||
|
)),
|
||
|
Comment,
|
||
|
issue_id => IssueId,
|
||
|
user_id => UserId,
|
||
|
body => String
|
||
|
}
|
||
|
|
||
|
db_update! {
|
||
|
UpdateComment,
|
||
|
msg => comments => diesel::update(
|
||
|
comments
|
||
|
.filter(user_id.eq(msg.user_id))
|
||
|
.find(msg.comment_id),
|
||
|
)
|
||
|
.set(body.eq(msg.body)),
|
||
|
Comment,
|
||
|
comment_id => CommentId,
|
||
|
user_id => UserId,
|
||
|
body => String
|
||
|
}
|
||
|
|
||
|
db_delete! {
|
||
|
DeleteComment,
|
||
|
msg => comments => diesel::delete(
|
||
|
comments
|
||
|
.filter(user_id.eq(msg.user_id))
|
||
|
.find(msg.comment_id),
|
||
|
),
|
||
|
Comment,
|
||
|
comment_id => CommentId,
|
||
|
user_id => UserId
|
||
|
}
|