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
|
namespace :users do
desc "Clear a user's second factor from the shell. LOGIN=name. " \
"The recovery path when an admin loses their device: elevation " \
"requires a code, resetting someone else's factor requires " \
"elevation, and self-service disable requires a current code -- so " \
"with every admin locked out there is no in-app way back."
task :clear_otp => :environment do
login = ENV["LOGIN"].to_s.strip.downcase
abort "usage: LOGIN=name rake users:clear_otp" if login.empty?
user = User.find_by(:login => login)
abort "no such user: #{login}" if user.nil?
unless user.otp_enrolled?
puts "#{user.login} has no second factor enrolled; nothing to do."
next
end
user.update_columns(:otp_secret => nil,
:otp_pending_secret => nil,
:otp_consumed_timestep => nil)
puts "Cleared the second factor for #{user.login}. " \
"They can re-enrol under My account."
end
desc "Seed last_login_at from whatever the database still remembers. " \
"There is no login history, so the column is reconstructed once " \
"from the newest trace each account left: log entries, authorship, " \
"editing, tagging. An account with no trace is left nil, which the " \
"roster renders as never signed in -- do not substitute created_at, " \
"which is evidence that an account exists, not that anyone used it, " \
"and shadows exactly the signal worth seeing. Dry run unless " \
"WRITE=1. FORCE=1 is required once the column holds anything, and " \
"re-running then overwrites real logins: an account that signs in " \
"regularly but never edits leaves no trace and would be reset."
task :seed_last_login => :environment do
write = ENV["WRITE"] == "1"
force = ENV["FORCE"] == "1"
floor = nil
if ENV["FLOOR"].present?
floor = Time.zone.parse(ENV["FLOOR"]) or abort "FLOOR must be YYYY-MM-DD"
end
seeded = User.where.not(:last_login_at => nil).count
if seeded > 0 && write && !force
abort "#{seeded} accounts already carry a last_login_at, which may be " \
"a real login. Re-run with FORCE=1 to overwrite them."
end
users = User.order(:login).to_a
ids = users.map(&:id)
newest = {
"log" => NodeAction.where(:user_id => ids).group(:user_id).maximum(:occurred_at),
"author" => Page.where(:user_id => ids).group(:user_id).maximum(:created_at),
"editor" => Page.where(:editor_id => ids).group(:editor_id).maximum(:updated_at),
"tag" => ActsAsTaggableOn::Tagging.where(:user_id => ids)
.group(:user_id).maximum(:created_at),
"tagger" => ActsAsTaggableOn::Tagging.where(:tagger_type => "User", :tagger_id => ids)
.group(:tagger_id).maximum(:created_at)
}
puts "DRY RUN -- nothing written. Re-run with WRITE=1." unless write
puts format("%-18s %-12s %-8s %s", "login", "seeded", "source", "roles")
users.each do |user|
clues = newest.transform_values { |by_id| by_id[user.id] }.compact
source, date = clues.max_by { |_, at| at }
user.update_columns(:last_login_at => date) if write
puts format("%-18s %-12s %-8s %s", user.login,
date ? date.to_date : "never", source || "-", user.roles.join(","))
end
end
end
|