castopod/app/Models/UserModel.php
Yassine Doghri ed6e953010 refactor: add php_codesniffer to define castopod's coding style based on psr-1
- add .editorconfig file
- format all files to comply with castopod's coding style
- switch parsedown dependency with commonmark library to better follow commonmark spec for markdown
- add prettier command to format all project files at once

closes #16
2020-10-15 14:41:22 +00:00

29 lines
860 B
PHP

<?php
namespace App\Models;
class UserModel extends \Myth\Auth\Models\UserModel
{
protected $returnType = \App\Entities\User::class;
public function getPodcastContributors($podcast_id)
{
return $this->select('users.*, auth_groups.name as podcast_role')
->join('users_podcasts', 'users_podcasts.user_id = users.id')
->join('auth_groups', 'auth_groups.id = users_podcasts.group_id')
->where('users_podcasts.podcast_id', $podcast_id)
->findAll();
}
public function getPodcastContributor($user_id, $podcast_id)
{
return $this->select('users.*')
->join('users_podcasts', 'users_podcasts.user_id = users.id')
->where([
'users.id' => $user_id,
'podcast_id' => $podcast_id,
])
->first();
}
}