mirror of
https://github.com/christianselig/apollo-backend
synced 2024-11-13 23:47:44 +00:00
[render skip] add development in favour of sandbox
This commit is contained in:
parent
fd648cad3a
commit
3b9da79e6e
6 changed files with 44 additions and 24 deletions
|
@ -25,6 +25,7 @@ type Account struct {
|
||||||
AccessToken string
|
AccessToken string
|
||||||
RefreshToken string
|
RefreshToken string
|
||||||
TokenExpiresAt time.Time
|
TokenExpiresAt time.Time
|
||||||
|
Development bool
|
||||||
|
|
||||||
// Tracking how far behind we are
|
// Tracking how far behind we are
|
||||||
LastMessageID string
|
LastMessageID string
|
||||||
|
|
|
@ -11,9 +11,9 @@ const (
|
||||||
)
|
)
|
||||||
|
|
||||||
type LiveActivity struct {
|
type LiveActivity struct {
|
||||||
ID int64
|
ID int64
|
||||||
APNSToken string `json:"apns_token"`
|
APNSToken string `json:"apns_token"`
|
||||||
Sandbox bool `json:"sandbox"`
|
Development bool `json:"development"`
|
||||||
|
|
||||||
RedditAccountID string `json:"reddit_account_id"`
|
RedditAccountID string `json:"reddit_account_id"`
|
||||||
AccessToken string `json:"access_token"`
|
AccessToken string `json:"access_token"`
|
||||||
|
|
|
@ -48,6 +48,7 @@ func (p *postgresAccountRepository) fetch(ctx context.Context, query string, arg
|
||||||
&acc.NextNotificationCheckAt,
|
&acc.NextNotificationCheckAt,
|
||||||
&acc.NextStuckNotificationCheckAt,
|
&acc.NextStuckNotificationCheckAt,
|
||||||
&acc.CheckCount,
|
&acc.CheckCount,
|
||||||
|
&acc.Development,
|
||||||
); err != nil {
|
); err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
@ -60,7 +61,7 @@ func (p *postgresAccountRepository) GetByID(ctx context.Context, id int64) (doma
|
||||||
query := `
|
query := `
|
||||||
SELECT id, username, reddit_account_id, access_token, refresh_token, token_expires_at,
|
SELECT id, username, reddit_account_id, access_token, refresh_token, token_expires_at,
|
||||||
last_message_id, next_notification_check_at, next_stuck_notification_check_at,
|
last_message_id, next_notification_check_at, next_stuck_notification_check_at,
|
||||||
check_count
|
check_count, development
|
||||||
FROM accounts
|
FROM accounts
|
||||||
WHERE id = $1 AND is_deleted IS FALSE`
|
WHERE id = $1 AND is_deleted IS FALSE`
|
||||||
|
|
||||||
|
@ -79,7 +80,7 @@ func (p *postgresAccountRepository) GetByRedditID(ctx context.Context, id string
|
||||||
query := `
|
query := `
|
||||||
SELECT id, username, reddit_account_id, access_token, refresh_token, token_expires_at,
|
SELECT id, username, reddit_account_id, access_token, refresh_token, token_expires_at,
|
||||||
last_message_id, next_notification_check_at, next_stuck_notification_check_at,
|
last_message_id, next_notification_check_at, next_stuck_notification_check_at,
|
||||||
check_count
|
check_count, development
|
||||||
FROM accounts
|
FROM accounts
|
||||||
WHERE reddit_account_id = $1 AND is_deleted IS FALSE`
|
WHERE reddit_account_id = $1 AND is_deleted IS FALSE`
|
||||||
|
|
||||||
|
@ -97,8 +98,8 @@ func (p *postgresAccountRepository) GetByRedditID(ctx context.Context, id string
|
||||||
func (p *postgresAccountRepository) CreateOrUpdate(ctx context.Context, acc *domain.Account) error {
|
func (p *postgresAccountRepository) CreateOrUpdate(ctx context.Context, acc *domain.Account) error {
|
||||||
query := `
|
query := `
|
||||||
INSERT INTO accounts (username, reddit_account_id, access_token, refresh_token, token_expires_at,
|
INSERT INTO accounts (username, reddit_account_id, access_token, refresh_token, token_expires_at,
|
||||||
last_message_id, next_notification_check_at, next_stuck_notification_check_at, is_deleted)
|
last_message_id, next_notification_check_at, next_stuck_notification_check_at, is_deleted, development)
|
||||||
VALUES ($1, $2, $3, $4, $5, $6, NOW(), NOW(), FALSE)
|
VALUES ($1, $2, $3, $4, $5, $6, NOW(), NOW(), FALSE, $7)
|
||||||
ON CONFLICT(username) DO
|
ON CONFLICT(username) DO
|
||||||
UPDATE SET access_token = $3,
|
UPDATE SET access_token = $3,
|
||||||
refresh_token = $4,
|
refresh_token = $4,
|
||||||
|
@ -119,6 +120,7 @@ func (p *postgresAccountRepository) CreateOrUpdate(ctx context.Context, acc *dom
|
||||||
acc.RefreshToken,
|
acc.RefreshToken,
|
||||||
acc.TokenExpiresAt,
|
acc.TokenExpiresAt,
|
||||||
acc.LastMessageID,
|
acc.LastMessageID,
|
||||||
|
acc.Development,
|
||||||
).Scan(&acc.ID); err != nil {
|
).Scan(&acc.ID); err != nil {
|
||||||
span.SetStatus(codes.Error, "failed upserting account")
|
span.SetStatus(codes.Error, "failed upserting account")
|
||||||
span.RecordError(err)
|
span.RecordError(err)
|
||||||
|
@ -132,8 +134,8 @@ func (p *postgresAccountRepository) Create(ctx context.Context, acc *domain.Acco
|
||||||
query := `
|
query := `
|
||||||
INSERT INTO accounts
|
INSERT INTO accounts
|
||||||
(username, reddit_account_id, access_token, refresh_token, token_expires_at,
|
(username, reddit_account_id, access_token, refresh_token, token_expires_at,
|
||||||
last_message_id, next_notification_check_at, next_stuck_notification_check_at, is_deleted)
|
last_message_id, next_notification_check_at, next_stuck_notification_check_at, is_deleted, development)
|
||||||
VALUES ($1, $2, $3, $4, $5, $6, $7, $8, FALSE)
|
VALUES ($1, $2, $3, $4, $5, $6, $7, $8, FALSE, $9)
|
||||||
RETURNING id`
|
RETURNING id`
|
||||||
|
|
||||||
ctx, span := spanWithQuery(ctx, p.tracer, query)
|
ctx, span := spanWithQuery(ctx, p.tracer, query)
|
||||||
|
@ -150,6 +152,7 @@ func (p *postgresAccountRepository) Create(ctx context.Context, acc *domain.Acco
|
||||||
acc.LastMessageID,
|
acc.LastMessageID,
|
||||||
acc.NextNotificationCheckAt,
|
acc.NextNotificationCheckAt,
|
||||||
acc.NextStuckNotificationCheckAt,
|
acc.NextStuckNotificationCheckAt,
|
||||||
|
acc.Development,
|
||||||
).Scan(&acc.ID); err != nil {
|
).Scan(&acc.ID); err != nil {
|
||||||
span.SetStatus(codes.Error, "failed inserting account")
|
span.SetStatus(codes.Error, "failed inserting account")
|
||||||
span.RecordError(err)
|
span.RecordError(err)
|
||||||
|
@ -170,7 +173,8 @@ func (p *postgresAccountRepository) Update(ctx context.Context, acc *domain.Acco
|
||||||
last_message_id = $7,
|
last_message_id = $7,
|
||||||
next_notification_check_at = $8,
|
next_notification_check_at = $8,
|
||||||
next_stuck_notification_check_at = $9,
|
next_stuck_notification_check_at = $9,
|
||||||
check_count = $10
|
check_count = $10,
|
||||||
|
development = $11
|
||||||
WHERE id = $1`
|
WHERE id = $1`
|
||||||
|
|
||||||
ctx, span := spanWithQuery(ctx, p.tracer, query)
|
ctx, span := spanWithQuery(ctx, p.tracer, query)
|
||||||
|
@ -189,6 +193,7 @@ func (p *postgresAccountRepository) Update(ctx context.Context, acc *domain.Acco
|
||||||
acc.NextNotificationCheckAt,
|
acc.NextNotificationCheckAt,
|
||||||
acc.NextStuckNotificationCheckAt,
|
acc.NextStuckNotificationCheckAt,
|
||||||
acc.CheckCount,
|
acc.CheckCount,
|
||||||
|
acc.Development,
|
||||||
); err != nil {
|
); err != nil {
|
||||||
span.SetStatus(codes.Error, "failed to update account")
|
span.SetStatus(codes.Error, "failed to update account")
|
||||||
span.RecordError(err)
|
span.RecordError(err)
|
||||||
|
@ -248,7 +253,7 @@ func (p *postgresAccountRepository) GetByAPNSToken(ctx context.Context, token st
|
||||||
query := `
|
query := `
|
||||||
SELECT accounts.id, username, accounts.reddit_account_id, access_token, refresh_token, token_expires_at,
|
SELECT accounts.id, username, accounts.reddit_account_id, access_token, refresh_token, token_expires_at,
|
||||||
last_message_id, next_notification_check_at, next_stuck_notification_check_at,
|
last_message_id, next_notification_check_at, next_stuck_notification_check_at,
|
||||||
check_count
|
check_count, development
|
||||||
FROM accounts
|
FROM accounts
|
||||||
INNER JOIN devices_accounts ON accounts.id = devices_accounts.account_id
|
INNER JOIN devices_accounts ON accounts.id = devices_accounts.account_id
|
||||||
INNER JOIN devices ON devices.id = devices_accounts.device_id
|
INNER JOIN devices ON devices.id = devices_accounts.device_id
|
||||||
|
|
|
@ -28,7 +28,6 @@ func (p *postgresLiveActivityRepository) fetch(ctx context.Context, query string
|
||||||
if err := rows.Scan(
|
if err := rows.Scan(
|
||||||
&la.ID,
|
&la.ID,
|
||||||
&la.APNSToken,
|
&la.APNSToken,
|
||||||
&la.Sandbox,
|
|
||||||
&la.RedditAccountID,
|
&la.RedditAccountID,
|
||||||
&la.AccessToken,
|
&la.AccessToken,
|
||||||
&la.RefreshToken,
|
&la.RefreshToken,
|
||||||
|
@ -37,6 +36,7 @@ func (p *postgresLiveActivityRepository) fetch(ctx context.Context, query string
|
||||||
&la.Subreddit,
|
&la.Subreddit,
|
||||||
&la.NextCheckAt,
|
&la.NextCheckAt,
|
||||||
&la.ExpiresAt,
|
&la.ExpiresAt,
|
||||||
|
&la.Development,
|
||||||
); err != nil {
|
); err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
@ -47,7 +47,7 @@ func (p *postgresLiveActivityRepository) fetch(ctx context.Context, query string
|
||||||
|
|
||||||
func (p *postgresLiveActivityRepository) Get(ctx context.Context, apnsToken string) (domain.LiveActivity, error) {
|
func (p *postgresLiveActivityRepository) Get(ctx context.Context, apnsToken string) (domain.LiveActivity, error) {
|
||||||
query := `
|
query := `
|
||||||
SELECT id, apns_token, sandbox, reddit_account_id, access_token, refresh_token, token_expires_at, thread_id, subreddit, next_check_at, expires_at
|
SELECT id, apns_token, reddit_account_id, access_token, refresh_token, token_expires_at, thread_id, subreddit, next_check_at, expires_at, development
|
||||||
FROM live_activities
|
FROM live_activities
|
||||||
WHERE apns_token = $1`
|
WHERE apns_token = $1`
|
||||||
|
|
||||||
|
@ -64,7 +64,7 @@ func (p *postgresLiveActivityRepository) Get(ctx context.Context, apnsToken stri
|
||||||
|
|
||||||
func (p *postgresLiveActivityRepository) List(ctx context.Context) ([]domain.LiveActivity, error) {
|
func (p *postgresLiveActivityRepository) List(ctx context.Context) ([]domain.LiveActivity, error) {
|
||||||
query := `
|
query := `
|
||||||
SELECT id, apns_token, sandbox, reddit_account_id, access_token, refresh_token, token_expires_at, thread_id, subreddit, next_check_at, expires_at
|
SELECT id, apns_token, reddit_account_id, access_token, refresh_token, token_expires_at, thread_id, subreddit, next_check_at, expires_at, development
|
||||||
FROM live_activities
|
FROM live_activities
|
||||||
WHERE expires_at > NOW()`
|
WHERE expires_at > NOW()`
|
||||||
|
|
||||||
|
@ -73,14 +73,13 @@ func (p *postgresLiveActivityRepository) List(ctx context.Context) ([]domain.Liv
|
||||||
|
|
||||||
func (p *postgresLiveActivityRepository) Create(ctx context.Context, la *domain.LiveActivity) error {
|
func (p *postgresLiveActivityRepository) Create(ctx context.Context, la *domain.LiveActivity) error {
|
||||||
query := `
|
query := `
|
||||||
INSERT INTO live_activities (apns_token, sandbox, reddit_account_id, access_token, refresh_token, token_expires_at, thread_id, subreddit, next_check_at, expires_at)
|
INSERT INTO live_activities (apns_token, reddit_account_id, access_token, refresh_token, token_expires_at, thread_id, subreddit, next_check_at, expires_at, development)
|
||||||
VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10)
|
VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10)
|
||||||
ON CONFLICT (apns_token) DO UPDATE SET expires_at = $10
|
ON CONFLICT (apns_token) DO UPDATE SET expires_at = $10
|
||||||
RETURNING id`
|
RETURNING id`
|
||||||
|
|
||||||
return p.conn.QueryRow(ctx, query,
|
return p.conn.QueryRow(ctx, query,
|
||||||
la.APNSToken,
|
la.APNSToken,
|
||||||
la.Sandbox,
|
|
||||||
la.RedditAccountID,
|
la.RedditAccountID,
|
||||||
la.AccessToken,
|
la.AccessToken,
|
||||||
la.RefreshToken,
|
la.RefreshToken,
|
||||||
|
@ -89,6 +88,7 @@ func (p *postgresLiveActivityRepository) Create(ctx context.Context, la *domain.
|
||||||
la.Subreddit,
|
la.Subreddit,
|
||||||
time.Now(),
|
time.Now(),
|
||||||
time.Now().Add(domain.LiveActivityDuration),
|
time.Now().Add(domain.LiveActivityDuration),
|
||||||
|
la.Development,
|
||||||
).Scan(&la.ID)
|
).Scan(&la.ID)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -125,7 +125,8 @@ type liveActivitiesConsumer struct {
|
||||||
*liveActivitiesWorker
|
*liveActivitiesWorker
|
||||||
tag int
|
tag int
|
||||||
|
|
||||||
apns *apns2.Client
|
papns *apns2.Client
|
||||||
|
dapns *apns2.Client
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewLiveActivitiesConsumer(law *liveActivitiesWorker, tag int) *liveActivitiesConsumer {
|
func NewLiveActivitiesConsumer(law *liveActivitiesWorker, tag int) *liveActivitiesConsumer {
|
||||||
|
@ -133,6 +134,7 @@ func NewLiveActivitiesConsumer(law *liveActivitiesWorker, tag int) *liveActiviti
|
||||||
law,
|
law,
|
||||||
tag,
|
tag,
|
||||||
apns2.NewTokenClient(law.apns).Production(),
|
apns2.NewTokenClient(law.apns).Production(),
|
||||||
|
apns2.NewTokenClient(law.apns).Development(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -295,13 +297,18 @@ func (lac *liveActivitiesConsumer) Consume(delivery rmq.Delivery) {
|
||||||
Payload: bb,
|
Payload: bb,
|
||||||
}
|
}
|
||||||
|
|
||||||
res, err := lac.apns.PushWithContext(ctx, notification)
|
client := lac.papns
|
||||||
|
if la.Development {
|
||||||
|
client = lac.dapns
|
||||||
|
}
|
||||||
|
|
||||||
|
res, err := client.PushWithContext(ctx, notification)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
_ = lac.statsd.Incr("apns.live_activities.errors", []string{}, 1)
|
_ = lac.statsd.Incr("apns.live_activities.errors", []string{}, 1)
|
||||||
lac.logger.Error("failed to send notification",
|
lac.logger.Error("failed to send notification",
|
||||||
zap.Error(err),
|
zap.Error(err),
|
||||||
zap.String("live_activity#apns_token", at),
|
zap.String("live_activity#apns_token", at),
|
||||||
zap.Bool("live_activity#sandbox", la.Sandbox),
|
zap.Bool("live_activity#development", la.Development),
|
||||||
zap.String("notification#type", ev),
|
zap.String("notification#type", ev),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -310,7 +317,7 @@ func (lac *liveActivitiesConsumer) Consume(delivery rmq.Delivery) {
|
||||||
_ = lac.statsd.Incr("apns.live_activities.errors", []string{}, 1)
|
_ = lac.statsd.Incr("apns.live_activities.errors", []string{}, 1)
|
||||||
lac.logger.Error("notification not sent",
|
lac.logger.Error("notification not sent",
|
||||||
zap.String("live_activity#apns_token", at),
|
zap.String("live_activity#apns_token", at),
|
||||||
zap.Bool("live_activity#sandbox", la.Sandbox),
|
zap.Bool("live_activity#development", la.Development),
|
||||||
zap.String("notification#type", ev),
|
zap.String("notification#type", ev),
|
||||||
zap.Int("response#status", res.StatusCode),
|
zap.Int("response#status", res.StatusCode),
|
||||||
zap.String("response#reason", res.Reason),
|
zap.String("response#reason", res.Reason),
|
||||||
|
@ -321,7 +328,7 @@ func (lac *liveActivitiesConsumer) Consume(delivery rmq.Delivery) {
|
||||||
_ = lac.statsd.Incr("apns.notification.sent", []string{}, 1)
|
_ = lac.statsd.Incr("apns.notification.sent", []string{}, 1)
|
||||||
lac.logger.Debug("sent notification",
|
lac.logger.Debug("sent notification",
|
||||||
zap.String("live_activity#apns_token", at),
|
zap.String("live_activity#apns_token", at),
|
||||||
zap.Bool("live_activity#sandbox", la.Sandbox),
|
zap.Bool("live_activity#development", la.Development),
|
||||||
zap.String("notification#type", ev),
|
zap.String("notification#type", ev),
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
|
@ -125,8 +125,9 @@ func (nw *notificationsWorker) Stop() {
|
||||||
|
|
||||||
type notificationsConsumer struct {
|
type notificationsConsumer struct {
|
||||||
*notificationsWorker
|
*notificationsWorker
|
||||||
tag int
|
tag int
|
||||||
apns *apns2.Client
|
papns *apns2.Client
|
||||||
|
dapns *apns2.Client
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewNotificationsConsumer(nw *notificationsWorker, tag int) *notificationsConsumer {
|
func NewNotificationsConsumer(nw *notificationsWorker, tag int) *notificationsConsumer {
|
||||||
|
@ -134,6 +135,7 @@ func NewNotificationsConsumer(nw *notificationsWorker, tag int) *notificationsCo
|
||||||
nw,
|
nw,
|
||||||
tag,
|
tag,
|
||||||
apns2.NewTokenClient(nw.apns).Production(),
|
apns2.NewTokenClient(nw.apns).Production(),
|
||||||
|
apns2.NewTokenClient(nw.apns).Development(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -300,10 +302,15 @@ func (nc *notificationsConsumer) Consume(delivery rmq.Delivery) {
|
||||||
notification.Topic = "com.christianselig.Apollo"
|
notification.Topic = "com.christianselig.Apollo"
|
||||||
notification.Payload = payloadFromMessage(account, msg, msgs.Count)
|
notification.Payload = payloadFromMessage(account, msg, msgs.Count)
|
||||||
|
|
||||||
|
client := nc.papns
|
||||||
|
if account.Development {
|
||||||
|
client = nc.dapns
|
||||||
|
}
|
||||||
|
|
||||||
for _, device := range devices {
|
for _, device := range devices {
|
||||||
notification.DeviceToken = device.APNSToken
|
notification.DeviceToken = device.APNSToken
|
||||||
|
|
||||||
res, err := nc.apns.PushWithContext(ctx, notification)
|
res, err := client.PushWithContext(ctx, notification)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
_ = nc.statsd.Incr("apns.notification.errors", []string{}, 1)
|
_ = nc.statsd.Incr("apns.notification.errors", []string{}, 1)
|
||||||
logger.Error("failed to send notification",
|
logger.Error("failed to send notification",
|
||||||
|
|
Loading…
Reference in a new issue