mirror of
https://github.com/Sarjuuk/aowow.git
synced 2025-11-29 15:58:16 +08:00
User/Cleanup
* the great unfuckening of user and displayName
* `login` is purely used as login with AUTH_MODE_SELF
* `email` may now also be used to log in (if the system knows it)
* `username` is purely used for display around the site, and lookups from web context
* both must exist because of external logins
a) that may be not unique
b) you may not want to share with the rest of the world
* todo: implement rename ( because of b) )
This commit is contained in:
@@ -29,8 +29,8 @@ class GuideList extends BaseType
|
||||
protected $queryBase = 'SELECT g.*, g.id AS ARRAY_KEY FROM ?_guides g';
|
||||
protected $queryOpts = array(
|
||||
'g' => [['a', 'c'], 'g' => 'g.`id`'],
|
||||
'a' => ['j' => ['?_account a ON a.id = g.userId', true], 's' => ', IFNULL(a.displayName, "") AS author'],
|
||||
'c' => ['j' => ['?_comments c ON c.`type` = '.Type::GUIDE.' AND c.`typeId` = g.`id` AND (c.`flags` & '.CC_FLAG_DELETED.') = 0', true], 's' => ', COUNT(c.`id`) AS `comments`']
|
||||
'a' => ['j' => ['?_account a ON a.`id` = g.`userId`', true], 's' => ', IFNULL(a.`username`, "") AS "author"'],
|
||||
'c' => ['j' => ['?_comments c ON c.`type` = '.Type::GUIDE.' AND c.`typeId` = g.`id` AND (c.`flags` & '.CC_FLAG_DELETED.') = 0', true], 's' => ', COUNT(c.`id`) AS "comments"']
|
||||
);
|
||||
|
||||
public function __construct(array $conditions = [], array $miscData = [])
|
||||
|
||||
@@ -18,7 +18,7 @@ class UserList extends BaseType
|
||||
protected $queryBase = 'SELECT *, a.id AS ARRAY_KEY FROM ?_account a';
|
||||
protected $queryOpts = array(
|
||||
'a' => [['r']],
|
||||
'r' => ['j' => ['?_account_reputation r ON r.userId = a.id', true], 's' => ', IFNULL(SUM(r.amount), 0) AS reputation', 'g' => 'a.id']
|
||||
'r' => ['j' => ['?_account_reputation r ON r.`userId` = a.`id`', true], 's' => ', IFNULL(SUM(r.`amount`), 0) AS "reputation"', 'g' => 'a.`id`']
|
||||
);
|
||||
|
||||
public function getListviewData() { }
|
||||
@@ -29,7 +29,7 @@ class UserList extends BaseType
|
||||
|
||||
foreach ($this->iterate() as $__)
|
||||
{
|
||||
$data[$this->curTpl['displayName']] = array(
|
||||
$data[$this->curTpl['username']] = array(
|
||||
'border' => 0, // border around avatar (rarityColors)
|
||||
'roles' => $this->curTpl['userGroups'],
|
||||
'joined' => date(Util::$dateFormatInternal, $this->curTpl['joinDate']),
|
||||
@@ -40,14 +40,14 @@ class UserList extends BaseType
|
||||
'reputation' => $this->curTpl['reputation']
|
||||
);
|
||||
|
||||
// custom titles (only ssen on user page..?)
|
||||
// custom titles (only seen on user page..?)
|
||||
if ($_ = $this->curTpl['title'])
|
||||
$data[$this->curTpl['displayName']]['title'] = $_;
|
||||
$data[$this->curTpl['username']]['title'] = $_;
|
||||
|
||||
if ($_ = $this->curTpl['avatar'])
|
||||
{
|
||||
$data[$this->curTpl['displayName']]['avatar'] = is_numeric($_) ? 2 : 1;
|
||||
$data[$this->curTpl['displayName']]['avatarmore'] = $_;
|
||||
$data[$this->curTpl['username']]['avatar'] = is_numeric($_) ? 2 : 1;
|
||||
$data[$this->curTpl['username']]['avatarmore'] = $_;
|
||||
}
|
||||
|
||||
// more optional data
|
||||
|
||||
Reference in New Issue
Block a user