Update StatusController, set missing reblog/share type

pull/3237/head
Daniel Supernault 2022-02-13 02:14:26 -07:00
rodzic fcee549705
commit 548a12a4c2
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 0DEF1C662C9033F7
3 zmienionych plików z 34 dodań i 0 usunięć

Wyświetl plik

@ -2247,6 +2247,7 @@ class ApiV1Controller extends Controller
$share = Status::firstOrCreate([
'profile_id' => $user->profile_id,
'reblog_of_id' => $status->id,
'type' => 'share',
'in_reply_to_profile_id' => $status->profile_id,
'scope' => 'public',
'visibility' => 'public'

Wyświetl plik

@ -254,6 +254,7 @@ class StatusController extends Controller
$share->profile_id = $profile->id;
$share->reblog_of_id = $status->id;
$share->in_reply_to_profile_id = $status->profile_id;
$share->type = 'share';
$share->save();
$count++;
SharePipeline::dispatch($share);

Wyświetl plik

@ -0,0 +1,32 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
use App\Status;
class AddMissingReblogOfIdTypesToStatusesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Status::whereNotNull('reblog_of_id')
->whereNull('type')
->update([
'type' => 'share'
]);
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
}
}