kopia lustrzana https://github.com/pixelfed/pixelfed
				
				
				
			
		
			
				
	
	
		
			55 wiersze
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
			
		
		
	
	
			55 wiersze
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
| <?php
 | |
| 
 | |
| namespace App\Jobs\GroupPipeline;
 | |
| 
 | |
| use Illuminate\Bus\Queueable;
 | |
| use Illuminate\Contracts\Queue\ShouldBeUnique;
 | |
| use Illuminate\Contracts\Queue\ShouldQueue;
 | |
| use Illuminate\Foundation\Bus\Dispatchable;
 | |
| use Illuminate\Queue\InteractsWithQueue;
 | |
| use Illuminate\Queue\SerializesModels;
 | |
| use App\Models\GroupMember;
 | |
| use App\Notification;
 | |
| use App\Services\GroupService;
 | |
| 
 | |
| class JoinApproved implements ShouldQueue
 | |
| {
 | |
|     use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
 | |
| 
 | |
|     protected $member;
 | |
| 
 | |
|     /**
 | |
|      * Create a new job instance.
 | |
|      *
 | |
|      * @return void
 | |
|      */
 | |
|     public function __construct(GroupMember $member)
 | |
|     {
 | |
|         $this->member = $member;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Execute the job.
 | |
|      *
 | |
|      * @return void
 | |
|      */
 | |
|     public function handle()
 | |
|     {
 | |
|         $member = $this->member;
 | |
|         $member->approved_at = now();
 | |
|         $member->join_request = false;
 | |
|         $member->role = 'member';
 | |
|         $member->save();
 | |
| 
 | |
|         $n = new Notification;
 | |
|         $n->profile_id = $member->profile_id;
 | |
|         $n->actor_id = $member->profile_id;
 | |
|         $n->item_id = $member->group_id;
 | |
|         $n->item_type = 'App\Models\Group';
 | |
|         $n->save();
 | |
| 
 | |
|         GroupService::del($member->group_id);
 | |
|         GroupService::delSelf($member->group_id, $member->profile_id);
 | |
|     }
 | |
| }
 |