Update MediaPathService, change story paths

This commit is contained in:
Daniel Supernault 2021-08-31 00:38:07 -06:00
parent 168c19c5b6
commit 427f9da33e
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 7 additions and 6 deletions

View File

@ -8,6 +8,7 @@ use Illuminate\Support\Str;
use App\Media;
use App\Profile;
use App\User;
use App\Services\HashidService;
class MediaPathService {
@ -51,27 +52,27 @@ class MediaPathService {
public static function story($account, $version = 1)
{
$mh = hash('sha256', date('Y').'-.-'.date('m'));
$monthHash = date('Y').date('m').substr($mh, 0, 6).substr($mh, 58, 6);
$random = '03'.Str::random(random_int(6,9)).'_'.Str::random(random_int(6,17));
$monthHash = HashidService::encode(date('Y').date('m'));
$random = date('d').Str::random(32);
if($account instanceOf User) {
switch ($version) {
case 1:
$userHash = $account->profile_id;
$userHash = HashidService::encode($account->profile_id);
$path = "public/_esm.t3/{$monthHash}/{$userHash}/{$random}";
break;
default:
$userHash = $account->profile_id;
$userHash = HashidService::encode($account->profile_id);
$path = "public/_esm.t3/{$monthHash}/{$userHash}/{$random}";
break;
}
}
if($account instanceOf Profile) {
$userHash = $account->id;
$userHash = HashidService::encode($account->id);
$path = "public/_esm.t3/{$monthHash}/{$userHash}/{$random}";
}
return $path;
}
}
}