2020-06-07 19:04:43 +03:00
< ? php declare ( strict_types = 1 );
namespace openvk\Web\Models\Repositories ;
use openvk\Web\Models\Entities\Club ;
2022-09-17 00:21:29 +03:00
use openvk\Web\Models\Repositories\Aliases ;
2020-06-07 19:04:43 +03:00
use Nette\Database\Table\ActiveRow ;
use Chandler\Database\DatabaseConnection ;
class Clubs
{
private $context ;
private $clubs ;
function __construct ()
{
$this -> context = DatabaseConnection :: i () -> getContext ();
$this -> clubs = $this -> context -> table ( " groups " );
}
private function toClub ( ? ActiveRow $ar ) : ? Club
{
return is_null ( $ar ) ? NULL : new Club ( $ar );
}
function getByShortURL ( string $url ) : ? Club
{
2022-09-17 00:21:29 +03:00
$shortcode = $this -> toClub ( $this -> clubs -> where ( " shortcode " , $url ) -> fetch ());
if ( $shortcode )
return $shortcode ;
$alias = ( new Aliases ) -> getByShortcode ( $url );
if ( ! $alias ) return NULL ;
if ( $alias -> getType () !== " club " ) return NULL ;
return $alias -> getClub ();
2020-06-07 19:04:43 +03:00
}
function get ( int $id ) : ? Club
{
return $this -> toClub ( $this -> clubs -> get ( $id ));
}
function find ( string $query , int $page = 1 , ? int $perPage = NULL ) : \Traversable
{
2020-11-22 13:29:27 +03:00
$query = " % $query % " ;
$result = $this -> clubs -> where ( " name LIKE ? OR about LIKE ? " , $query , $query );
return new Util\EntityStream ( " Club " , $result );
2020-06-07 19:04:43 +03:00
}
2022-01-03 18:31:55 +03:00
function getCount () : int
{
return sizeof ( clone $this -> clubs );
}
function getPopularClubs () : \Traversable
{
2022-09-12 20:46:40 +03:00
// TODO rewrite
/*
2022-04-18 09:54:56 +03:00
$query = " SELECT ROW_NUMBER() OVER (ORDER BY `subscriptions` DESC) as `place`, `target` as `id`, COUNT(`follower`) as `subscriptions` FROM `subscriptions` WHERE `model` = \" openvk \\ \ Web \\ \ Models \\ \ Entities \\ \ Club \" GROUP BY `target` ORDER BY `subscriptions` DESC, `id` LIMIT 30; " ;
2022-01-03 18:31:55 +03:00
$entries = DatabaseConnection :: i () -> getConnection () -> query ( $query );
foreach ( $entries as $entry )
yield ( object ) [
" place " => $entry [ " place " ],
" club " => $this -> get ( $entry [ " id " ]),
" subscriptions " => $entry [ " subscriptions " ],
];
2022-09-12 20:46:40 +03:00
*/
2022-01-03 18:31:55 +03:00
}
2020-06-07 19:04:43 +03:00
use \Nette\SmartObject ;
}