Example #1
0
 public function execute()
 {
     $user = $this->getUser();
     // Blocked users cannot submit new comments, and neither can those users
     // without the necessary privileges. Also prevent obvious cross-site request
     // forgeries (CSRF)
     $id = $this->getMain()->getVal('userid');
     $name = $this->getMain()->getVal('username');
     $size = $this->getMain()->getVal('size');
     $prefix = $this->getMain()->getVal('prefix');
     $isSite = false;
     if ($id == '') {
         if ($name != '') {
             $id = User::idFromName($name);
         } else {
             if ($prefix != '') {
                 $isSite = true;
             } else {
                 $id = 0;
             }
         }
     }
     if ($size = '') {
         $size = 'l';
     }
     if (!$isSite) {
         $avatar = new wAvatar($id, $size);
     } else {
         $avatar = new wSiteAvatar($prefix, $size);
     }
     $responseBody = array('state' => 200, 'message' => '', 'html' => $avatar->getAvatarHtml(), 'url' => $avatar->getAvatarUrlPath());
     $result = $this->getResult();
     $result->addValue($this->getModuleName(), 'res', $responseBody);
     return true;
 }
Example #2
0
 public function getResult()
 {
     global $wgUser, $wgHuijiPrefix;
     if ($this->isUserAvatar) {
         $uid = $wgUser->getId();
         $avatar = new wAvatar($uid, 'l');
     } else {
         $avatar = new wSiteAvatar($wgHuijiPrefix, 'l');
     }
     return $avatar->getAvatarUrlPath();
 }