mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-26 00:03:16 +00:00
Update import job
This commit is contained in:
parent
f25452ea1a
commit
40f9aa6055
1 changed files with 104 additions and 104 deletions
|
@ -12,120 +12,120 @@ use Illuminate\Contracts\Queue\ShouldQueue;
|
||||||
use Illuminate\Foundation\Bus\Dispatchable;
|
use Illuminate\Foundation\Bus\Dispatchable;
|
||||||
use App\Jobs\ImageOptimizePipeline\ImageOptimize;
|
use App\Jobs\ImageOptimizePipeline\ImageOptimize;
|
||||||
use App\{
|
use App\{
|
||||||
ImportJob,
|
ImportJob,
|
||||||
ImportData,
|
ImportData,
|
||||||
Media,
|
Media,
|
||||||
Profile,
|
Profile,
|
||||||
Status,
|
Status,
|
||||||
};
|
};
|
||||||
|
|
||||||
class ImportInstagram implements ShouldQueue
|
class ImportInstagram implements ShouldQueue
|
||||||
{
|
{
|
||||||
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
||||||
|
|
||||||
protected $import;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Delete the job if its models no longer exist.
|
|
||||||
*
|
|
||||||
* @var bool
|
|
||||||
*/
|
|
||||||
public $deleteWhenMissingModels = true;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Create a new job instance.
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public function __construct(ImportJob $import)
|
|
||||||
{
|
|
||||||
$this->import = $import;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
protected $import;
|
||||||
* Execute the job.
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public function handle()
|
|
||||||
{
|
|
||||||
if(config('pixelfed.import.instagram.enabled') != true) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$job = ImportJob::findOrFail($this->import->id);
|
/**
|
||||||
$profile = Profile::findOrFail($job->profile_id);
|
* Delete the job if its models no longer exist.
|
||||||
$user = $profile->user;
|
*
|
||||||
$json = $job->mediaJson();
|
* @var bool
|
||||||
$collection = array_reverse($json['photos']);
|
*/
|
||||||
$files = $job->files;
|
public $deleteWhenMissingModels = true;
|
||||||
$monthHash = hash('sha1', date('Y').date('m'));
|
|
||||||
$userHash = hash('sha1', $user->id . (string) $user->created_at);
|
|
||||||
$fs = new Filesystem;
|
|
||||||
|
|
||||||
foreach($collection as $import)
|
/**
|
||||||
{
|
* Create a new job instance.
|
||||||
$caption = $import['caption'];
|
*
|
||||||
try {
|
* @return void
|
||||||
$min = Carbon::create(2010, 10, 6, 0, 0, 0);
|
*/
|
||||||
$taken_at = Carbon::parse($import['taken_at']);
|
public function __construct(ImportJob $import)
|
||||||
if(!$min->lt($taken_at)) {
|
{
|
||||||
$taken_at = Carbon::now();
|
$this->import = $import;
|
||||||
}
|
}
|
||||||
} catch (Exception $e) {
|
|
||||||
|
|
||||||
}
|
|
||||||
$filename = last( explode('/', $import['path']) );
|
|
||||||
$importData = ImportData::whereJobId($job->id)
|
|
||||||
->whereOriginalName($filename)
|
|
||||||
->first();
|
|
||||||
|
|
||||||
if(empty($importData) || is_file(storage_path("app/$importData->path")) == false) {
|
/**
|
||||||
continue;
|
* Execute the job.
|
||||||
}
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function handle()
|
||||||
|
{
|
||||||
|
if(config('pixelfed.import.instagram.enabled') != true) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
DB::transaction(function() use(
|
$job = ImportJob::findOrFail($this->import->id);
|
||||||
$fs, $job, $profile, $caption, $taken_at, $filename,
|
$profile = Profile::findOrFail($job->profile_id);
|
||||||
$monthHash, $userHash, $importData
|
$user = $profile->user;
|
||||||
) {
|
$json = $job->mediaJson();
|
||||||
$status = new Status();
|
$collection = array_reverse($json['photos']);
|
||||||
$status->profile_id = $profile->id;
|
$files = $job->files;
|
||||||
$status->caption = strip_tags($caption);
|
$monthHash = hash('sha1', date('Y').date('m'));
|
||||||
$status->is_nsfw = false;
|
$userHash = hash('sha1', $user->id . (string) $user->created_at);
|
||||||
$status->type = 'photo';
|
$fs = new Filesystem;
|
||||||
$status->scope = 'unlisted';
|
|
||||||
$status->visibility = 'unlisted';
|
foreach($collection as $import)
|
||||||
$status->created_at = $taken_at;
|
{
|
||||||
$status->save();
|
$caption = $import['caption'];
|
||||||
|
try {
|
||||||
|
$min = Carbon::create(2010, 10, 6, 0, 0, 0);
|
||||||
|
$taken_at = Carbon::parse($import['taken_at']);
|
||||||
|
if(!$min->lt($taken_at)) {
|
||||||
|
$taken_at = Carbon::now();
|
||||||
|
}
|
||||||
|
} catch (Exception $e) {
|
||||||
|
|
||||||
|
}
|
||||||
|
$filename = last( explode('/', $import['path']) );
|
||||||
|
$importData = ImportData::whereJobId($job->id)
|
||||||
|
->whereOriginalName($filename)
|
||||||
|
->first();
|
||||||
|
|
||||||
|
if(empty($importData) || is_file(storage_path("app/$importData->path")) == false) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
DB::transaction(function() use(
|
||||||
|
$fs, $job, $profile, $caption, $taken_at, $filename,
|
||||||
|
$monthHash, $userHash, $importData
|
||||||
|
) {
|
||||||
|
$status = new Status();
|
||||||
|
$status->profile_id = $profile->id;
|
||||||
|
$status->caption = strip_tags($caption);
|
||||||
|
$status->is_nsfw = false;
|
||||||
|
$status->type = 'photo';
|
||||||
|
$status->scope = 'unlisted';
|
||||||
|
$status->visibility = 'unlisted';
|
||||||
|
$status->created_at = $taken_at;
|
||||||
|
$status->save();
|
||||||
|
|
||||||
|
|
||||||
$path = storage_path("app/$importData->path");
|
$path = storage_path("app/$importData->path");
|
||||||
$storagePath = "public/m/{$monthHash}/{$userHash}";
|
$storagePath = "public/m/{$monthHash}/{$userHash}";
|
||||||
$dir = "app/$storagePath";
|
$dir = "app/$storagePath";
|
||||||
if(!is_dir(storage_path($dir))) {
|
if(!is_dir(storage_path($dir))) {
|
||||||
mkdir(storage_path($dir), 0777, true);
|
mkdir(storage_path($dir), 0755, true);
|
||||||
}
|
}
|
||||||
$newPath = "$dir/$filename";
|
$newPath = "$dir/$filename";
|
||||||
$fs->move($path,storage_path($newPath));
|
$fs->move($path,storage_path($newPath));
|
||||||
$path = $newPath;
|
$path = $newPath;
|
||||||
$hash = \hash_file('sha256', storage_path($path));
|
$hash = \hash_file('sha256', storage_path($path));
|
||||||
$media = new Media();
|
$media = new Media();
|
||||||
$media->status_id = $status->id;
|
$media->status_id = $status->id;
|
||||||
$media->profile_id = $profile->id;
|
$media->profile_id = $profile->id;
|
||||||
$media->user_id = $profile->user->id;
|
$media->user_id = $profile->user->id;
|
||||||
$media->media_path = "$storagePath/$filename";
|
$media->media_path = "$storagePath/$filename";
|
||||||
$media->original_sha256 = $hash;
|
$media->original_sha256 = $hash;
|
||||||
$media->size = $fs->size(storage_path($path));
|
$media->size = $fs->size(storage_path($path));
|
||||||
$media->mime = $fs->mimeType(storage_path($path));
|
$media->mime = $fs->mimeType(storage_path($path));
|
||||||
$media->filter_class = null;
|
$media->filter_class = null;
|
||||||
$media->filter_name = null;
|
$media->filter_name = null;
|
||||||
$media->order = 1;
|
$media->order = 1;
|
||||||
$media->save();
|
$media->save();
|
||||||
ImageOptimize::dispatch($media);
|
ImageOptimize::dispatch($media);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
$job->completed_at = Carbon::now();
|
$job->completed_at = Carbon::now();
|
||||||
$job->save();
|
$job->save();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue