reportsOf()->delete(); // manually delete proposals to ensure row refcounts are updated foreach ($self->proposals as $proposal) { $proposal->delete(); } foreach ($self->tables as $table) { $table->delete(); } }); } /** Owned tables */ public function tables() { return $this->hasMany(Table::class, 'owner_id'); } /** Assigned OAuth identities */ public function socialIdentities() { return $this->hasMany(OAuthIdentity::class); } /** Authored proposals */ public function proposals() { return $this->hasMany(Proposal::class, 'author_id'); } /** Authored comments */ public function tableComments() { return $this->hasMany(TableComment::class, 'author_id'); } /** User's favourite tables (personal collection) */ public function favouriteTables() { return $this->belongsToMany(Table::class, 'table_favourites'); } /** Tables whose discussions user follows (this is similar to favourites) */ public function followedDiscussions() { return $this->belongsToMany(Table::class, 'discussion_follows'); } /** Reports sent by this user */ public function authoredReports() { return $this->hasMany(ContentReport::class, 'author_id'); } // --------- Relation Helpers --------- public function addFavourite(Table $table) { $this->favouriteTables()->attach($table); } public function removeFavourite(Table $table) { $this->favouriteTables()->detach($table); } public function followDiscussion(Table $table) { $this->followedDiscussions()->attach($table); } public function unfollowDiscussion(Table $table) { $this->followedDiscussions()->detach($table); } /** * Resolve user by a given name, id, or e-mail * * @param string $ident * @return User */ public static function resolve($ident) { $ident = "$ident"; if (strlen($ident) == 0) throw new ArgumentException("Can't find user by empty string."); if (is_numeric($ident)) { $u = static::find((int)$ident); } else if ($ident[0] == '@') { $u = static::where('name', substr($ident, 1))->first(); } else { $u = static::where('email', $ident)->first(); } if (!$u) throw new NotExistException("No user found matching \"$ident\""); return $u; } public function __get($name) { if ($name == 'handle') return "@$this->name"; return parent::__get($name); } }