123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- <?php
- namespace App\Jobs\StatusPipeline;
- use DB, Cache;
- use App\{
- Hashtag,
- Media,
- Mention,
- Profile,
- Status,
- StatusHashtag
- };
- use App\Util\Lexer\Hashtag as HashtagLexer;
- use App\Util\Lexer\{Autolink, Extractor};
- use Illuminate\Bus\Queueable;
- use Illuminate\Queue\SerializesModels;
- use Illuminate\Queue\InteractsWithQueue;
- use Illuminate\Contracts\Queue\ShouldQueue;
- use Illuminate\Foundation\Bus\Dispatchable;
- use App\Jobs\MentionPipeline\MentionPipeline;
- class StatusEntityLexer implements ShouldQueue
- {
- use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
- protected $status;
- protected $entities;
- protected $autolink;
- /**
- * Create a new job instance.
- *
- * @return void
- */
- public function __construct(Status $status)
- {
- $this->status = $status;
- }
- /**
- * Execute the job.
- *
- * @return void
- */
- public function handle()
- {
- $status = $this->status;
- $this->parseEntities();
- }
- public function parseEntities()
- {
- $this->extractEntities();
- }
- public function extractEntities()
- {
- $this->entities = Extractor::create()->extract($this->status->caption);
- $this->autolinkStatus();
- }
- public function autolinkStatus()
- {
- $this->autolink = Autolink::create()->autolink($this->status->caption);
- $this->storeEntities();
- }
- public function storeEntities()
- {
- $this->storeHashtags();
- $this->storeMentions();
- DB::transaction(function () {
- $status = $this->status;
- $status->rendered = $this->autolink;
- $status->entities = json_encode($this->entities);
- $status->save();
- });
- }
- public function storeHashtags()
- {
- $tags = array_unique($this->entities['hashtags']);
- $status = $this->status;
- foreach($tags as $tag) {
- DB::transaction(function () use ($status, $tag) {
- $slug = str_slug($tag);
- $hashtag = Hashtag::firstOrCreate(
- ['name' => $tag, 'slug' => $slug]
- );
- StatusHashtag::firstOrCreate(
- ['status_id' => $status->id, 'hashtag_id' => $hashtag->id]
- );
- });
- }
- }
- public function storeMentions()
- {
- $mentions = array_unique($this->entities['mentions']);
- $status = $this->status;
- foreach($mentions as $mention) {
- $mentioned = Profile::whereUsername($mention)->firstOrFail();
-
- if(empty($mentioned) || !isset($mentioned->id)) {
- continue;
- }
-
- DB::transaction(function () use ($status, $mentioned) {
- $m = new Mention;
- $m->status_id = $status->id;
- $m->profile_id = $mentioned->id;
- $m->save();
- });
- MentionPipeline::dispatch($status, $m);
- }
- }
- }
|