Esempio n. 1
0
 public function create($data)
 {
     $data['type'] = $this->type;
     $post = Post::create($data);
     echo 'New ' . ucfirst($this->type) . ': ' . $data['identifier'] . "\n";
     return $post;
 }
Esempio n. 2
0
 public static function handle($key, $val, $post)
 {
     if (!is_array($val)) {
         $val = [$val];
     }
     $redirects = [];
     foreach ($val as $redirect_from) {
         $redirect = Post::where('slug', $redirect_from)->first();
         if ($redirect && $redirect->type !== 'redirect') {
             echo '***********************************************************************' . "\n";
             echo '* WARNING: Slug exists: ' . $redirect->slug . "\n";
             echo '***********************************************************************' . "\n";
         }
         $data = ['slug' => $redirect_from, 'title' => '', 'body' => '', 'type' => 'redirect', 'meta' => json_encode(['redirect_to' => $post->slug])];
         if ($redirect) {
             $redirect->fill($data);
             if ($redirect->isDirty()) {
                 $redirect->save();
                 echo 'Update Redirect: ' . $redirect_from . "\n";
             }
         } else {
             $redirect = Post::create($data);
             echo 'New Redirect: ' . $redirect_from . "\n";
         }
         array_push($redirects, $redirect->slug);
     }
     self::delete($redirects, $post);
 }