Immerse.php
1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?php
namespace App\Models;
use Dcat\Admin\Traits\HasDateTimeFormatter;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Facades\Storage;
use Illuminate\Support\Str;
class Immerse extends Model
{
	use HasDateTimeFormatter;
    protected $table = 'immerse';
    protected $guarded = [''];
    public function send($user_id, $type, $audio = '', $video = '')
    {
    }
    public function getUrlAttribute($url)
    {
        if (Str::contains($url, '/storage/app/public/')) {
            $str = Str::of($url)->replace('/usr/local/nginx/html/OnePoem/storage/app/public/', '');
            return Storage::disk('public')->url($str);
        } else {
            return Storage::disk('public')->url($url);
        }
    }
    public function getThumbnailAttribute($url)
    {
        if (Str::contains($url, '/storage/app/public/')) {
            $str = Str::of($url)->replace('/usr/local/nginx/html/OnePoem/storage/app/public/', '');
            return Storage::disk('public')->url($str);
        } else {
            return Storage::disk('public')->url($url);
        }
    }
    public function getBgmAttribute($url)
    {
        if (Str::contains($url, '/storage/app/public/')) {
            $str = Str::of($url)->replace('/usr/local/nginx/html/OnePoem/storage/app/public/', '');
            return Storage::disk('public')->url($str);
        } else {
            return Storage::disk('public')->url($url);
        }
    }
}