Table of Contents
PHP实现多说评论实时同步回网站数据库
Home Backend Development PHP Tutorial PHP实现多说评论实时同步回网站数据库

PHP实现多说评论实时同步回网站数据库

Jun 20, 2016 pm 01:01 PM

PHP实现多说评论实时同步回网站数据库

社会化评论-多说评论实时同步回数据库,依赖Http库,随便找一个就行

where($where)->getField('value');
            Vendor('CurlHTTP.Http');
            
            $limit = 20;

            $params = array(
                'limit' => $limit,
                'order' => 'asc',
            );


            $posts = array();

            if (!$last_log_id)
                $last_log_id = 0;

            $params['since_id'] = $last_log_id;
            $params['short_name'] = C(DUOSHUO_SHORT_NAME);
            $params['secret'] = C(DUOSHUO_SECRET);
            $http_client = new \Http();
            $response = $http_client->request('http://api.duoshuo.com/log/list.json', $params ,'GET');

            $response = json_decode($response,true);

            if (!isset($response['response'])) {
                //处理错误,错误消息$response['message'], $response['code']
                file_log("签名错误");
            } else {
                //遍历返回的response,你可以根据action决定对这条评论的处理方式。
                foreach($response['response'] as $k => $log){
                    switch($log['action']){
                        case 'create':
                            foreach ($log['meta'] as $key => $value) {
                                $create[$key]['post_id'] = $log['meta']['post_id'];
                                $create[$key]['thread_id'] = $log['meta']['thread_id'];
                                $create[$key]['author_id'] = $log['meta']['author_id'];
                                $create[$key]['author_name'] = $log['meta']['author_name'];
                                $create[$key]['author_email'] = $log['meta']['author_email'];
                                $create[$key]['author_url'] = $log['meta']['author_url'];
                                $create[$key]['author_key'] = $log['meta']['author_key'];
                                $create[$key]['ip'] = $log['meta']['ip'];
                                $create[$key]['created_at'] = $log['meta']['created_at'];
                                $create[$key]['message'] = $log['meta']['message'];
                                $create[$key]['status'] = $log['meta']['status'];
                                $create[$key]['type'] = $log['meta']['type'];
                                if($log['meta']['parent_id'] != ""){
                                    $create[$key]['parent_id'] = $log['meta']['parent_id'];
                                }
                                $create[$key]['thread_key'] = $log['meta']['thread_key'];
                                $create[$key]['user_id'] = $log['user_id'];
                                $create[$key]['date'] = $log['date'];
                            }
                            break;
                        case 'approve':
                            //这条评论是通过的评论
                            foreach ($log['meta'] as $key => $value) {
                                $approve[$key]['post_id'] .= $value.",";
                            }
                            break;
                        case 'spam':
                            //这条评论是标记垃圾的评论
                            foreach ($log['meta'] as $key => $value) {
                                $spam[$key]['post_id'] .= $value.",";
                            }
                            break;
                        case 'delete':
                            //这条评论是删除的评论
                            foreach ($log['meta'] as $key => $value) {
                                $delete[$key]['post_id'] .= $value.",";
                            }
                            break;
                        case 'delete-forever':
                            //彻底删除的评论
                            foreach ($log['meta'] as $key => $value) {
                                $delete_forever[$key]['post_id'] .= $value.",";
                            }
                            break;
                        default:
                            break;
                    }
                    // 更新处理数据
                    switch($log['action']){
                        case 'create':
                            foreach ($create as $key => $value) {
                                if($value != ""){
                                    $Comment->add($value);
                                }
                            break;
                            }
                        case 'approve':
                            //这条评论是通过的评论
                            foreach ($approve as $key => $value) {
                                if($value != ""){
                                    $Comment->where(array('post_id'=>
                                    array('in',''. 
                                    substr($value['post_id'], 0,-1) .'')))
                                    ->setField('status','approved');
                                }
                            }
                            break;
                        case 'spam':
                            //这条评论是标记垃圾的评论
                            foreach ($spam as $key => $value) {
                                if($value != ""){
                                    $Comment->where(array('post_id'=>
                                    array('in',''. 
                                    substr($value['post_id'], 0,-1) .'')))
                                    ->setField('status','spam');
                                }
                            }
                            break;
                        case 'delete':
                            //这条评论是删除的评论
                            foreach ($delete as $key => $value) {
                                if($value != ""){
                                    $Comment->where(array('post_id'=>
                                    array('in',''. 
                                    substr($value['post_id'], 0,-1) .'')))
                                    ->setField('status','delete');
                                }
                            }
                            break;
                        case 'delete-forever':
                            //彻底删除的评论
                            foreach ($delete_forever as $key => $value) {
                                if($value != ""){
                                    $Comment->where(array('post_id'=>
                                    array('in',''. 
                                    substr($value['post_id'], 0,-1) .'')))
                                    ->delete();
                                }
                            }
                            break;
                        default:
                            break;
                    }
                    //更新last_log_id,记得维护last_log_id。(如update你的数据库)
                    if (strlen($log['log_id']) > strlen($last_log_id) || strcmp($log['log_id'], $last_log_id) > 0) {
                        M('setting')->where(array('name'=>"last_log_id"))->setField('value',$log['log_id']);
                    }
                }
            }

        }

    }
}/**
 *
 * 多说检查签名
 *
 */
function check_signature($input){

    $signature = $input['signature'];
    unset($input['signature']);

    ksort($input);
    $baseString = http_build_query($input, null, '&');
    $expectSignature = base64_encode(hmacsha1($baseString, C(DUOSHUO_SECRET)));
    if ($signature !== $expectSignature) {
        return false;
    }
    return true;
}


// from: http://www.php.net/manual/en/function.sha1.php#39492
// Calculate HMAC-SHA1 according to RFC2104
// http://www.ietf.org/rfc/rfc2104.txt
// 多说
function hmacsha1($data, $key) {
    if (function_exists('hash_hmac'))
        return hash_hmac('sha1', $data, $key, true);

    $blocksize=64;
    if (strlen($key)>$blocksize)
        $key=pack('H*', sha1($key));
    $key=str_pad($key,$blocksize,chr(0x00));
    $ipad=str_repeat(chr(0x36),$blocksize);
    $opad=str_repeat(chr(0x5c),$blocksize);
    $hmac = pack(
            'H*',sha1(
                    ($key^$opad).pack(
                            'H*',sha1(
                                    ($key^$ipad).$data
                            )
                    )
            )
    );
    return $hmac;
}
Copy after login


配置

//多说
'DUOSHUO_SECRET'=>'78bd15a3d4fb3000657741a1319bbbbe',
'DUOSHUO_SHORT_NAME'=>'muxu',
Copy after login

 

以上就是PHP实现多说评论实时同步回网站数据库的内容,更多相关内容请关注PHP中文网(www.php.cn)!


Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

See all articles