Seditio Source
Root |
./othercms/xenForo 2.2.8/src/XF/Sitemap/User.php
<?php

namespace XF\Sitemap;

class
User extends AbstractHandler
{
    public function
getRecords($start)
    {
       
$app = $this->app;

       
$ids = $this->getIds('xf_user', 'user_id', $start);

       
$userFinder = $app->finder('XF:User');
       
$users = $userFinder
           
->where('user_id', $ids)
            ->
with(['Profile', 'Privacy'])
            ->
order('user_id')
            ->
fetch();

        return
$users;
    }

    public function
getEntry($record)
    {
       
/** @var \XF\Entity\User $record */
       
$entry = Entry::create($record->getContentUrl(true), [
           
'priority' => 0.3
       
]);
        if (
$record->avatar_date || $record->gravatar)
        {
           
$avatar = \XF::canonicalizeUrl($record->getAvatarUrl('o', null, true));
           
$entry->set('image', $avatar);
        }
        return
$entry;
    }

    public function
isIncluded($record)
    {
       
/** @var $record \XF\Entity\User */
       
if (!$record->isSearchEngineIndexable())
        {
            return
false;
        }

        return
$record->canViewFullProfile();
    }
}