如何从不同的子域注册服务工作者

时间:2015-08-07 07:19:21

标签: javascript service-worker progressive-web-apps

我有两个子域:https://abc.xxxx.comhttps://xyz.xxxx.com。所以我的问题:

  

1)。是否可以注册服务工作者   来自https://xyz.xxxx.comhttps://abc.xxxx.com?如果是,那怎么样?

     

2)。如果http://abc.xxxx.com http 不安全),那么无论如何要注册   来自https://xyz.xxxx.comhttp://abc.xxxx.com的服务工作人员,例如iframe或其他......

这是一个真实的情况,我正面临着我的多个子域名。任何帮助赞赏。提前谢谢。

4 个答案:

答案 0 :(得分:14)

以下是一些一般性答案,我认为应该解决您在问题中提出的各种观点:

  • 每个注册的服务工作者都有一个关联的scope,它指示服务工作者可以控制的一组网页。服务工作者的scope是URL,该URL必须与注册服务工作者的页面具有相同的来源,并且必须是与页面或路径对应的路径级别的URL这是一个或多个级别。默认scope对应于与服务工作者脚本的位置相同的路径级别。由于此限制,无法从一个(子)域上的页面调用navigator.serviceWorker.register(...),最终得到控制另一个(子)域上的页面的服务工作者。

  • 有一些限制措施可以阻止您在https:页面上投放<iframe> http:并使用该注册表来注册服务工作者。请参阅DOMException when registering service worker inside an https iframe

  • 虽然我不知道它与您的问题直接相关,但在服务工作者代码中明确调用fetch() http:资源将导致当前版本的Chrome失败,因为服务工作者不允许混合内容fetch()。我不知道事情是否100%在这方面得到解决,this open bug仍然相关。

如果您的页面同时存在于abc.123.comxyz.123.com,并且您希望两组页面都由服务工作者控制,那么您需要有两个单独的服务工作者注册。每个注册都需要提供服务工作者JS文件的副本,该文件托管在与顶级页面对应的相应域上,并且需要通过https:访问所有页面和服务工作者脚本。

话虽如此,您可以通过在网页上包含跨域<iframe>来启动其他域的服务工作者注册,但主页和{{ 1}}需要通过<iframe>投放。正常的服务工作者范围限制适用,因此,例如,如果要为覆盖整个https:范围的其他域注册服务工作者,则需要确保服务工作者脚本的位置正在注册的是顶级的,例如https://other-domain.com/,而不是https://other-domain.com/service-worker.js。这是AMP project通过<amp-install-serviceworker> element使用的方法。

答案 1 :(得分:2)

Service Worker scripts must be hosted at the same origin (Protocol + Domain name + Port).每个子域都被视为不同的源,因此,您需要为每个子域注册一个服务工作者。每个工作人员都有自己的cachescope

答案 2 :(得分:0)

尝试使用Ngnix proxy_pass。这对我有用。

答案 3 :(得分:-1)

我的坏,我误解了一下。好吧,这是代码

if('serviceWorker' in navigator){
    if(window.location.pathname != '/'){
        //register with API
        if(!navigator.serviceWorker.controller) navigator.serviceWorker.register('/service-worker', { scope: '/' });
        //once registration is complete
        navigator.serviceWorker.ready.then(function(serviceWorkerRegistration){
            //get subscription
            serviceWorkerRegistration.pushManager.getSubscription().then(function(subscription){

                //enable the user to alter the subscription
                //jquery selector for enabling whatever you use to subscribe.removeAttr("disabled");
                //set it to allready subscribed if it is so
                if(subscription){
                    //code for showing the user that they're allready subscribed
                }
            });
        });
    }   
}else{  
    console.warn('Service workers aren\'t supported in this browser.');  
}

然后是您的订阅/取消订阅

的事件
// subscribe or unsubscribe to the ServiceWorker
$(document.body).on('change', /*selector*/, function(){
    //new state is checked so we subscribe
    if($(this).prop('checked')){
        navigator.serviceWorker.ready.then(function(serviceWorkerRegistration){
            serviceWorkerRegistration.pushManager.subscribe()  
                .then(function(subscription){  
                    // The subscription was successful  
                    console.log('subscription successful'); //subscription.subscriptionId

                    //save in DB - this is important because 
                    $.post($('#basePath').val() + 'settings/ajax-SW-sub/', {id:subscription.subscriptionId}, function(data){
                        //console.log(data);
                    }, 'json');

                    }).catch(function(e) {  
                        if (Notification.permission === 'denied') {  
                            // The user denied the notification permission which  
                            // means we failed to subscribe and the user will need  
                            // to manually change the notification permission to  
                            // subscribe to push messages
                            console.warn('Permission for Notifications was denied');
                        } else {  
                            // A problem occurred with the subscription; common reasons  
                            // include network errors, and lacking gcm_sender_id and/or  
                            // gcm_user_visible_only in the manifest.  
                            console.error('Unable to subscribe to push.', e);
                        }  
                    });  
        });//*/
    //new state us unchecked so we unsubscribe
    }else{
        $('.js-enable-sub-test').parent().removeClass('checked');
        //get subscription
        navigator.serviceWorker.ready.then(function(reg) {
            reg.pushManager.getSubscription().then(function(subscription) {
                //unregister in db
                $.post($('#basePath').val() + 'settings/ajax-SW-unsub/', {id:subscription.subscriptionId}, function(data){
                    //console.log(data);
                }, 'json');

                //remove subscription from google servers
                subscription.unsubscribe().then(function(successful) {
                    // You've successfully unsubscribed
                    console.log('unsubscribe successful');
                }).catch(function(e) {
                    // Unsubscription failed
                    console.log('unsubscribe failed', e);
                })
            })        
        });//*/
    }
});

之后,您需要在google开发者控制台上注册一个帐户,并注册类似* .xxxx.com的项目。然后你需要用gcm_sender_id和gcm_user_visible_only

获得一个合适的清单json

您需要为服务器和浏览器应用程序创建一个密钥,此页面上有更多相关信息。

https://developers.google.com/web/updates/2015/03/push-notificatons-on-the-open-web?hl=en

浏览器应用程序的一个进入你的清单json。

然后发送推送通知,您将使用以下内容:

  function addSWmessage($args){

    $output = false;

    if(!isset($args['expiration']) || $args['expiration'] == ''){
        $args['expiration'] = date('Y-m-d H:i:s', strtotime('+7 days', time()));
    }

    $sql = sprintf("INSERT INTO `serviceworker_messages` SET title = '%s', body = '%s', imageurl = '%s', linkurl = '%s', hash = '%s', expiration = '%s'",
                    parent::escape_string($args['title']),
                    parent::escape_string($args['text']),
                    parent::escape_string($args['imageurl']),
                    parent::escape_string($args['linkurl']),
                    parent::escape_string(md5(uniqid('******************', true))),
                    parent::escape_string($args['expiration']));

    if($id = parent::insert($sql)){
        $output = $id;
    }

    return $output;

}
function pushSWmessage($args){

    //$args['messageid'] $args['userids'][]

    foreach($args['userids'] as $val){

        $sql = sprintf("SELECT messages_mobile, messages FROM `users_serviceworker_hash` WHERE users_id = '%s'",
                        parent::escape_string($val));

        if($row = parent::queryOne($sql)){
            $m1 = json_decode($row['messages'], true);
            $m1[] = $args['messageid'];
            $m2 = json_decode($row['messages_mobile'], true);
            $m2[] = $args['messageid'];

            $sql = sprintf("UPDATE `users_serviceworker_hash` SET messages = '%s', messages_mobile = '%s' WHERE users_id = '%s'",
                            parent::escape_string(json_encode($m1)),
                            parent::escape_string(json_encode($m2)),
                            parent::escape_string($val['users_id']));

            parent::insert($sql);
        }
    }

    $sql = sprintf("SELECT subscriptionID, users_id FROM `users_serviceworker_subscriptions`");

    if($rows = parent::query($sql)){

        foreach($rows as $val){
            if(in_array($val['users_id'], $args['userids'])){
                $registrationIds[] = $val['subscriptionID'];
            }
        }
        if(isset($registrationIds) && !empty($registrationIds)){
            // prep the bundle
            $msg = array
            (
                'message'       => '!',
                'title'         => '!',
                'subtitle'      => '!',
                'tickerText'    => '!',
                'vibrate'       => 1,
                'sound'         => 1,
                'largeIcon'     => '!',
                'smallIcon'     => '!'
            );

            $headers = array
            (
                'Authorization: key='.SW_API_ACCESS_KEY,
                'Content-Type: application/json'
            );

            $fields = array
            (
                'registration_ids'  => $registrationIds,
                'data'              => $msg
            );

            $ch = curl_init();
            curl_setopt($ch,CURLOPT_URL, 'https://android.googleapis.com/gcm/send');
            curl_setopt($ch,CURLOPT_POST, true);
            curl_setopt($ch,CURLOPT_HTTPHEADER, $headers);
            curl_setopt($ch,CURLOPT_RETURNTRANSFER, true);
            curl_setopt($ch,CURLOPT_SSL_VERIFYPEER, false);
            curl_setopt($ch,CURLOPT_POSTFIELDS, json_encode($fields));
            curl_exec($ch);
            curl_close($ch);
        }
    }

}

不,我不知道你曾经遇到过什么问题,但这对我来说有多个子域名。 :)