-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
69 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
defmodule MongoosePush.Service.Pushy do | ||
@moduledoc """ | ||
Pushy service provider implementation. | ||
""" | ||
|
||
@behaviour MongoosePush.Service | ||
alias MongoosePush.Pools | ||
require Logger | ||
|
||
@spec prepare_notification(String.t(), MongoosePush.request) :: | ||
Service.notification | ||
def prepare_notification(device_id, request) do | ||
MongoosePush.Service.FCM.prepare_notification(device_id, request) | ||
end | ||
|
||
@spec push(Service.notification(), String.t(), atom(), Service.options()) :: | ||
:ok | {:error, term} | ||
def push(notification, device_id, worker, opts \\ []) do | ||
MongoosePush.Service.FCM.push(notification, device_id, worker, opts) | ||
end | ||
|
||
@spec workers({atom, Keyword.t()} | nil) :: list(Supervisor.Spec.spec()) | ||
def workers(nil), do: [] | ||
def workers({pool_name, pool_config}) do | ||
Logger.info ~s"Starting Pushy pool with API key #{pool_config[:key]}" | ||
pool_size = pool_config[:pool_size] | ||
Enum.map(1..pool_size, fn(id) -> | ||
worker_name = Pools.worker_name(:pushy, pool_name, id) | ||
Supervisor.Spec.worker(Pigeon.PushyWorker, | ||
[worker_name, pool_config], [id: worker_name]) | ||
end) | ||
end | ||
|
||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters