我正在开发一个PHP脚本,该脚本定期通过IMAP检查用户收件箱中的新邮件。该脚本保留与IMAP服务器的开放连接,并每5秒抓取一次最新消息的UID。如果UID大于最初记录的比较UID,则脚本向用户的iPhone发送推送通知,通知他/她有可用的新消息,将新的UID记录为比较UID,并继续检查新消息以这种方式。这是脚本:
<?php
$server = '{imap.gmail.com:993/ssl}';
$login = 'email_address@gmail.com';
$password = 'my_email_password';
$connection = imap_open($server, $login, $password) OR die ("can't connect: " . imap_last_error());
$imap_obj = imap_check($connection);
$number = $imap_obj->Nmsgs;
$uid = imap_uid($connection, $number);
//infinite loop, need to add some sort of escape condition...
for(;;){
$imap_obj = imap_check($connection);
$number = $imap_obj->Nmsgs;
//if there is a new message send push notification
if(imap_uid($connection, $number) > $uid){
$uid = imap_uid($connection, $number);
$result = imap_fetch_overview($connection,$number,0);
$message = $result[0]->subject;
$deviceToken = 'xxxxxxxxxxxxxxxxxx';
$passphrase = 'my_secret_password';
$ctx = stream_context_create();
stream_context_set_option($ctx, 'ssl', 'local_cert', 'ck.pem');
stream_context_set_option($ctx, 'ssl', 'passphrase', $passphrase);
$fp = stream_socket_client(
'ssl://gateway.sandbox.push.apple.com:2195', $err,
$errstr, 60, STREAM_CLIENT_CONNECT|STREAM_CLIENT_PERSISTENT, $ctx);
if (!$fp)
exit("Failed to connect: $err $errstr" . PHP_EOL);
echo 'Connected to APNS' . PHP_EOL;
// Create the payload body
$body['aps'] = array(
'alert' => $message,
'sound' => 'default'
);
// Encode the payload as JSON
$payload = json_encode($body);
// Build the binary notification
$msg = chr(0) . pack('n', 32) . pack('H*', $deviceToken) . pack('n', strlen($payload)) . $payload;
// Send it to the server
$result = fwrite($fp, $msg, strlen($msg));
if (!$result)
//echo 'Message not delivered' . PHP_EOL;
else
//echo 'Message successfully delivered' . PHP_EOL;
// Close the connection to the server
fclose($fp);
}
sleep(5);
}
imap_close($connection);
?>
这很有效。但对我来说这似乎非常低效。每个额外的用户都与IMAP服务器保持无限连接,并且每隔几秒检查一次新消息,这看起来很愚蠢。
有更好的方法吗?使用示例PHP代码/代码链接(这将是理想的,我会永远爱你)或抽象术语(会产生类似但不那么无条件的崇拜)可以有人解释这类任务的最佳实践吗?
谢谢! 詹姆斯
答案 0 :(得分:0)
无法使用CRON之类的东西来安排脚本每30秒运行一次,这会为每个用户保留最后一个UID的db记录,然后在本地搜索每个用户邮箱(通过本地shell而不是imapd连接),如果是特定用户有一条新消息,推送通知并在DB中更新该用户的最新UID ...
这假设PHP脚本存在于邮件服务器上并且您具有root访问权限。