微信公众平台模拟登陆上传素材(求助nodejs转php)
MPWechat.prototype.uploadMedia = function(medianame,reqData,callback){
tools.log('uploadMedia start ...');
var boundary = 'tvmin';
var max = 9007199254740992;
var dec = Math.random() * max;
var hex = boundary + dec.toString(36);
var mimes = {
//image
'.bmp': 'image/bmp',
'.png': 'image/png',
'.gif': 'image/gif',
'.jpg': 'image/jpeg',
'.jpeg': 'image/jpeg',
/oice
'.mp3': 'audio/mp3',
'.wav': 'audio/x-wav',
'.amr': 'audior',
'.wma': 'audio/x-ms-wma',
/ideo
'.mp4': 'video/mp4',
'.rm': 'video/rm',
'.rmvb': 'videond.rn-realvideo',
'.wmv': 'video/x-ms-wmv',
'.avi': 'video/x-msvideo',
'.mpg': 'video/mpeg',
'.mpeg': 'video/mpeg'
};
var ext = path.extname(medianame).toLowerCase();
var mime = mimes[ext];
var boundaryKey = '----WebKitFormBoundary' + hex;
var payload = '\r\n\r\n--' + boundaryKey + '\r\n'
+ 'Content-Disposition: form-data; name="uploadfile"; filename="'+ medianame +'"\r\n'
+ 'Content-Type: '+ mime +'\r\n\r\n';
var enddata = '\r\n--' + boundaryKey + '\r\n'
+ 'Content-Disposition: form-data; name="formId"\r\n\r\n'
+ '--' + boundaryKey + '--';
var contentLength = Buffer.byteLength(payload,'utf8') + reqData.length + Buffer.byteLength(enddata,'utf8');
var options = {
host: host,
port: 443,
method: 'POST',
path: '/cgi-bin/uploadmaterial?cgi=uploadmaterial&type=0&token='+ this.token +'&t=iframe-uploadfile&lang=zh_CN&formId=null',
headers: {
'Content-Type': 'multipart/form-data; boundary='+boundaryKey,
'Content-Length': contentLength,
'User-Agent': 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.43 Safari/537.31',
'Cookie': this.cookie,
'Referer': 'https://'+ host +'/cgi-bin/indexpage?token='+ this.token +'&lang=zh_CN&t=wxm-upload&lang=zh_CN&type=0&fromId=file_from_1341151893625'
}
};
var req = https.request(options, function(response) {
var statusCode = response.statusCode;
// console.log('STATUS: ' + statusCode,options);
response.setEncoding('utf8');
var data = '';
response.on('data', function(chunk) {
data += chunk;
}).on('end',function(){
callback(data.match(/formId, '(\d+)'/)[1]);
});
});
req.write(payload,'utf8');
req.write(reqData,'binary');
req.write(enddata,'utf8');
req.end();
req.on('error', function(e) {
console.error("error:"+e);
});
};
//接口上传
public function pictures($data,$file){
$cookie =$this->read('cookie.log');
$cooken = self::read2('cooken.log');
$https = new https;
$referer = 'https://mp.weixin.qq.com/cgi-bin/indexpage?token=';
$referer .= $cooken.'&lang=zh_CN&t=wxm-upload&lang=zh_CN&type=0&fromId=file_from_1341151893625'; //伪装来源页地址
$submit = 'https://mp.weixin.qq.com/cgi-bin/uploadmaterial?cgi=uploadmaterial&type=0&token=';
$submit .= $cooken.'&t=iframe-uploadfile&lang=zh_CN&&formId=null';//图片提交地址
$ext = strtolower(trim(substr(strrchr($file, '.'), 1, 10)));
if($ext == '') return "对不起,文件名错误!";
$mime_types = array (
//image 支持的图片
'bmp' => 'image/bmp',
'png' => 'image/png',
'gif' => 'image/gif',
'jpg' => 'image/jpeg',
'jpeg' => 'image/jpeg',
//oice 支持的语音
'mp3' => 'audio/mp3',
'wav' => 'audio/x-wav',
'amr' => 'audior',
'wma' => 'audio/x-ms-wma',
//ideo 支持的视频
'mp4' => 'video/mp4',
'rm' => 'video/rm',
'rmvb' => 'videond.rn-realvideo',
'wmv' => 'video/x-ms-wmv',
'avi' => 'video/x-msvideo',
'mpg' => 'video/mpeg',
'mpeg' => 'video/mpeg'
);
$mime = isset($mime_types[$ext]) ? $mime_types[$ext] : '';
$hexken = self::randStr(15);
if (empty($title)){
$medianame = self::randStr(10).'.'.$ext;// 设置文件名
}else{
$medianame = $file;
}
$boundaryKey = '----WebKitFormBoundary'.$hexken;
$enddata = "\r\n\r\n--".$boundaryKey."\r\n";
$enddata .= 'Content-Disposition: form-data; name="uploadfile"; filename="'.$medianame.'"';
$enddata .= "\r\nContent-Type: ".$mime."\r\n\r\n".$data;
$enddata .= "\r\n--".$boundaryKey."\r\n";
$enddata .= 'Content-Disposition: form-data; name="formId"';
$enddata .= "\r\n\r\n--".$boundaryKey.'--';
//echo $enddata;
//file_put_contents("./data/f1.txt", date('c')."\r\n".$content."\r\n",FILE_APPEND);
$result = $https->submit($submit,$enddata,$cookie,$referer);
$results =$result['body'];
file_put_contents("./data/data.txt", date('c')."\r\n".$results."\r\n",FILE_APPEND);
echo $results;
if(preg_match("/登录超时.*重新登录/", $results)){
//echo "登陆超时,发送出错!";
set_time_limit(30);
sleep(2);
self::login();
self::qsend($content,$type);
}
//$result = json_decode($results,true);
if(preg_match("/上传成功/", $results)){
echo "恭喜,文件上传成功!";
}else if (preg_match("/上传文件失败/", $results)){
echo "对不起,上传文件失败!";
//echo var_dump($_SERVER);$_SERVER[PATH_TRANSLATED];
}else {
echo "群发失败!";
}
return $result;
}
public function randStr($len=6){
$chars='ABDEFGHJKLMNPQRSTVWXYkfbd23456789'; // characters to build the password from
//ABDEFGHJKLMNPQRSTVWXYabdefghijkmnpqrstvwxy23456789#%*
mt_srand((double)microtime()*1000000*getmypid()); // seed the random number generater (must be done)
$password='';
while(strlen($password)<$len)
$password.=substr($chars,(mt_rand()%strlen($chars)),1);
return $password;
}