]> git.openstreetmap.org Git - rails.git/commitdiff
Extend cleanup script to cleanup old OAuth tokens
authorTom Hughes <tom@compton.nu>
Sat, 22 Aug 2020 15:14:37 +0000 (16:14 +0100)
committerTom Hughes <tom@compton.nu>
Sat, 22 Aug 2020 15:15:09 +0000 (16:15 +0100)
script/cleanup

index 10fdf9db7328dc1a3c1db8105d9345c0c42397d7..983a3d45877a93a3e636cc7cb5a4011ee712b382 100755 (executable)
@@ -4,5 +4,7 @@ require File.dirname(__FILE__) + "/../config/environment"
 
 UserToken.where("expiry < NOW()").delete_all
 OauthNonce.where("timestamp < EXTRACT(EPOCH FROM NOW() - INTERVAL '1 day')").delete_all
+OauthToken.where("invalidated_at < NOW() - INTERVAL '28 days'").delete_all
+RequestToken.where("authorized_at IS NULL AND created_at < NOW() - INTERVAL '28 days'").delete_all
 
 exit 0