forked from getlago/lago-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclock.rb
More file actions
185 lines (155 loc) · 6.71 KB
/
clock.rb
File metadata and controls
185 lines (155 loc) · 6.71 KB
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
# 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
subscription_activity_processing_interval = ENV["LAGO_SUBSCRIPTION_ACTIVITY_PROCESSING_INTERVAL_SECONDS"].presence || 1.minute
every(subscription_activity_processing_interval.to_i.seconds, "schedule:process_subscription_activity") do
Clock::ProcessAllSubscriptionActivitiesJob
.set(sentry: {"slug" => "lago_process_subscription_activity", "cron" => "#{subscription_activity_processing_interval} interval"})
.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
unless ENV["LAGO_DISABLE_LIFETIME_USAGE_REFRESH"] == "true"
Clock::RefreshLifetimeUsagesJob
.set(sentry: {"slug" => "lago_refresh_lifetime_usages", "cron" => "#{lifetime_usage_refresh_interval} interval"})
.perform_later
end
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:api_keys_track_usage", at: "*:15") do
Clock::ApiKeys::TrackUsageJob
.set(sentry: {"slug" => "lago_api_keys_track_usage", "cron" => "15 */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:terminate_expired_wallet_transaction_rules", at: "*:50") do
Clock::TerminateRecurringTransactionRulesJob
.set(sentry: {"slug" => "lago_terminate_expired_wallet_transaction_rules", "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
every(1.day, "schedule:clean_inbound_webhooks", at: "01:10") do
Clock::InboundWebhooksCleanupJob
.set(sentry: {"slug" => "lago_clean_inbound_webhooks", "cron" => "5 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
every(1.hour, "schedule:process_dunning_campaigns", at: "*:45") do
Clock::ProcessDunningCampaignsJob
.set(sentry: {"slug" => "lago_process_dunning_campaigns", "cron" => "45 */1 * * *"})
.perform_later
end
every(15.minutes, "schedule:retry_failed_invoices") do
Clock::RetryFailedInvoicesJob
.set(sentry: {"slug" => "lago_retry_failed_invoices", "cron" => "*/15 * * * *"})
.perform_later
end
every(15.minutes, "schedule:retry_inbound_webhooks") do
Clock::InboundWebhooksRetryJob
.set(sentry: {"slug" => "lago_retry_inbound_webhooks", "cron" => "*/15 * * * *"})
.perform_later
end
# NOTE: Enable wallets and lifetime usage refresh from the events-processor
if ENV["LAGO_REDIS_STORE_URL"].present?
every(1.minute, "schedule:refresh_flagged_subscriptions") do
Clock::ConsumeSubscriptionRefreshedQueueJob
.set(sentry: {"slug" => "lago_refresh_flagged_subscriptions", "cron" => "*/1 * * * *"})
.perform_later
end
end
end