Class WebPush


@ConditionalOnProperty("webpush.publicKey") @RestController @RequestMapping("/vrspace/api/webpush") public class WebPush extends ClientControllerBase
Keeps track of clients WebPush subscription data. User must be authorized and connected to manage subscriptions. User can have multiple subscriptions, assuming access from multiple devices. Subscribed users may get notifications while offline, e.g. with new group messages.
Author:
joe
  • Field Details

  • Constructor Details

    • WebPush

      public WebPush()
  • Method Details

    • subscribe

      @PostMapping("/subscribe") public void subscribe(@RequestBody WebPushSubscription info, jakarta.servlet.http.HttpSession session)
      Subscribe to webpush: this notifies the server that the browser has created a webpush subscription. Requires authorization.
      Parameters:
      info - Subscription data.
    • unsubscribe

      @PostMapping("/unsubscribe") public void unsubscribe(@RequestBody WebPushSubscription info, jakarta.servlet.http.HttpSession session)
      Removes subscription information from the server, when browser unsubscribes. Requires authorization.
      Parameters:
      info -
      session -
    • getKey

      @GetMapping("/publicKey") public String getKey()
      Returns public VAPID key required to create WebPush subscription.
      Returns:
      Base64 encoded key