File: ServiceWorkerUnregisterJob.cpp

package info (click to toggle)
firefox 143.0.3-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 4,617,328 kB
  • sloc: cpp: 7,478,492; javascript: 6,417,157; ansic: 3,720,058; python: 1,396,372; xml: 627,523; asm: 438,677; java: 186,156; sh: 63,477; makefile: 19,171; objc: 13,059; perl: 12,983; yacc: 4,583; cs: 3,846; pascal: 3,405; lex: 1,720; ruby: 1,003; exp: 762; php: 436; lisp: 258; awk: 247; sql: 66; sed: 53; csh: 10
file content (189 lines) | stat: -rw-r--r-- 6,332 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

#include "ServiceWorkerUnregisterJob.h"

#include "ServiceWorkerManager.h"
#include "mozilla/dom/CookieStoreSubscriptionService.h"
#include "mozilla/dom/notification/NotificationUtils.h"
#include "nsIAlertsService.h"
#include "nsIPushService.h"
#include "nsServiceManagerUtils.h"
#include "nsThreadUtils.h"

using namespace mozilla::dom::notification;

namespace mozilla::dom {

class ServiceWorkerUnregisterJob::PushUnsubscribeCallback final
    : public nsIUnsubscribeResultCallback {
 public:
  NS_DECL_ISUPPORTS

  already_AddRefed<GenericPromise> Promise() {
    return mPromiseHolder.Ensure(__func__);
  }

  NS_IMETHOD
  OnUnsubscribe(nsresult aStatus, bool success) override {
    // Warn if unsubscribing fails, but don't prevent the worker from
    // unregistering.
    (void)NS_WARN_IF(NS_FAILED(aStatus));
    mPromiseHolder.Resolve(success, __func__);
    return NS_OK;
  }

 private:
  virtual ~PushUnsubscribeCallback() {
    // We may be shutting down prematurely without getting the result, so make
    // sure to settle the promise.
    mPromiseHolder.RejectIfExists(NS_ERROR_DOM_INVALID_STATE_ERR, __func__);
  };

  MozPromiseHolder<GenericPromise> mPromiseHolder;
};

NS_IMPL_ISUPPORTS(ServiceWorkerUnregisterJob::PushUnsubscribeCallback,
                  nsIUnsubscribeResultCallback)

ServiceWorkerUnregisterJob::ServiceWorkerUnregisterJob(nsIPrincipal* aPrincipal,
                                                       const nsACString& aScope)
    : ServiceWorkerJob(Type::Unregister, aPrincipal, aScope, ""_ns),
      mResult(false) {}

bool ServiceWorkerUnregisterJob::GetResult() const {
  MOZ_ASSERT(NS_IsMainThread());
  return mResult;
}

ServiceWorkerUnregisterJob::~ServiceWorkerUnregisterJob() = default;

already_AddRefed<GenericPromise>
ServiceWorkerUnregisterJob::ClearNotifications() {
  RefPtr<GenericPromise::Private> resultPromise =
      new GenericPromise::Private(__func__);

  nsCOMPtr<nsIAlertsService> alertsService =
      do_GetService("@mozilla.org/alerts-service;1");

  nsAutoCString origin;
  nsresult rv = mPrincipal->GetOrigin(origin);
  if (!alertsService || NS_FAILED(rv)) {
    resultPromise->Reject(rv, __func__);
    return resultPromise.forget();
  }

  RefPtr<NotificationsPromise> promise =
      GetStoredNotificationsForScope(mPrincipal, mScope, u""_ns);

  promise->Then(
      GetCurrentSerialEventTarget(), __func__,
      [resultPromise,
       alertsService](const CopyableTArray<IPCNotification>& aNotifications) {
        for (const IPCNotification& notification : aNotifications) {
          // CloseAlert will emit alertfinished which will synchronously remove
          // each notification also from the DB. (The DB removal doesn't happen
          // synchronously but its task queue guarantees the order.)
          alertsService->CloseAlert(notification.id(), false);
        }
        resultPromise->Resolve(true, __func__);
      },
      [resultPromise](nsresult rv) { resultPromise->Reject(rv, __func__); });

  return resultPromise.forget();
}

already_AddRefed<GenericPromise>
ServiceWorkerUnregisterJob::ClearPushSubscriptions() {
  nsresult rv = NS_OK;
  nsCOMPtr<nsIPushService> pushService =
      do_GetService("@mozilla.org/push/Service;1", &rv);
  if (NS_FAILED(rv)) {
    return GenericPromise::CreateAndReject(rv, __func__).forget();
  }

  nsCOMPtr<PushUnsubscribeCallback> unsubscribeCallback =
      new PushUnsubscribeCallback();
  rv = pushService->Unsubscribe(NS_ConvertUTF8toUTF16(mScope), mPrincipal,
                                unsubscribeCallback);
  if (NS_FAILED(rv)) {
    return GenericPromise::CreateAndReject(rv, __func__).forget();
  }
  return unsubscribeCallback->Promise();
}

void ServiceWorkerUnregisterJob::AsyncExecute() {
  MOZ_ASSERT(NS_IsMainThread());

  if (Canceled()) {
    Finish(NS_ERROR_DOM_ABORT_ERR);
    return;
  }

  CookieStoreSubscriptionService::ServiceWorkerUnregistered(mPrincipal, mScope);

  nsTArray<RefPtr<GenericPromise>> promises{ClearNotifications(),
                                            ClearPushSubscriptions()};

  GenericPromise::AllSettled(GetMainThreadSerialEventTarget(), promises)
      ->Then(GetMainThreadSerialEventTarget(), __func__,
             [self = RefPtr(this)](
                 GenericPromise::AllSettledPromiseType::ResolveOrRejectValue&&
                     aValue) { self->Unregister(); });
}

void ServiceWorkerUnregisterJob::Unregister() {
  MOZ_ASSERT(NS_IsMainThread());

  RefPtr<ServiceWorkerManager> swm = ServiceWorkerManager::GetInstance();
  if (Canceled() || !swm) {
    Finish(NS_ERROR_DOM_ABORT_ERR);
    return;
  }

  // Step 1 of the Unregister algorithm requires checking that the
  // client origin matches the scope's origin.  We perform this in
  // registration->update() method directly since we don't have that
  // client information available here.

  // "Let registration be the result of running [[Get Registration]]
  // algorithm passing scope as the argument."
  RefPtr<ServiceWorkerRegistrationInfo> registration =
      swm->GetRegistration(mPrincipal, mScope);
  if (!registration) {
    // "If registration is null, then, resolve promise with false."
    Finish(NS_OK);
    return;
  }

  // Note, we send the message to remove the registration from disk now. This is
  // necessary to ensure the registration is removed if the controlled
  // clients are closed by shutting down the browser.
  swm->MaybeSendUnregister(mPrincipal, mScope);

  swm->EvictFromBFCache(registration);

  // "Remove scope to registration map[job's scope url]."
  swm->RemoveRegistration(registration);
  MOZ_ASSERT(registration->IsUnregistered());

  // "Resolve promise with true"
  mResult = true;
  InvokeResultCallbacks(NS_OK);

  // "Invoke Try Clear Registration with registration"
  if (!registration->IsControllingClients()) {
    if (registration->IsIdle()) {
      registration->Clear();
    } else {
      registration->ClearWhenIdle();
    }
  }

  Finish(NS_OK);
}

}  // namespace mozilla::dom