* Run cargo clippy on plume-common Run clippy on plume-common and adjuste code accordingly * Run cargo clippy on plume-model Run clippy on plume-model and adjuste code accordingly * Reduce need for allocation in plume-common * Reduce need for allocation in plume-model add a quick compilation failure if no database backend is enabled * Run cargo clippy on plume-cli * Run cargo clippy on plume
		
			
				
	
	
		
			49 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Rust
		
	
	
	
	
	
| use rocket::{State, response::{Redirect, Flash}};
 | |
| use workerpool::{Pool, thunk::*};
 | |
| 
 | |
| use plume_common::activity_pub::{broadcast, inbox::{Deletable, Notify}};
 | |
| use plume_common::utils;
 | |
| use plume_models::{
 | |
|     blogs::Blog,
 | |
|     db_conn::DbConn,
 | |
|     posts::Post,
 | |
|     reshares::*,
 | |
|     users::User
 | |
| };
 | |
| 
 | |
| #[post("/~/<blog>/<slug>/reshare")]
 | |
| fn create(blog: String, slug: String, user: User, conn: DbConn, worker: State<Pool<ThunkWorker<()>>>) -> Option<Redirect> {
 | |
|     let b = Blog::find_by_fqn(&*conn, &blog)?;
 | |
|     let post = Post::find_by_slug(&*conn, &slug, b.id)?;
 | |
| 
 | |
|     if !user.has_reshared(&*conn, &post) {
 | |
|         let reshare = Reshare::insert(&*conn, NewReshare {
 | |
|             post_id: post.id,
 | |
|             user_id: user.id,
 | |
|             ap_url: "".to_string()
 | |
|         });
 | |
|         reshare.update_ap_url(&*conn);
 | |
|         reshare.notify(&*conn);
 | |
| 
 | |
|         let dest = User::one_by_instance(&*conn);
 | |
|         let act = reshare.to_activity(&*conn);
 | |
|         worker.execute(Thunk::of(move || broadcast(&user, act, dest)));
 | |
|     } else {
 | |
|         let reshare = Reshare::find_by_user_on_post(&*conn, user.id, post.id)
 | |
|             .expect("reshares::create: reshare exist but not found error");
 | |
|         let delete_act = reshare.delete(&*conn);
 | |
|         let dest = User::one_by_instance(&*conn);
 | |
|         worker.execute(Thunk::of(move || broadcast(&user, delete_act, dest)));
 | |
|     }
 | |
| 
 | |
|     Some(Redirect::to(uri!(super::posts::details: blog = blog, slug = slug)))
 | |
| }
 | |
| 
 | |
| #[post("/~/<blog>/<slug>/reshare", rank=1)]
 | |
| fn create_auth(blog: String, slug: String) -> Flash<Redirect> {
 | |
|     utils::requires_login(
 | |
|         "You need to be logged in order to reshare a post",
 | |
|         uri!(create: blog = blog, slug = slug)
 | |
|     )
 | |
| }
 |