Ejemplo n.º 1
0
 /**
  * @param \ApiParam $params
  * @param \User $user
  * @return \Ad
  * @throws \Exception
  */
 public static function buildAd(\ApiParam $params, \User $user)
 {
     if ($params->adId) {
         $ad = self::loadAndCheck($params->adId, $user, false, $params->udid);
         $ad->set('modifyIp', \Ip::remote_addr());
     } else {
         $ad = new \Ad();
         $ad->userIp = \Ip::remote_addr();
         $ad->status = \Ad::STATUS_ACTIVE;
         $ad->userId = $user->id;
         //City 编辑信息不能更换city
         $city = \City::loadByName($params->cityEnglishName);
         if (!isset(\Page::$context['city'])) {
             \Page::$context['city'] = $city;
         }
         if (!$city) {
             throw new \Exception('invalid city', 504);
         }
         $ad->areaCityLevelId = $city->oid;
         $ad->set('totalReport', 0);
         $ad->set('MasterCheckDate', 0);
     }
     //Category
     if (!$params->adId) {
         $ad->categoryEnglishName = $params->categoryEnglishName;
     } else {
         $ad->categoryEnglishName = $ad->categoryEnglishName;
     }
     try {
         $category = \Category::loadByName($ad->categoryEnglishName);
     } catch (\Exception $e) {
         throw new \Exception('该类目不存在', '407');
     }
     if ($category->level != \Category::LEVEL_SECOND) {
         throw new \Exception('信息只能发布到二级类目', '406');
     }
     //联系方式
     $params->contact = $params->contact ?: $params->mobile;
     //@todo 如果没有写发布人的,加上发布人属性,保留到2012年9月2日 by zhaojun
     if (!$params->faburen) {
         $ad->setPosterType(null);
         if ($ad->get('faburen')) {
             $params->faburen = $ad->get('faburen');
         } else {
             $params->faburen = 'm33660';
             //dirty fix, but it works(liuweili@baixing.com)
         }
     }
     $metas = $category->metas();
     if ($params->wanted) {
         switch ($category->parentEnglishName) {
             case 'gongzuo':
             case 'jianzhi':
                 $metas = \Category::loadByName('qiuzhijianli')->metas();
                 break;
             case 'ershou':
                 $metas = \Category::loadByName('qiumai')->metas();
                 break;
             case 'cheliang':
                 $metas = \Category::loadByName('cheliangqiugou')->metas();
                 break;
             default:
                 $metas = \Category::loadByName('qiufang')->metas();
                 break;
         }
     }
     foreach ($metas as $meta) {
         $data = $meta->dataValue($params);
         $dataWithoutUnit = $params->{$meta->name};
         if (strpos($meta->style, 'required') !== false && !array_filter($data, function ($a) {
             return $a !== null && $a !== '';
         })) {
             if (!array_key_exists('地区', $data) && $params->api_key == 'api_mobile_android') {
                 \InstantCounter::count('fabubitian');
                 throw new \Exception('属性' . $meta->displayName . '是必填项,请填写', '422');
             }
         }
         if ($meta->maxlength && mb_strlen($dataWithoutUnit) > $meta->maxlength) {
             throw new \Exception($meta->displayName . '不能超过' . $meta->maxlength . '个字', '423');
         }
         foreach ($data as $key => $value) {
             $ad->set($key, is_array($value) ? implode(',', $value) : (string) $value);
         }
     }
     if (!$ad->title) {
         throw new \Exception('属性标题是必填项,请填写', '422');
     }
     //Images
     if (is_string($params->images) && strlen($params->images)) {
         $params->image = explode(',', $params->images);
     }
     $images = self::validImage($params->image);
     $images = array_slice($images, 0, $user->imageLimit(\City::loadByName($params->cityEnglishName)));
     if ($ad->categoryEnglishName != 'ktvjiuba') {
         $ad->set('images', implode(" ", $images));
     } else {
         $ad->set('images', null);
     }
     $ad->set('wanted', intval($params->wanted));
     $contacts = $ad->contacts();
     $ad->set('contacts', implode(' ', $contacts));
     $fingers = $ad->fingers();
     $ad->set('fingers', implode(' ', $fingers));
     $urls = $ad->urls();
     $ad->set('urls', implode(' ', $urls));
     $ad->set('fabuSessionId', intval($params->fabuSessionId));
     return $ad;
 }
Ejemplo n.º 2
0
 public static function sendCode(\ApiParam $params, $type = "resetPassword")
 {
     if (!\Validate::isMobile($params->mobile)) {
         throw new \Exception('手机号码不正确', 1001);
     }
     $user = \User::loadByMobile($params->mobile);
     if (!$user) {
         throw new \Exception('手机号码未注册,请先注册新用户', 1002);
     }
     if (\Cache::getCountNumber("SendCode_{$params->mobile}", 60) > 1) {
         \InstantCounter::count("SendCode_Retry");
         throw new \Exception('请您1分钟后再试.', 1003);
     }
     $code = \Authorization::mobilePassword($params->mobile);
     $content = "";
     if ($params->api_key == 'api_mobile_android') {
         $content = "您的手机验证码为{$code}。本条免费,有效期一天";
     } else {
         $content = "您的手机验证码为{$code},请在手机客户端上输入后继续下一步操作。本条免费,有效期一天";
     }
     \Sms::send($params->mobile, $content, '手机客户端_获取验证码-' . $type);
     return TRUE;
     //成功发送
 }