From 8d6e8b306d7836e4075a13ad98617bfe5afaa1a0 Mon Sep 17 00:00:00 2001 From: Fbenas Date: Sat, 20 Jun 2020 21:07:45 +0100 Subject: Add new scripts for youtube downloading and syncing with existing matches --- app/Rugby/Model/Video.php | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 app/Rugby/Model/Video.php (limited to 'app/Rugby/Model/Video.php') diff --git a/app/Rugby/Model/Video.php b/app/Rugby/Model/Video.php new file mode 100644 index 0000000..2182b65 --- /dev/null +++ b/app/Rugby/Model/Video.php @@ -0,0 +1,34 @@ + 'datetime:Y-m-d']; + protected $fillable = ['path']; + + public function match() + { + return $this->belongsTo(Match::class); + } + + public function getFilename(): string + { + $parts = explode('/', $this->path); + + return $parts[count($parts) - 1]; + } + + public function getUrl(): string + { + return asset('storage/matches/' . $this->getFilename()); + // return Storage::disk('local')->url( + // 'matches/' . $this->getFilename() + // ); + } +} -- cgit v1.2.3