如何通过 PHP 使用通知中心

如 MSDN 主题通知中心 REST API 中所述,可以使用通知中心 REST 接口从 Java/PHP/Ruby 后端访问所有通知中心功能。

本主题中,我们将向你介绍如何:

客户端接口

主要的客户端接口可提供 .NET 通知中心 SDK 中提供的相同方法,这允许直接翻译当前此站点上提供的所有教程和示例,这些内容均来自 Internet 上的社区。

可以在 PHP REST 包装器示例中找到提供的所有代码。

例如,创建客户端:

$hub = new NotificationHub("connection string", "hubname");

发送 iOS 本机通知:

$notification = new Notification("apple", '{"aps":{"alert": "Hello!"}}');
$hub->sendNotification($notification, null);

实现

如果尚未实现,请按照[入门教程]学至最后一节,必须在此过程中实现后端。 此外,如果希望可以使用 PHP REST 包装器示例中的代码并直接转到完成本教程部分。

有关实现完整 REST 包装器的所有详细信息,请访问 MSDN。 本部分介绍了访问通知中心 REST 终结点所需的主要步骤的 PHP 实现:

  1. 解析连接字符串
  2. 生成授权令牌
  3. 执行 HTTP 调用

解析连接字符串

下面是实现客户端的主类,其构造函数将解析连接字符串:

class NotificationHub {
    const API_VERSION = "?api-version=2013-10";

    private $endpoint;
    private $hubPath;
    private $sasKeyName;
    private $sasKeyValue;

    function __construct($connectionString, $hubPath) {
        $this->hubPath = $hubPath;

        $this->parseConnectionString($connectionString);
    }

    private function parseConnectionString($connectionString) {
        $parts = explode(";", $connectionString);
        if (sizeof($parts) != 3) {
            throw new Exception("Error parsing connection string: " . $connectionString);
        }

        foreach ($parts as $part) {
            if (strpos($part, "Endpoint") === 0) {
                $this->endpoint = "https" . substr($part, 11);
            } else if (strpos($part, "SharedAccessKeyName") === 0) {
                $this->sasKeyName = substr($part, 20);
            } else if (strpos($part, "SharedAccessKey") === 0) {
                $this->sasKeyValue = substr($part, 16);
            }
        }
    }
}

创建安全令牌

请参阅 Azure 文档来了解有关如何创建 SAS 安全令牌的信息。

generateSasToken 方法添加到 NotificationHub 类,以便根据当前请求的 URI 和提取自连接字符串的凭据创建令牌。

private function generateSasToken($uri) {
    $targetUri = strtolower(rawurlencode(strtolower($uri)));

    $expires = time();
    $expiresInMins = 60;
    $expires = $expires + $expiresInMins * 60;
    $toSign = $targetUri . "\n" . $expires;

    $signature = rawurlencode(base64_encode(hash_hmac('sha256', $toSign, $this->sasKeyValue, TRUE)));

    $token = "SharedAccessSignature sr=" . $targetUri . "&sig="
                . $signature . "&se=" . $expires . "&skn=" . $this->sasKeyName;

    return $token;
}

发送通知

首先,让我们定义表示通知的类。

class Notification {
    public $format;
    public $payload;

    # array with keynames for headers
    # Note: Some headers are mandatory: Windows: X-WNS-Type, WindowsPhone: X-NotificationType
    # Note: For Apple you can set Expiry with header: ServiceBusNotification-ApnsExpiry in W3C DTF, YYYY-MM-DDThh:mmTZD (for example, 1997-07-16T19:20+01:00).
    public $headers;

    function __construct($format, $payload) {
        if (!in_array($format, ["template", "apple", "windows", "baidu", "windowsphone"])) {
            throw new Exception('Invalid format: ' . $format);
        }

        $this->format = $format;
        $this->payload = $payload;
    }
}

此类是一个容器,其中包含本机通知正文或一组模板通知上的属性,以及一组包含格式(本机平台或模板)和平台特定属性(如 Apple 过期属性和 WNS 标头)的标头。

请参阅通知中心 REST API 文档和具体的通知平台格式,了解所有可用选项。

具备了此类后,我们现在可以在 NotificationHub 类中编写发送通知方法了:

public function sendNotification($notification, $tagsOrTagExpression="") {
    if (is_array($tagsOrTagExpression)) {
        $tagExpression = implode(" || ", $tagsOrTagExpression);
    } else {
        $tagExpression = $tagsOrTagExpression;
    }

    # build uri
    $uri = $this->endpoint . $this->hubPath . "/messages" . NotificationHub::API_VERSION;
    $ch = curl_init($uri);

    if (in_array($notification->format, ["template", "apple", "baidu"])) {
        $contentType = "application/json";
    } else {
        $contentType = "application/xml";
    }

    $token = $this->generateSasToken($uri);

    $headers = [
        'Authorization: '.$token,
        'Content-Type: '.$contentType,
        'ServiceBusNotification-Format: '.$notification->format
    ];

    if ("" !== $tagExpression) {
        $headers[] = 'ServiceBusNotification-Tags: '.$tagExpression;
    }

    # add headers for other platforms
    if (is_array($notification->headers)) {
        $headers = array_merge($headers, $notification->headers);
    }

    curl_setopt_array($ch, array(
        CURLOPT_POST => TRUE,
        CURLOPT_RETURNTRANSFER => TRUE,
        CURLOPT_SSL_VERIFYPEER => FALSE,
        CURLOPT_HTTPHEADER => $headers,
        CURLOPT_POSTFIELDS => $notification->payload
    ));

    // Send the request
    $response = curl_exec($ch);

    // Check for errors
    if($response === FALSE){
        throw new Exception(curl_error($ch));
    }

    $info = curl_getinfo($ch);

    if ($info['http_code'] <> 201) {
        throw new Exception('Error sending notification: '. $info['http_code'] . ' msg: ' . $response);
    }
} 

以上方法将 HTTP POST 请求发送到通知中心的 /messages 终结点,该请求具有发送通知的正确正文和标头。

完成教程

现在,可以通过从 PHP 后端发送通知来完成该入门教程。

初始化通知中心客户端(按[入门教程]中所述替换连接字符串和中心名称):

$hub = new NotificationHub("connection string", "hubname");

然后,根据目标移动平台添加发送代码。

Windows 应用商店和 Windows Phone 8.1(非 Silverlight)

$toast = '<toast><visual><binding template="ToastText01"><text id="1">Hello from PHP!</text></binding></visual></toast>';
$notification = new Notification("windows", $toast);
$notification->headers[] = 'X-WNS-Type: wns/toast';
$hub->sendNotification($notification, null);

iOS

$alert = '{"aps":{"alert":"Hello from PHP!"}}';
$notification = new Notification("apple", $alert);
$hub->sendNotification($notification, null);

Android

$message = '{"data":{"msg":"Hello from PHP!"}}';
$notification = new Notification("baidu", $message);
$hub->sendNotification($notification, null);

Windows Phone 8.0 和 8.1 Silverlight

$toast = '<?xml version="1.0" encoding="utf-8"?>' .
            '<wp:Notification xmlns:wp="WPNotification">' .
               '<wp:Toast>' .
                    '<wp:Text1>Hello from PHP!</wp:Text1>' .
               '</wp:Toast> ' .
            '</wp:Notification>';
$notification = new Notification("windowsphone", $toast);
$notification->headers[] = 'X-WindowsPhone-Target : toast';
$notification->headers[] = 'X-NotificationClass : 2';
$hub->sendNotification($notification, null);

Kindle Fire

$message = '{"data":{"msg":"Hello from PHP!"}}';
$notification = new Notification("adm", $message);
$hub->sendNotification($notification, null);

运行 PHP 代码,现在应该生成显示在目标设备上的通知。

后续步骤

在本主题中,我们介绍了如何为通知中心创建简单的 PHP REST 客户端。 可以从此页执行下列操作:

  • 下载完整的 PHP REST 包装器示例,其中包含上述所有代码。
  • 在 [突发新闻教程] 中继续学习通知中心标记功能
  • 在 [通知用户教程] 中了解如何将通知推送到单个用户

有关详细信息,另请参阅 PHP 开发人员中心

使用 Azure 通知中心向 iOS 应用发送推送通知