File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 8
8
GMAIL_USERNAME = ENV [ 'GMAIL_USERNAME' ]
9
9
GMAIL_PASSWORD = ENV [ 'GMAIL_PASSWORD' ]
10
10
11
- gmail = Gmail . connect ( GMAIL_USERNAME , GMAIL_PASSWORD )
12
- kumars_email = '[email protected] '
11
+ GMAIL = Gmail . connect ( GMAIL_USERNAME , GMAIL_PASSWORD )
12
+ KUMARS_EMAIL = '[email protected] '
13
13
14
14
DB_NAME_REGEX = /\S +_staging/
15
15
KEYWORDS_REGEX = /sorry|help|wrong/i
16
16
17
17
def create_reply ( subject )
18
- gmail . compose do
19
- to kumars_email
18
+ GMAIL . compose do
19
+ to KUMARS_EMAIL
20
20
subject "RE: #{ subject } "
21
21
body "No problem. I've fixed it. \n \n Please be careful next time."
22
22
end
23
23
end
24
24
25
- gmail . inbox . find ( :unread , from : kumars_email ) . each do |email |
25
+ GMAIL . inbox . find ( :unread , from : KUMARS_EMAIL ) . each do |email |
26
26
if email . body . raw_source [ KEYWORDS_REGEX ] && ( db_name = email . body . raw_source [ DB_NAME_REGEX ] )
27
27
backup_file = "/home/backups/databases/#{ db_name } -" + ( Date . today - 1 ) . strftime ( '%Y%m%d' ) + '.gz'
28
28
abort 'ERROR: Backup file not found' unless File . exist? ( backup_file )
@@ -34,6 +34,6 @@ def create_reply(subject)
34
34
email . read!
35
35
email . label ( 'Database fixes' )
36
36
reply = create_reply ( email . subject )
37
- gmail . deliver ( reply )
37
+ GMAIL . deliver ( reply )
38
38
end
39
39
end
You can’t perform that action at this time.
0 commit comments