PHP版的Windows Phone推送功能

经过几天的捣鼓,终于搞定了PHP版的Windows Phone推送功能(Toast通知)。

推送流程:
1.手机上部署XAP,然后获取到手机的通知管道URI。
2.通过通知管道URI向MPNS发送通知数据。
3.MPNS向手机推送通知。

推送流程

具体参考:http://msdn.microsoft.com/zh-cn/library/ff402558(v=vs.92)

推送成功效果图:
通知成功

PHP代码:

/**
*Windows Phone 7 Push Notification in php by Rudy HUYN
**/
final class WindowsPhonePushDelay
{

const Immediate=0;
const In450Sec=10;
const In900Sec=20;

private function __construct(){}
}

class WindowsPhonePushNotification
{
private $notif_url = '';

function WindowsPhonePushNotification($notif_url)
{
$this->notif_url = $notif_url;
}

/**
* Toast notifications are system-wide notifications that do not disrupt the user workflow or require intervention to resolve. They are displayed at the top of the screen for ten seconds before disappearing. If the toast notification is tapped, the application that sent the toast notification will launch. A toast notification can be dismissed with a flick.
* Two text elements of a toast notification can be updated:
* Title. A bolded string that displays immediately after the application icon.
* Sub-title. A non-bolded string that displays immediately after the Title.
*/
public function push_toast($title, $subtitle,$delay = WindowsPhonePushDelay::Immediate, $message_id=NULL)
{
$msg =    "" .
"" .
"" .
"".htmlspecialchars($title)."" .
"".htmlspecialchars($subtitle)."" .
"" .
"";

return $this->push('toast',$delay+2,$message_id, $msg);
}

/**
*A Tile displays in the Start screen if the end user has pinned it. Three elements of the Tile can be updated:
*@background_url : You can use a local resource or remote resource for the background image of a Tile.
*@title : The Title must fit a single line of text and should not be wider than the actual Tile. If this value is not set, the already-existing Title will display in the Tile.
*@count. an integer value from 1 to 99. If not set in the push notification or set to any other integer value, the current Count value will continue to display.
*/
public function push_tile($background_url, $title, $count, $delay = WindowsPhonePushDelay::Immediate,$message_id=NULL)
{
$msg =     "" .
"" .
"" .
"".htmlspecialchars($background_url)."" .
"$count" .
"".htmlspecialchars($title)."" .
"" .
"";

return $this->push('token',$delay+1, $message_id,$msg);
}

/**
* If you do not wish to update the Tile or send a toast notification, you can instead send raw information to your application using a raw notification. If your application is not currently running, the raw notification is discarded on the Microsoft Push Notification Service and is not delivered to the device. The payload of a raw notification has a maximum size of 1 KB.
*/
public function push_raw($data, $delay = WindowsPhonePushDelay::Immediate,$message_id=NULL)
{
return $this->push(NULL,$delay+3,$message_id, $data);
}

/**
*@target : type of notification
*@delay : immediate, in 450sec or in 900sec
*@message_id : The optional custom header X-MessageID uniquely identifies a notification message. If it is present, the same value is returned in the notification response. It must be a string that contains a UUID
*/
private function push($target,$delay,$message_id,$msg)
{

$sendedheaders=  array(
'Content-Type: text/xml',
'Accept: application/*',
"X-NotificationClass: $delay"
);
if($message_id!=NULL)
$sendedheaders[]="X-MessageID: $message_id";
if($target!=NULL)
$sendedheaders[]="X-WindowsPhone-Target:$target";

$req = curl_init();
curl_setopt($req, CURLOPT_HEADER, true);
curl_setopt($req, CURLOPT_HTTPHEADER,$sendedheaders);
curl_setopt($req, CURLOPT_POST, true);
curl_setopt($req, CURLOPT_POSTFIELDS, $msg);
curl_setopt($req, CURLOPT_URL, $this->notif_url);
curl_setopt($req, CURLOPT_RETURNTRANSFER, 1);
$response = curl_exec($req);
curl_close($req);

$result=array();
foreach(explode("\n",$response) as $line)
{
$tab=explode(":",$line,2);
if(count($tab)==2)
$result[$tab[0]]=trim($tab[1]);
}
return $result;
}
}

代码来自:http://jpsolution.wordpress.com/tag/push-notification-for-windows-phone-7-in-php/
其他参考资料:http://www.daveamenta.com/2010-11/send-push-notifications-to-windows-phone-7-from-php/

标签: WindowsPhone

添加新评论