mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-26 12:23:06 +08:00
27 lines
525 B
PHP
27 lines
525 B
PHP
<?php
|
|
|
|
namespace App\Services\Logic\Teacher\Console;
|
|
|
|
use App\Models\ChapterLive as ChapterLiveModel;
|
|
use App\Services\Live as LiveService;
|
|
use App\Services\Logic\ChapterTrait;
|
|
use App\Services\Logic\Service;
|
|
|
|
class LivePushUrl extends Service
|
|
{
|
|
|
|
use ChapterTrait;
|
|
|
|
public function handle($id)
|
|
{
|
|
$chapter = $this->checkChapter($id);
|
|
|
|
$service = new LiveService();
|
|
|
|
$steamName = ChapterLiveModel::generateStreamName($chapter->id);
|
|
|
|
return $service->getPushUrl($steamName);
|
|
}
|
|
|
|
}
|