</div>
            </span>
            <span class="cinema gallary">
                trong <a href="<?php 
    echo $this->config->global->forumUrl . 'forums/' . $item['cate_id'];
    ?>
" target="_blank"><strong style="color: #bd4b2b"><?php 
    echo $item['cate_title'];
    ?>
</strong></a>
            </span>

        </div>
        <div class="description">
            <p><?php 
    echo \Engine\Helper::getInstance('searcher', 'search')->formatMessage($item['message'], $keyword);
    ?>
</p>
        </div>
        <div class="extra">
            <div class="ui horizontal bulleted link list">
                <a class="item">Cập nhật lúc <strong><?php 
    echo date('H:m d/m/Y', $item['last_post_date']);
    ?>
</strong></a>
                <a class="item">Đăng lúc <strong><?php 
    echo date('H:m d/m/Y', $item['thread_post_date']);
    ?>
</strong></a>
                <a class="item view_count"><strong><?php 
    echo number_format($item['view_count']);
            </div>
            <!-- END RESULT SEARCH -->
        </div>
<!-- END CONTAINER -->
<!-- START FOOTER -->
    <div class="ui column centered grid search_footer">
    Bản quyền ® 2015 thuộc về <a href="">5giay.vn</a>. Bảo lưu mọi quyền.
</div>

<!-- END FOOTER -->


        <!-- END PAGE CONTAINER -->

        <!-- BEGIN PAGE LEVEL JS -->
        <script type="text/javascript" src="<?php 
echo $this->url->getStatic('plugins/semantic/dist/semantic.min.js');
?>
"></script>
        <script type="text/javascript" src="<?php 
echo $this->url->getStatic('min/index.php?g=jsCoreSite&rev=' . $this->config->global->version->js);
?>
"></script>
        
    </body>
</html>

<?php 
if ($this->config->global->profiler === true) {
    echo \Engine\Helper::getInstance('profiler', 'core')->render();
}
コード例 #3
0
 /**
  * Webhook update product action.
  *
  * @return void
  *
  * @Route("/update", methods={"POST"}, name="import-product-update")
  */
 public function updateAction()
 {
     if (isset($_SERVER['HTTP_X_HARAVAN_HMAC_SHA256'])) {
         $myApp = AppModel::findFirstById(1);
         $hmac_header = $_SERVER['HTTP_X_HARAVAN_HMAC_SHA256'];
         $data = file_get_contents('php://input');
         $verified = Utils::verify_webhook($data, $hmac_header, $myApp->sharedSecret);
         if ($verified) {
             $product = json_decode($data);
             $cleanData = strip_tags($product->body_html);
             $myStore = StoreModel::findFirst(['name = :storeName:', 'bind' => ['storeName' => $_SERVER['HTTP_HARAVAN_SHOP_DOMAIN']]]);
             // Create session information
             $this->session->get('oauth_token') != "" ? $this->session->get('oauth_token') : $this->session->set('oauth_token', $myStore->accessToken);
             $this->session->get('shop') != "" ? $this->session->get('shop') : $this->session->set('shop', $myStore->name);
             $this->session->get('sid') != "" ? $this->session->get('sid') : $this->session->set('sid', $myStore->id);
             // Get collection id from collect API
             $haravanCollection = EnHelper::getInstance('haravan', 'import')->getCollectsByProductId($product->id);
             // if category already mapped to five -> continue, else -> exit
             $myCategoryMap = CategoryMap::findFirst(['hid = :hid:', 'bind' => ['hid' => $haravanCollection[0]->collection_id]]);
             if (!$myCategoryMap) {
                 exit;
             }
             // if not found product id -> exit
             $myAds = AdsModel::findFirst(['rid = :rid:', 'bind' => ['rid' => $product->id]]);
             if (!$myAds) {
                 exit;
             }
             // Update table ADS
             $myAds->assign(['uid' => $myStore->uid, 'title' => $product->title, 'description' => $cleanData, 'price' => $product->variants[0]->price, 'seokeyword' => $product->tags, 'lastpostdate' => time()]);
             if ($myAds->update()) {
                 $this->debug($product->id);
                 // Update to product_map table
                 $myProduct = ProductMap::findFirst(['hid = :hid:', 'bind' => ['hid' => $product->id]]);
                 $myProduct->assign(['title' => $myAds->title, 'price' => $myAds->price]);
                 if ($myProduct->update()) {
                     error_log($myProduct->title . ' created success!');
                 }
                 // Delete queued data. (Production)
                 // $myProductQueue->delete();
             }
         }
     } else {
         error_log('Request not from haravan');
     }
 }
コード例 #4
0
 /**
  * Install action.
  *
  * @return void
  *
  * @Route("/install", methods={"GET", "POST"}, name="import-site-install")
  */
 public function installAction()
 {
     $formData = $success = $error = [];
     $message = '';
     $shopName = (string) $this->request->getQuery('shop', null, '');
     $code = (string) $this->request->getQuery('code', null, '');
     // Get app setting
     $myApp = AppModel::findFirstById(1);
     if ($shopName == '') {
         die('shopname not found');
         return $this->response->redirect('notfound');
     }
     // Select Store
     $myStore = StoreModel::findFirst(['name = :shopName:', 'bind' => ['shopName' => $shopName]]);
     if (!$myStore) {
         // Create new store if not exist
         $myStore = new StoreModel();
         $myStore->assign(['name' => $shopName, 'uid' => $this->session->get('me')->id]);
         $myStore->save();
         return $this->response->redirect(EnHelper::getInstance('haravan', 'import')->getAuthorizationUrl($shopName, $myApp->apiKey, $myApp->permissions, $myApp->redirectUrl), true, 301);
     }
     if ($myStore->accessToken != "") {
         $accessToken = $myStore->accessToken;
     } else {
         // get access token and store to session, db
         $accessToken = EnHelper::getInstance('haravan', 'import')->getAccessToken($shopName, $myApp->apiKey, $myApp->sharedSecret, $code, $myApp->redirectUrl);
         // Write access token to db spefified shop
         $myStore->accessToken = $accessToken;
         $myStore->status = StoreModel::STATUS_ENABLE;
         $myStore->save();
     }
     $this->session->get('oauth_token') != "" ? $this->session->get('oauth_token') : $this->session->set('oauth_token', $accessToken);
     $this->session->get('shop') != "" ? $this->session->get('shop') : $this->session->set('shop', $shopName);
     $this->session->get('sid') != "" ? $this->session->get('sid') : $this->session->set('sid', $myStore->id);
     // if is installed store, => return to homepage.
     if ($myStore->config == StoreModel::INSTALLED && $myStore->mapped == StoreModel::MAPPED) {
         return $this->response->redirect('/home', true, 301);
     }
     // Submit data to database when setup completed.
     if (!empty($this->request->hasPost('fsubmit'))) {
         $pass = false;
         $formData = array_merge($formData, $this->request->getPost());
         $categoryMap = (array) $formData['mapping'];
         foreach ($categoryMap as $haravanId => $itemMap) {
             $myCategoryMap = new CategoryMap();
             $myCategoryMap->sid = (int) $myStore->id;
             $myCategoryMap->hid = (int) $haravanId;
             $myCategoryMap->fid = (int) $itemMap['id'];
             $myCategoryMap->fname = (string) $itemMap['name'];
             $myCategoryMap->status = (int) CategoryMap::STATUS_PENDING;
             $myCategoryMap->totalItem = 0;
             $myCategoryMap->totalItemSync = 0;
             $myCategoryMap->totalItemQueue = 0;
             if ($myCategoryMap->save()) {
                 $success[] = $haravanId;
                 $pass = true;
             } else {
                 foreach ($myCategoryMap->getMessages() as $msg) {
                     $message .= str_replace('###haravanId###', $haravanId, $this->lang->_($msg->getMessage())) . '<br />';
                 }
             }
         }
         // If insert to category map and FIVE user table is ok.
         if ($pass) {
             $myStore->config = StoreModel::INSTALLED;
             if ($myStore->update()) {
                 // Register webhook
                 EnHelper::getInstance('haravan', 'import')->registerWebhook('products/create', $this->url->getBaseUri() . 'product/add');
                 EnHelper::getInstance('haravan', 'import')->registerWebhook('products/update', $this->url->getBaseUri() . 'product/update');
                 EnHelper::getInstance('haravan', 'import')->registerWebhook('app/uninstalled', $this->url->getBaseUri() . 'home/remove');
                 $this->flash->success(str_replace('###haravanId###', implode(',', $success), $this->lang->_('message-create-success')));
                 // Insert current progress to product log table.
                 $myProductLog = new ProductLog();
                 $myProductLog->assign(['sid' => $myStore->id, 'message' => $this->lang->_('message-category-map-initialize'), 'type' => ProductLog::TYPE_IMPORT, 'status' => ProductLog::STATUS_CURRENT_PROCESSING, 'class' => 'info']);
                 $myProductLog->create();
             } else {
                 $this->flash->error($this->lang->_('message-update-config-falied'));
             }
         } else {
             $this->flash->error($message);
         }
     }
     $this->session->set('shop', $myStore->name);
     $this->session->set('oauth_token', $myStore->accessToken);
     $haravanCollections = [];
     $haravanCollections = array_merge($haravanCollections, EnHelper::getInstance('haravan', 'import')->getCollections());
     $haravanCollections = array_merge($haravanCollections, EnHelper::getInstance('haravan', 'import')->getSmartCollections());
     $myCategories = Category::parent_sort(Category::find(['order' => 'orderno ASC'])->toArray());
     $currentProcess = ProductLog::findFirst(['sid = :sid: AND status = :status: AND type = :type:', 'bind' => ['sid' => $myStore->id, 'status' => ProductLog::STATUS_CURRENT_PROCESSING, 'type' => ProductLog::TYPE_IMPORT]]);
     if ($currentProcess) {
         $currentProcessMessage = $currentProcess->message;
     } else {
         $currentProcessMessage = "";
     }
     $redirectIframeHome = 'https://' . $myStore->name . '/admin/app#/embed/' . $myApp->apiKey;
     $this->bc->add($this->lang->_('title-index'), 'import/install');
     $this->bc->add($this->lang->_('title-install'), '');
     $this->view->setVars(['bc' => $this->bc->generate(), 'collections' => $haravanCollections, 'myCategories' => $myCategories, 'myStore' => $myStore, 'formData' => $formData, 'error' => $error, 'currentProcessMessage' => $currentProcessMessage, 'redirectIframeHome' => $redirectIframeHome]);
 }
コード例 #5
0
ファイル: Check.php プロジェクト: nguyenducduy/haraapp
 public function testAction()
 {
     // Get all products from this category from haravan
     $myStore = Store::findFirstById(5);
     $session = $this->getDI()->get('session');
     $session->set('shop', $myStore->name);
     $session->set('oauth_token', $myStore->accessToken);
     $myProducts = EnHelper::getInstance('haravan', 'import')->getProductsByCollectionId(1001242842);
     echo $myProducts->pdata;
     // $queue = $this->getDI()->get('queue');
     // $queue->choose('haraapp.import');
     // $queue->put([
     //     [
     //         'storeId' => 5,
     //         'haravanId' => 1000257298,
     //         'haravanProductId' => 1001236578
     //     ],
     //     [
     //         'priority' => 250,
     //         'delay' => 10,
     //         'ttr' => 3600
     //     ]
     // ]);
 }
        <div class="extra">
            <div class="ui horizontal bulleted link list">
                <?php 
    if ($this->length($item['city_name']) > 0) {
        ?>
                <a class="item"><?php 
        echo $item['city_name'];
        ?>
</a>
                <?php 
    }
    ?>
                <a class="item"><strong><?php 
    echo number_format($item['post_count']);
    ?>
</strong> bài viết</a>
                <a class="item" style="color: #bd4b2b !important;"><strong><i><?php 
    echo \Engine\Helper::getInstance('searcher', 'search')->getUserLevelBranch($item['user_message_count']);
    ?>
</i></strong></a>
                <a class="item">Ngày tham gia: <strong><?php 
    echo date('d/m/Y', $item['registered']);
    ?>
</strong></a>
            </div>
        </div>
    </div>
</div>
<!-- ITEM END -->
<?php 
}
コード例 #7
0
 /**
  * Main action.
  *
  * @return void
  *
  * @Route("/update", methods={"GET", "POST"}, name="import-category-update")
  */
 public function updateAction()
 {
     $formData = $jsonData = $error = [];
     if (!empty($this->request->hasPost('fsubmit'))) {
         $success = [];
         $message = "";
         $formData = array_merge($formData, $this->request->getPost());
         $categoryMap = (array) $formData['mapping'];
         foreach ($categoryMap as $haravanId => $itemMap) {
             if ($itemMap['id'] > 0) {
                 $myCategoryMap = CategoryMap::findFirst(['hid = :haravanId: AND sid = :storeId:', 'bind' => ['haravanId' => $haravanId, 'storeId' => $this->session->get('sid')]]);
                 if ($myCategoryMap) {
                     // Update exist category for change
                     if ($myCategoryMap->fid != $itemMap['id']) {
                         $myCategoryMap->fid = $itemMap['id'];
                         $myCategoryMap->fname = $itemMap['name'];
                         if ($myCategoryMap->update()) {
                             $this->flash->success('Updated category id: ' . $myCategoryMap->hid);
                         } else {
                             $this->flash->error('Failed to update category id: ' . $myCategoryMap->hid);
                         }
                     }
                 } else {
                     // Create new category map record
                     $myCategoryMap = new CategoryMap();
                     $myCategoryMap->sid = (int) $this->session->get('sid');
                     $myCategoryMap->hid = (int) $haravanId;
                     $myCategoryMap->fid = (int) $itemMap['id'];
                     $myCategoryMap->fname = (string) $itemMap['name'];
                     $myCategoryMap->status = (int) CategoryMap::STATUS_PENDING;
                     $myCategoryMap->totalItem = 0;
                     $myCategoryMap->totalItemSync = 0;
                     $myCategoryMap->totalItemQueue = 0;
                     if ($myCategoryMap->create()) {
                         $success[] = $haravanId;
                     } else {
                         foreach ($myCategoryMap->getMessages() as $msg) {
                             $message .= str_replace('###haravanId###', $haravanId, $this->lang->_($msg->getMessage())) . '<br />';
                         }
                     }
                 }
             }
         }
         if (count($success) > 0) {
             $this->flash->success('Categories ' . implode(',', $success) . ' created successfully.');
         } elseif (strlen($message) > 0) {
             $this->flash->error($message);
         }
     }
     $myCategories = Category::parent_sort(Category::find(['order' => 'orderno ASC'])->toArray());
     $haravanCollections = [];
     $haravanCollections = array_merge($haravanCollections, EnHelper::getInstance('haravan', 'import')->getCollections());
     $haravanCollections = array_merge($haravanCollections, EnHelper::getInstance('haravan', 'import')->getSmartCollections());
     $myCategroyMap = CategoryMap::find(['sid = :storeId:', 'bind' => ['storeId' => $this->session->get('sid')]]);
     foreach ($haravanCollections as $haravan) {
         $formData['mapping'][$haravan->id] = Utils::findInListObject($myCategroyMap, $haravan->id);
     }
     $this->bc->add($this->lang->_('title-home'), 'home');
     $this->bc->add($this->lang->_('title-category-update'), '');
     $this->view->setVars(['bc' => $this->bc->generate(), 'myCategories' => $myCategories, 'formData' => $formData, 'error' => $error, 'collections' => $haravanCollections]);
 }