2020-04-04 19:26:39 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Pterodactyl\Repositories\Eloquent;
|
|
|
|
|
2020-04-10 05:35:38 +00:00
|
|
|
use Carbon\Carbon;
|
2020-04-04 19:26:39 +00:00
|
|
|
use Pterodactyl\Models\Backup;
|
|
|
|
|
|
|
|
class BackupRepository extends EloquentRepository
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function model()
|
|
|
|
{
|
|
|
|
return Backup::class;
|
|
|
|
}
|
2020-04-10 05:35:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Determines if too many backups have been generated by the server.
|
|
|
|
*
|
|
|
|
* @return \Pterodactyl\Models\Backup[]|\Illuminate\Support\Collection
|
|
|
|
*/
|
2020-12-28 00:41:53 +00:00
|
|
|
public function getBackupsGeneratedDuringTimespan(int $server, int $seconds = 600)
|
2020-04-10 05:35:38 +00:00
|
|
|
{
|
|
|
|
return $this->getBuilder()
|
|
|
|
->withTrashed()
|
|
|
|
->where('server_id', $server)
|
2020-08-21 04:07:53 +00:00
|
|
|
->where('is_successful', true)
|
2020-12-28 00:41:53 +00:00
|
|
|
->where('created_at', '>=', Carbon::now()->subSeconds($seconds)->toDateTimeString())
|
2020-04-10 05:35:38 +00:00
|
|
|
->get()
|
|
|
|
->toBase();
|
|
|
|
}
|
2020-04-04 19:26:39 +00:00
|
|
|
}
|