精品深夜福利视频,日本中文字幕不卡,久久久久国产,av综合电影网站


待發(fā)短信

在線客服
產(chǎn)品支持 短信寶客服
合作渠道 渠道合作
服務(wù)咨詢

4001-021-502

工作時(shí)間

9:00-21:00

UQCMS云商系統(tǒng)新增短信寶短信接口

UQCMS云商是一款B2B2C電子商務(wù)軟件 ,采用PHP+MYSQL,模板采用smarty模板,二次開發(fā),簡(jiǎn)單方便,無(wú)需學(xué)習(xí)其他框架就可以自行模板設(shè)計(jì)。永久免費(fèi)使用,操作簡(jiǎn)單,安全穩(wěn)定。今天小編一步一步教大家如何開發(fā),進(jìn)行替換的短信接口是我們短信寶短信群發(fā)平臺(tái)的短信接口,我們短信寶短信接口非常穩(wěn)定,發(fā)送速度快,注冊(cè)還送測(cè)試短信,推薦大家使用。

首先我們?cè)陧?xiàng)目\home\controls\目錄下創(chuàng)建smsbao.class.php文件,代碼如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php
class smsbao_uqcms extends control{
 public function index() {
  $sql[] =  "insert into ".table('api_sms')." (`id`,`alias`,`name`,`describe`,`app_key`,`app_secret`,`sign`,`status`,`left_delimiter`,`right_delimiter`) values ('','smsbao','短信寶短信','短信寶短信:http://www.980247.com/','','','','0','{','}')";
  $sql[] = "insert into ".table('api_notice_tpl')." (`id`, `nid`, `type`, `type2`, `name`,`tpl_id`, `param`, `param2`,`content`,`status`) values ('','1','sms','smsbao','驗(yàn)證碼短信','','smscode','code','你的驗(yàn)證碼為:{code} 為保證您的賬戶安全,請(qǐng)勿泄露.','1')";
  foreach ($sql as $val) {
   if (!$query $query=$this->db->query($val)) {
    echo '執(zhí)行sql語(yǔ)句成功';
    exit;
   }
  }
  echo "<h4>UQCMS短信寶短信插件安裝成功,請(qǐng)刪除此文件。</h4>";
 }
}

接著我們打開項(xiàng)目\module\api.mod.php文件,替換代碼為:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
class api_mod extends module {
    function __construct() {
        $this->uid = @$_SESSION['user']['uid'];
        parent::__construct();
    }
    function notice($type$tpl_name$arr) {
        $query $this->notice_sms($row['username'], $row['tpl_name'], $arr);
        if ($type == 'sms' || $type == 'email' || $type == 'wxtpl') {
            if (!empty($this->uid)) {$setarr['uid'] = $this->uid;
            else { $setarr['uid'] = '0'; }
            $setarr['type'] = $type;
            $setarr['tpl_name'] = $tpl_name;
            $setarr['username'] = $arr['username'];
            unset($arr['username']);
            $setarr['content'] = serialize($arr);
            $setarr['addtime'] = time();
            $query $this->db->add(table('notice'), $setarr);
            if ($query) {
                $insert_id $this->db->insert_id();
                curl::asynGET("index.php?m=ajax&a=notice_run&id=" $insert_id);
            }
        else {   return false; }
    }
    function notice_run($id) {
        $row $this->db->get_one("select * from " . table('notice') . " where status = 0 and id = " $id);
        if ($row['id']) {
            $arr = unserialize($row['content']);
            if ($row['type'] == 'sms') {
                $query $this->notice_sms($row['username'], $row['tpl_name'], $arr);
            elseif ($row['type'] == 'wxtpl') {
                $query $this->notice_wxtpl($row['username'], $row['tpl_name'], $arr);
            elseif ($row['type'] == 'email') {
                $query $this->notice_email($row['username'], $row['tpl_name'], $arr);
            }
            if ($query['error'] == '0') {
                $starr['status'] = '1';
                $query $this->db->update(table('notice'), $starr'id = ' $id);
                if ($query) {
                    return true;
                else {
                    return false;
                }
            else {
                $starr['status'] = '2';
                $starr['remark'] = $query['msg'];
                $query $this->db->update(table('notice'), $starr'id = ' $id);
                if ($query) {
                    return true;
                else {
                    return false;
                }
            }
        }
    }
    function notice_sms($mobile$tpl_name$arr) {
        $sms_row $this->sms_row();
        $wsql " and type = 'sms' and type2 = '" $sms_row['alias'] . "'";
        $an_row $this->db->get_one("select * from " . table("api_notice") . " where alias = '" $tpl_name "' limit 1");
        if ($an_row) {
            $tpl_row $this->db->get_one("select * from " . table("api_notice_tpl") . " where nid = '" $an_row['id'] . "' " . $wsql " limit 1");
        }
        $class_name 'sms_' $sms_row['alias'];
        $sms new $class_name($sms_row['app_key'], $sms_row['app_secret']);
        $aaa explode(','$tpl_row['param']);
        $aaa2 explode(','$tpl_row['param2']);
        foreach ($aaa2 as $kk => $vv) {$parr[$vv] = $arr[$aaa[$kk]];}
        if ($sms_row['sign'] == '' || $sms_row['app_key'] == '' || $sms_row['app_secret'] == '') {
            return array('error' => '1''msg' => $sms_row['alias'] . 'APP KEY, APP SECRET, SIGN簽名不能為空');
        else {
            if (isset($parr)) {
                if ($sms_row['alias'] == 'smsbao') {
                    $exec $sms->send($mobile,$parr,$tpl_row['content'],$sms_row['sign']);
                }else{
                $exec $sms->send($mobile$parr$tpl_row['tpl_id'], $sms_row['sign']);                    
                }
                if ($exec['error'] == '0') {
                    return array('error' => '0''msg' => '發(fā)送成功');
                else {
                    return array('error' => '1''msg' => $exec['msg']);
                }
            else {
                return array('error' => '1''msg' => '系統(tǒng)提交參數(shù)錯(cuò)誤');
            }
        }
    }
    function notice_email($email$tpl_name$arr) {
        $wsql " and type = 'email'";
        $an_row $this->db->get_one("select * from " . table("api_notice") . " where alias = '" $tpl_name "' limit 1");
        if ($an_row) {
            $tpl_row $this->db->get_one("select * from " . table("api_notice_tpl") . " where nid = '" $an_row['id'] . "' " . $wsql " limit 1");
        }
        $aaa explode(','$tpl_row['param']);
        $aaa2 explode(','$tpl_row['param2']);
        $content $tpl_row['content'];
        foreach ($aaa2 as $kk => $vv) {
            $value = @$arr[$aaa[$kk]];
            $content str_replace('{' $vv '}'$value$content);
        }
        $query $this->email($email$tpl_row['name'], $content);
        if ($query) {
            return array('error' => '0''msg' => '發(fā)送成功');
        else {
            return array('error' => '1''msg' => '發(fā)送失敗');
        }
    }
    function notice_wxtpl($openid$tpl_name$arr) {
        $wsql " and type = 'wxtpl'";
        $an_row $this->db->get_one("select * from " . table("api_notice") . " where alias = '" $tpl_name "' limit 1");
        if ($an_row) {
            $tpl_row $this->db->get_one("select * from " . table("api_notice_tpl") . " where nid = '" $an_row['id'] . "' " . $wsql " limit 1");
        }
        $aaa explode(','$tpl_row['param']);
        $aaa2 explode(','$tpl_row['param2']);
        preg_match_all('#{([^}]*)#i'$tpl_row['content'], $matches);
        $aaaa $matches[1];
        foreach ($aaa2 as $kk => $vv) {
            $dat[$vv] = array('value' => isset($arr[$aaa[$kk]]) ? $arr[$aaa[$kk]] : $aaaa[$kk], 'color' => '#666666');
        }
        $data['touser'] = $openid;
        $data['url'] = $arr['link'];
        $data['template_id'] = $tpl_row['tpl_id'];
        $data['data'] = $dat;
        $url 'https://api.weixin.qq.com/cgi-bin/message/template/send?access_token=' $this->module('login_wchat')->access_token();
        $postdata = (object)$data;
        $json_data = urldecode(json_encode($postdata));
        $result = curl::post($url$json_data);
        $result = json_decode($result);
        if ($result->errcode == '0') {
            return array('error' => '0''msg' => '發(fā)送成功');
        else {
            return array('error' => '1''msg' => $result->errmsg);
        }
    }
    function notice_list($tpl_name$cname) {
        $notice_name "config/api_notice_" $tpl_name;
        $cache_arr = cache::get($notice_name);
        if (!$cache_arr) {
            $row $this->db->get_one("select * from " . table('api_notice') . " where alias = '" $tpl_name "'");
            $query $this->db->get_all("select * from " . table('api_notice_tpl') . " where nid = " $row['id'] . " and type = " $cname " and status = 1");
            if ($query) {
                foreach ($query as $k => $v) {
                    $data[] = $v;
                }
                if ($data) {
                    cache::add($notice_name$data);
                else {
                    $data array();
                    cache::add($notice_name$data);
                }
                return $data;
            else {
                return false;
            }
        else {
            return $cache_arr;
        }
    }
    function sms_row() {
        $sms_name "config/api_sms";
        $cache_arr = cache::get($sms_name);
        if (!$cache_arr) {
            $sms_row $this->db->get_one("select * from " . table('api_sms') . " where status = 1");
            cache::add($sms_name$sms_row);
            return $sms_row;
        else {
            return $cache_arr;
        }
    }
    function login_list($arr) {
        $cache_arr = cache::get("config/api_login");
        if (!$cache_arr) {
            $cache_arr $this->db->get_all("select * from " . table('api_login') . " where status = 1");
            if ($cache_arr) {
                cache::add("config/api_login"$cache_arr);
            }
        }
        $user_status = isset($arr['user_status']) ? $arr['user_status'] : false;
        if ($user_status) {
            $row $this->db->get_one("select uid,qq_uid,weibo_uid,wchat_uid from " . table('member') . " where uid = " $this->uid);
            foreach ($cache_arr as $k => $v) {
                $apiname $v['alias'] . '_uid';
                if ($row[$apiname]) {
                    $v['bind_status'] = '1';
                }
                $data[] = $v;
            }
            return $data;
        else {
            return $cache_arr;
        }
    }
    function email($from_to$subject = null, $body = null, $attachment = null) {
        require UQCMS_PATH . 'UQframework/phpmailer/class.phpmailer.php';
        $mail new PHPMailer();
        $mail->CharSet = 'UTF-8';
        $mail->IsSMTP();
        $mail->SMTPDebug = 0;
        $mail->SMTPAuth = true;
        $mail->SMTPSecure = 'ssl';
        $mail->Host = cfg('email_host');
        $mail->Port = cfg('email_port');
        $mail->Username = cfg('email_username');
        $mail->Password = cfg('email_password');
        $mail->SetFrom(cfg('email_username'), cfg('email_name'));
        $mail->Subject = $subject;
        $mail->MsgHTML($body);
        $mail->AddAddress($from_to);
        if ($mail->Send()) {
            return true;
        else {
            return false;
        }
    }
    public function notice_type($str = null) {
        $arr array('wxtpl' => '微信模板''sms' => '短信通知''email' => '郵件通知',);
        if ($str) {
            return $arr[$str];
        else {
            return $arr;
        }
    }
}

接著打開項(xiàng)目\UQframework\core\common2.php文件,替換代碼為:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
function error_404($msg) {
    header('HTTP/1.1 404 Not Found');
    header("status: 404 Not Found");
    $file_404 = UQCMS_PATH . 'public/404.html';
    if (file_exists($file_404)) {
        include $file_404;
    else {
        exit($msg);
    }
    exit;
}
function db() {
    static $dbconnect array();
    if (isset($dbconnect['db'])) {
        return $dbconnect['db'];
    else {
        $file = UQCMS_PATH . 'UQframework/core/db.class.php';
        if (file_exists($file)) {
            require ($file);
        }
        $db_cfg require_once UQCMS_PATH . 'data/dbconfig.php';
        $dbconnect['db'] = new dbi($db_cfg);
        $dbconnect['db']->conn();
        return $dbconnect['db'];
    }
}
function autoload($class) {
    $libs array('file_cache' => 'cache/file_cache''mem_cache' => 'cache/mem_cache''login_qq' => 'api/login_qq''login_weibo' => 'api/login_weibo''login_wchat' => 'api/login_wchat''oss_qiniu' => 'api/oss_qiniu''oss_aliyun' => 'api/oss_aliyun''oss_qcloud' => 'api/oss_qcloud''sms_aliyun' => 'api/sms_aliyun''sms_qcloud' => 'api/sms_qcloud''pay_alipay' => 'api/pay_alipay''pay_wxpay' => 'api/pay_wxpay''wchat' => 'api/wchat','sms_smsbao'=>'api/sms_smsbao');
    $file = UQCMS_PATH . 'UQframework' . DIRECTORY_SEPARATOR . 'class' . DIRECTORY_SEPARATOR . $class '.class.php';
    if (file_exists($file)) {
        include_once ($file);
    else {
        if (isset($libs[$class])) {
            $select_file = UQCMS_PATH . 'UQframework' . DIRECTORY_SEPARATOR . 'class' . DIRECTORY_SEPARATOR . $libs[$class] . '.class.php';
            if (file_exists($select_file)) {
                include_once ($select_file);
            else {
                error_404('autoload加載錯(cuò)誤, ERROR:' $class);
            }
        else {
            error_404('autoload加載錯(cuò)誤, ERROR:' $class);
        }
    }
}
function cfg($str = null) {
    static $cfg array();
    if (isset($cfg['cfg'])) {
        $cfg['cfg'] = $cfg['cfg'];
    else {
        $file = UQCMS_PATH . 'data' . DIRECTORY_SEPARATOR . 'site_configs.php';
        if (file_exists($file)) {
            $cfg['cfg'] = require_once $file;
        else {
            $cfglist = db()->get_all("select * from " . table('config'));
            if ($cfglist) {
                foreach ($cfglist as $k => $v) {
                    $cfg['cfg'][$v['name']] = $v['value'];
                }
            }
        }
        $develop_file = UQCMS_PATH . 'UQframework/core/development.php';
        if (file_exists($develop_file)) {
            $cfg require_once $develop_file;
        else {
            error_reporting(0);
            $cfg['cfg']['site_local'] = false;
        }
        $UQCMS_PATH str_replace('\\''/', UQCMS_PATH);
        $site_path substr($UQCMS_PATHstrlen($_SERVER['DOCUMENT_ROOT']), strlen($UQCMS_PATH));
        $site_path = ltrim($site_path'/');
        if ($site_path == '' || $site_path == '/') {
            $cfg['cfg']['site_path'] = '/';
            $cfg['cfg']['site_url'] = 'http://' $_SERVER['HTTP_HOST'] . '/';
        else {
            if (isset($cfg['cfg']['site_addr'])) {
                $cfg['cfg']['site_path'] = '/' $site_path;
                $cfg['cfg']['site_url'] = 'http://' $_SERVER['HTTP_HOST'] . '/' $site_path;
            else {
                $cfg['cfg']['site_path'] = '/';
                $cfg['cfg']['site_url'] = 'http://' $_SERVER['HTTP_HOST'] . '/';
            }
        }
        $request_addr $_SERVER['REQUEST_URI'];
        $request_url = urlencode('http://' $_SERVER['HTTP_HOST'] . $request_addr);
        $cfg['cfg']['request_url'] = $request_url;
        $user_agent $_SERVER['HTTP_USER_AGENT'];
        if (strpos($user_agent'MicroMessenger') === false) {
            if (is_mobile()) {
                $cfg['cfg']['browser'] = 'wap';
            else {
                $cfg['cfg']['browser'] = 'pc';
            }
        else {
            $cfg['cfg']['browser'] = 'wchat';
        }
    }
    if ($str == null) {
        return $cfg['cfg'];
    else {
        if (isset($cfg['cfg'][$str])) {
            return $cfg['cfg'][$str];
        else {
            return false;
        }
    }
}
function _browser_pid($position) {
    $pst array('pc' => '1''wap' => '2''wchat' => '3');
    if (isset($pst[$position])) {
        return $pst[$position];
    else {
        $bname = cfg('browser');
        return $pst[$bname];
    }
}
function mod($module_name) {
    static $mod_class array();
    if (isset($mod_class[$module_name])) {
        return $mod_class[$module_name];
    else {
        $file_mod = UQCMS_PATH . 'module/' $module_name ".mod.php";
        if (file_exists($file_mod)) {
            require_once ($file_mod);
            $modExt $module_name '_mod';
            $mod_class[$module_name] = new $modExt();
        else {
            echo '讀取的模塊不純?cè)冢?#39;;
        }
    }
    return $mod_class[$module_name];
}
function error_json($msg$name = null) {
    if (!empty($name)) {
        $arr array('error' => '1''msg' => $msg'name' => $name);
    else {
        $arr array('error' => '1''msg' => $msg);
    }
    $arrjson = json_encode($arr);
    exit($arrjson);
}
function right_json($arr1 array()) {
    $arr2 array('error' => '0');
    if (!empty($arr1)) {
        $arr array_merge($arr1$arr2);
    else {
        $arr $arr2;
    }
    $arrjson = json_encode($arr);
    exit($arrjson);
}
function sys_log($msg) {
    file_put_contents(UQCMS_PATH . 'temp/log/sys.txt'$msg . PHP_EOL, FILE_APPEND);
}
function db_log($sql) {
    file_put_contents(UQCMS_PATH . 'temp/log/mysql.txt'$sql . PHP_EOL, FILE_APPEND);
}
function img_host() {
    if (isset($imgArr)) {
        return $imgArr;
    else {
        $file = UQCMS_PATH . 'temp/config/imgHost.php';
        if (file_exists($file)) {
            $imgArr require_once $file;
        else {
            $imgArr = img_config();
        }
        return $imgArr['host'];
    }
}
function img_size($size$string = null) {
    if (isset($string_link[$size])) {
        return $string_link[$size];
    else {
        $imgArr = img_config();
        if ($imgArr['alias'] == '') {
            if ($string) {
                return $string_link[$size] = $string;
            else {
                return $string_link[$size] = '';
            }
        else {
            $sizeArr explode('x'$size);
            $ossname 'oss_' $imgArr['alias'];
            $conn_link $ossname::img_size($sizeArr[0], $sizeArr[1]);
            if ($string) {
                return $string_link[$size] = $string $conn_link;
            else {
                return $string_link[$size] = $conn_link;
            }
        }
    }
}
function img_config() {
    $file = UQCMS_PATH . 'temp/config/imgOss.php';
    if (file_exists($file)) {
        $imgArr include $file;
    else {
        $row = db()->get_one("select id,alias,host from " . table('api_oss') . " where status = 1");
        if ($row['host']) {
            $imgArr['alias'] = $row['alias'];
            $imgArr['host'] = '//' $row['host'] . '/';
        else {
            $imgArr['alias'] = '';
            $imgArr['host'] = '';
        }
        file_put_contents('temp/config/imgOss.php'"<?php \r\n return " . var_export($imgArr, true) . ";");
    }
    return $imgArr;
}
function P($name$msg ''$default_value '') {
    if ($msg === false || $msg === 0) {
        return !empty($_POST[$name]) ? trim($_POST[$name]) : false;
    else {
        if ($default_value || $default_value == '0') {
            return !empty($_POST[$name]) ? trim($_POST[$name]) : $default_value;
        else {
            if (empty($msg)) {
                return !empty($_POST[$name]) ? trim($_POST[$name]) : '';
            else {
                return !empty($_POST[$name]) ? trim($_POST[$name]) : error_json($msg$name);
            }
        }
    }
}
function _date($time) {
    if ($time == '0' || $time == '') {
    else {
        return date('Y-m-d H:s'$time);
    }
}

最后我們?cè)陧?xiàng)目\UQframework\class\api\下創(chuàng)建sms_smsbao.class.php文件,代碼如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?php
 
class sms_smsbao extends module
{
 
 function __construct($app_id,$app_key)
 {
  $this->app_id = $app_id;
  $this->app_key = $app_key;
  $this->url = 'http://api.smsbao.com/sms?';
 }
 
 function send($mobile,$param_arr,$content,$sign=null)
 {
 
  foreach ($param_arr as $key => $value) {
   $content str_replace("{".$key."}"$value$content);
  }
  $contents "【".$sign."】".$content
  
  $url $this->url.'u='.$this->app_id.'&p='.md5($this->app_key).'&m='.$mobile.'&c='.$contents;
 
 
        if (function_exists('file_get_contents')) {
            $ret file_get_contents($url);
        }else{
            $ch = curl_init();
            $timeout = 5;
            curl_setopt($ch, CURLOPT_URL, $url);
            curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
            curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
            $ret = curl_exec($ch);
            curl_close($ch);
        }
 
        if ($ret == 0) {
         $result_info['error'] = '0';
         $result_info['msg'] = '發(fā)送成功';
         return $result_info;
        }else{
         $result_info['error'] = '1';
         $result_info['msg'] = $ret;
         return $result_info;
        }
 
 
 
 }
 
 
 private static $instance;
    public static function init() {
        if (is_null(self::$instance)) {
            self::$instance new self();
        }
        return self::$instance;
    }
}

好了,經(jīng)過(guò)以上的替換,短信寶的短信平臺(tái)已經(jīng)替換成功了,可以正常使用了。我們進(jìn)行測(cè)試發(fā)送。

報(bào)備一下短信寶的VIP模板,這樣就可以走短信寶的優(yōu)質(zhì)通道了,即便遇到敏感文字我們都不會(huì)人工審核,短信內(nèi)容3~5秒就可送達(dá)。

另外:我們已經(jīng)開發(fā)好完整的UQCMS云商系統(tǒng)短信寶插件,點(diǎn)擊此鏈接 下載及查看安裝流程。

開源插件

最新更新

電商類

CMS類

微信類

文章標(biāo)簽
精品深夜福利视频,日本中文字幕不卡,久久久久国产,av综合电影网站
麻豆网站免费在线观看| 久久久久国产一区二区| 亚洲一区观看| 午夜欧美理论片| 婷婷色综合网| 亚洲无线一线二线三线区别av| 欧美日韩国产观看视频| 黄色在线网站噜噜噜| www.com.cn成人| 亚洲成av在线| 欧美~级网站不卡| 美女被久久久| 久久福利毛片| 天堂va在线高清一区| 蜜臀久久99精品久久久久宅男| 视频一区视频二区在线观看| 一区二区精品| 国产亚洲欧美日韩精品一区二区三区 | 亚洲一区二区三区免费在线观看| 欧美综合二区| 婷婷久久免费视频| 91麻豆精品激情在线观看最新| 国产精品蜜月aⅴ在线| 国产一区二区三区黄网站| 国产一区三区在线播放| se01亚洲视频 | 98精品久久久久久久| 999国产精品永久免费视频app| 亚洲免费成人| 日韩中文字幕无砖| 久久亚洲道色| 久久久精品午夜少妇| 在线视频亚洲| 青青草伊人久久| 成人在线视频免费看| 国产综合激情| 最新日韩欧美| 国产精品传媒麻豆hd| 亚洲1234区| 国产亚洲午夜| 国产欧美激情| 另类中文字幕国产精品| 蜜臀av性久久久久蜜臀aⅴ流畅| 久久国产欧美日韩精品| 一本大道色婷婷在线| 亚洲欧美日本视频在线观看| 国产精区一区二区| 黄色在线网站噜噜噜| 日韩在线播放一区二区| 欧美成人一二区| 四虎4545www国产精品 | 丁香六月综合| 亚洲综合二区| 欧美欧美黄在线二区| 美女网站视频一区| 免费美女久久99| 成人一二三区| 亚洲乱码视频| 92国产精品| 亚洲精品自拍| 欧美好骚综合网| 亚洲aa在线| 国产一区二区三区日韩精品| 国产毛片久久| 成人黄色av| 欧美性www| 视频一区中文| 精品资源在线| 亚洲开心激情| 天堂√中文最新版在线| 亚洲三区欧美一区国产二区| 日韩1区2区| 亚洲欧美久久精品| 91精品国产91久久久久久黑人| 国产日产一区| 黑丝一区二区三区| 热三久草你在线| 亚洲精品免费观看| 日韩欧美一区免费| 欧美综合精品| 99国产精品99久久久久久粉嫩| 大香伊人久久精品一区二区| 日韩高清不卡一区二区| 不卡在线一区二区| 精品国产乱码久久久久久1区2匹| 亚洲va久久久噜噜噜久久| 日韩精品免费一区二区三区| 国产精品xxx在线观看| 久久最新视频| 激情六月综合| 精品高清久久| 91成人小视频| 美女网站一区| 中国字幕a在线看韩国电影| 7777精品| 亚洲精品婷婷| 久久国产精品久久w女人spa| 蜜臀国产一区| 精品黄色一级片| 国产日产精品_国产精品毛片| 伊人久久大香伊蕉在人线观看热v| 久久夜夜操妹子| 韩国一区二区三区视频| 国产美女久久| 欧美日本不卡高清| 日韩一区二区三区精品视频第3页| 蘑菇福利视频一区播放| 欧美日韩一区二区综合| 国产va在线视频| 福利一区视频| 国产传媒在线观看| 韩国女主播一区二区三区| 久久久免费人体| 久久av国产紧身裤| 国产图片一区| 国产精品入口久久| 国产欧美91| 久久精品国产免费| 另类欧美日韩国产在线| 免费一区二区三区在线视频| 国产精品99久久免费| 国产精品xxx在线观看| 国产日韩欧美一区二区三区在线观看| 四虎在线精品| 日韩精品91亚洲二区在线观看| 亚洲日产国产精品| 日韩一区二区三免费高清在线观看| 男女激情视频一区| 婷婷五月色综合香五月| 欧美日本一区| 美女久久久精品| 久草免费在线视频| 久久国产电影| 国产一级久久| 亚洲综合图色| 91麻豆精品| 国内揄拍国内精品久久| 欧美韩日一区| 久久亚洲国产| 国产精品试看| 日本成人中文字幕在线视频| 国产美女精品视频免费播放软件| 久久久久久亚洲精品美女| 日韩精品电影| 亚洲一区日本| 国产亚洲字幕| 日韩欧美精品综合| 亚洲一区二区免费看| 婷婷综合成人| 久久99久久久精品欧美| 日韩理论片av| 久久xxxx精品视频| 日韩欧美中文字幕在线视频| 国产欧美自拍| 久久男人天堂| 视频一区二区三区入口| 日韩精品社区| 国产一区调教| 在线日韩欧美| 日本亚州欧洲精品不卡| 麻豆一区在线| 激情久久婷婷| 日本欧美一区二区在线观看| 国产一区二区三区成人欧美日韩在线观看| 免费在线小视频| 伊人精品久久| 精品国产美女a久久9999| 99久久夜色精品国产亚洲1000部| 日韩中文字幕亚洲一区二区va在线| 国产日本亚洲| 欧美综合另类| 欧美日本一区| 亚洲大片在线| 日本不卡一二三区黄网| 9999国产精品| 一区二区高清| 日本久久综合| 亚洲精品一级| 91视频一区| 蜜臀va亚洲va欧美va天堂| 老司机精品视频在线播放| 91久久视频| 麻豆国产一区| 丝袜诱惑制服诱惑色一区在线观看 | 欧美亚洲国产日韩| 日本不良网站在线观看| 亚洲精品一级| 成人日韩在线观看| 91综合久久爱com| 欧洲av不卡| 国产精品天堂蜜av在线播放| 99视频精品| 成人精品国产亚洲| 亚洲ww精品| 欧美日韩在线观看视频小说| 国产一区 二区| 国产午夜精品一区二区三区欧美| 精品视频网站| 婷婷精品在线| 欧美va天堂在线|