-
Notifications
You must be signed in to change notification settings - Fork 99
/
clock.rb
130 lines (109 loc) · 4.53 KB
/
clock.rb
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
# frozen_string_literal: true
require 'clockwork'
require './config/boot'
require './config/environment'
module Clockwork
handler do |job, time|
puts "Running #{job} at #{time}"
end
error_handler do |error|
Rails.logger.error(error.message)
Rails.logger.error(error.backtrace.join("\n"))
Sentry.capture_exception(error)
end
# NOTE: All clocks run every hour to take customer timezones into account
every(5.minutes, 'schedule:activate_subscriptions') do
Clock::ActivateSubscriptionsJob
.set(sentry: {"slug" => 'lago_activate_subscriptions', "cron" => '*/5 * * * *'})
.perform_later
end
every(5.minutes, 'schedule:refresh_draft_invoices') do
Clock::RefreshDraftInvoicesJob
.set(sentry: {"slug" => 'lago_refresh_draft_invoices', "cron" => '*/5 * * * *'})
.perform_later
end
lifetime_usage_refresh_interval = ENV["LAGO_LIFETIME_USAGE_REFRESH_INTERVAL_SECONDS"].presence || 5.minutes
every(lifetime_usage_refresh_interval.to_i.seconds, 'schedule:refresh_lifetime_usages') do
Clock::RefreshLifetimeUsagesJob
.set(sentry: {"slug" => 'lago_refresh_lifetime_usages', "cron" => "#{lifetime_usage_refresh_interval} interval"})
.perform_later
end
if ENV['LAGO_MEMCACHE_SERVERS'].present? || ENV['LAGO_REDIS_CACHE_URL'].present?
every(5.minutes, 'schedule:refresh_wallets_ongoing_balance') do
unless ENV['LAGO_DISABLE_WALLET_REFRESH'] == 'true'
Clock::RefreshWalletsOngoingBalanceJob
.set(sentry: {"slug" => 'lago_refresh_wallets_ongoing_balance', "cron" => '*/5 * * * *'})
.perform_later
end
end
end
every(1.hour, 'schedule:terminate_ended_subscriptions', at: '*:05') do
Clock::TerminateEndedSubscriptionsJob
.set(sentry: {"slug" => 'lago_terminate_ended_subscriptions', "cron" => '5 */1 * * *'})
.perform_later
end
every(1.hour, 'schedule:bill_customers', at: '*:10') do
Clock::SubscriptionsBillerJob
.set(sentry: {"slug" => 'lago_bill_customers', "cron" => '10 */1 * * *'})
.perform_later
end
every(1.hour, 'schedule:retry_generating_subscription_invoices', at: '*:30') do
Clock::RetryGeneratingSubscriptionInvoicesJob
.set(sentry: {"slug" => 'lago_retry_invoices', "cron" => '30 */1 * * *'})
.perform_later
end
every(1.hour, 'schedule:finalize_invoices', at: '*:20') do
Clock::FinalizeInvoicesJob
.set(sentry: {"slug" => 'lago_finalize_invoices', "cron" => '20 */1 * * *'})
.perform_later
end
every(1.hour, 'schedule:mark_invoices_as_payment_overdue', at: '*:25') do
Clock::MarkInvoicesAsPaymentOverdueJob
.set(sentry: {"slug" => 'lago_mark_invoices_as_payment_overdue', "cron" => '25 */1 * * *'})
.perform_later
end
every(1.hour, 'schedule:terminate_coupons', at: '*:30') do
Clock::TerminateCouponsJob
.set(sentry: {"slug" => 'lago_terminate_coupons', "cron" => '30 */1 * * *'})
.perform_later
end
every(1.hour, 'schedule:bill_ended_trial_subscriptions', at: '*:35') do
Clock::FreeTrialSubscriptionsBillerJob
.set(sentry: {"slug" => 'lago_bill_ended_trial_subscriptions', "cron" => '35 */1 * * *'})
.perform_later
end
every(1.hour, 'schedule:terminate_wallets', at: '*:45') do
Clock::TerminateWalletsJob
.set(sentry: {"slug" => 'lago_terminate_wallets', "cron" => '45 */1 * * *'})
.perform_later
end
every(1.hour, 'schedule:termination_alert', at: '*:50') do
Clock::SubscriptionsToBeTerminatedJob
.set(sentry: {"slug" => 'lago_termination_alert', "cron" => '50 */1 * * *'})
.perform_later
end
every(1.hour, 'schedule:top_up_wallet_interval_credits', at: '*:55') do
Clock::CreateIntervalWalletTransactionsJob
.set(sentry: {"slug" => 'lago_top_up_wallet_interval_credits', "cron" => '55 */1 * * *'})
.perform_later
end
every(1.day, 'schedule:clean_webhooks', at: '01:00') do
Clock::WebhooksCleanupJob
.set(sentry: {"slug" => 'lago_clean_webhooks', "cron" => '0 1 * * *'})
.perform_later
end
unless ActiveModel::Type::Boolean.new.cast(ENV['LAGO_DISABLE_EVENTS_VALIDATION'])
every(1.hour, 'schedule:post_validate_events', at: '*:05') do
Clock::EventsValidationJob
.set(sentry: {"slug" => 'lago_post_validate_events', "cron" => '5 */1 * * *'})
.perform_later
rescue => e
Sentry.capture_exception(e)
end
end
every(1.hour, 'schedule:compute_daily_usage', at: '*:15') do
Clock::ComputeAllDailyUsagesJob
.set(sentry: {"slug" => 'lago_compute_daily_usage', "cron" => '15 */1 * * *'})
.perform_later
end
end