Class: PostfixAdmin::CLI

Inherits:
Object
  • Object
show all
Defined in:
lib/postfix_admin/cli.rb

Constant Summary collapse

MIN_NUM_PASSWORD_CHARACTER =
5

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeCLI

Returns a new instance of CLI.



10
11
12
13
# File 'lib/postfix_admin/cli.rb', line 10

def initialize
  @config = load_config
  @base = Base.new(@config)
end

Class Method Details

.config_fileObject



15
16
17
# File 'lib/postfix_admin/cli.rb', line 15

def self.config_file
  @config_file
end

.config_file=(value) ⇒ Object



19
20
21
# File 'lib/postfix_admin/cli.rb', line 19

def self.config_file=(value)
  @config_file = value
end

Instance Method Details

#add_account(address, password, scheme = nil, name = nil) ⇒ Object



265
266
267
268
269
270
271
# File 'lib/postfix_admin/cli.rb', line 265

def (address, password, scheme=nil, name=nil)
  validate_password(password)

  @base.(address, hashed_password(password, scheme), name)
  puts_registered(address, "an account")
  (address)
end

#add_admin(user_name, password, super_admin = false, scheme = nil) ⇒ Object



243
244
245
246
247
248
249
250
251
252
253
# File 'lib/postfix_admin/cli.rb', line 243

def add_admin(user_name, password, super_admin=false, scheme=nil)
  validate_password(password)

  @base.add_admin(user_name, hashed_password(password, scheme))
  if super_admin
    Admin.find(user_name).super_admin = true
    puts_registered(user_name, "a super admin")
  else
    puts_registered(user_name, "an admin")
  end
end

#add_admin_domain(user_name, domain_name) ⇒ Object



255
256
257
258
# File 'lib/postfix_admin/cli.rb', line 255

def add_admin_domain(user_name, domain_name)
  @base.add_admin_domain(user_name, domain_name)
  puts_registered(domain_name, "a domain of #{user_name}")
end

#add_alias(address, goto) ⇒ Object



273
274
275
276
# File 'lib/postfix_admin/cli.rb', line 273

def add_alias(address, goto)
  @base.add_alias(address, goto)
  puts_registered("#{address}: #{goto}", "an alias")
end

#add_domain(domain_name) ⇒ Object



138
139
140
141
# File 'lib/postfix_admin/cli.rb', line 138

def add_domain(domain_name)
  @base.add_domain(domain_name)
  puts_registered(domain_name, "a domain")
end

#change_account_password(user_name, password) ⇒ Object



147
148
149
# File 'lib/postfix_admin/cli.rb', line 147

def (user_name, password)
  change_password(Mailbox, user_name, password)
end

#change_admin_password(user_name, password) ⇒ Object



143
144
145
# File 'lib/postfix_admin/cli.rb', line 143

def change_admin_password(user_name, password)
  change_password(Admin, user_name, password)
end

#delete_account(address) ⇒ Object



300
301
302
303
# File 'lib/postfix_admin/cli.rb', line 300

def (address)
  @base.(address)
  puts_deleted(address)
end

#delete_admin(user_name) ⇒ Object



295
296
297
298
# File 'lib/postfix_admin/cli.rb', line 295

def delete_admin(user_name)
  @base.delete_admin(user_name)
  puts_deleted(user_name)
end

#delete_admin_domain(user_name, domain_name) ⇒ Object



260
261
262
263
# File 'lib/postfix_admin/cli.rb', line 260

def delete_admin_domain(user_name, domain_name)
  @base.delete_admin_domain(user_name, domain_name)
  puts "#{domain_name} was successfully deleted from #{user_name}"
end

#delete_alias(address) ⇒ Object



290
291
292
293
# File 'lib/postfix_admin/cli.rb', line 290

def delete_alias(address)
  @base.delete_alias(address)
  puts_deleted(address)
end

#delete_domain(domain_name) ⇒ Object



175
176
177
178
# File 'lib/postfix_admin/cli.rb', line 175

def delete_domain(domain_name)
  @base.delete_domain(domain_name)
  puts_deleted(domain_name)
end

#dumpObject



305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
# File 'lib/postfix_admin/cli.rb', line 305

def dump
  puts "Admins"
  puts "User Name,Password,Super Admin,Active"
  Admin.all.each do |a|
    puts [a.username, %Q!"#{a.password}"!, a.super_admin?, a.active].join(',')
  end
  puts
  puts "Domains"
  puts "Domain Name,Max Quota,Active"
  Domain.all_without_special_domain.each do |d|
    puts [d.domain_name, d.maxquota, d.active].join(',')
  end
  puts
  puts "Mailboxes"
  puts "User Name,Name,Password,Quota,Maildir,Active"
  Mailbox.all.each do |m|
    puts [m.username, %Q!"#{m.name}"!, %Q!"#{m.password}"!, m.quota, %Q!"#{m.maildir}"!, m.active].join(',')
  end
  puts
  puts "Aliases"
  puts "Address,Go to,Active"
  Alias.all.select{|a| !a.mailbox? }.each do |a|
    puts [a.address, %Q!"#{a.goto}"!, a.active].join(',')
  end
  puts
  puts "Forwards"
  puts "Address,Go to,Active"
  Alias.all.select{|a| a.mailbox? && a.goto != a.address }.each do |a|
    puts [a.address, %Q!"#{a.goto}"!, a.active].join(',')
  end
end

#edit_account(address, options) ⇒ Object



278
279
280
281
282
283
284
285
286
287
288
# File 'lib/postfix_admin/cli.rb', line 278

def (address, options)
  mailbox_check(address)
  mailbox = Mailbox.find(address)
  mailbox.name = options[:name] if options[:name]
  mailbox.quota = options[:quota] * KB_TO_MB if options[:quota]
  mailbox.active = options[:active] unless options[:active].nil?
  mailbox.save or raise "Could not save Mailbox"

  puts "Successfully updated #{address}"
  (address)
end

#edit_admin(admin_name, options) ⇒ Object



151
152
153
154
155
156
157
158
159
160
# File 'lib/postfix_admin/cli.rb', line 151

def edit_admin(admin_name, options)
  admin_check(admin_name)
  admin = Admin.find(admin_name)
  admin.super_admin = options[:super] unless options[:super].nil?
  admin.active = options[:active] unless options[:active].nil?
  admin.save or raise "Could not save Admin"

  puts "Successfully updated #{admin_name}"
  show_admin_details(admin_name)
end

#edit_domain(domain_name, options) ⇒ Object



162
163
164
165
166
167
168
169
170
171
172
173
# File 'lib/postfix_admin/cli.rb', line 162

def edit_domain(domain_name, options)
  domain_check(domain_name)
  domain = Domain.find(domain_name)
  domain.maxaliases   = options[:aliases]   if options[:aliases]
  domain.maxmailboxes = options[:mailboxes] if options[:mailboxes]
  domain.maxquota     = options[:maxquota]  if options[:maxquota]
  domain.active       = options[:active] unless options[:active].nil?
  domain.save or raise "Could not save Domain"

  puts "Successfully updated #{domain_name}"
  show_summary(domain_name)
end

#setup_domain(domain_name, password) ⇒ Object



76
77
78
79
80
81
# File 'lib/postfix_admin/cli.rb', line 76

def setup_domain(domain_name, password)
  admin = "admin@#{domain_name}"
  add_domain(domain_name)
  add_admin(admin, password)
  add_admin_domain(admin, domain_name)
end

#show(name) ⇒ Object



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
# File 'lib/postfix_admin/cli.rb', line 23

def show(name)
  name = name.downcase if name

  if name =~ /@/
    if Admin.exist?(name)
      show_admin_details(name)
    end

    if Mailbox.exist?(name)
      (name)
    elsif Alias.exist?(name)
      show_alias_details(name)
    end

    return
  end

  show_summary(name)

  if name
    show_admin(name)
    show_address(name)
    show_alias(name)
  else
    show_domain
    show_admin
  end
end

#show_account_details(user_name) ⇒ Object



83
84
85
86
87
88
89
90
91
92
93
94
95
96
# File 'lib/postfix_admin/cli.rb', line 83

def (user_name)
  (user_name)
  mailbox    = Mailbox.find(user_name)
  mail_alias = Alias.find(user_name)

  report("Mailbox") do
    puts "Address  : %s" % mailbox.username
    puts "Name     : %s" % mailbox.name
    puts "Password : %s" % mailbox.password
    puts "Quota    : %d MB" % max_str(mailbox.quota / KB_TO_MB)
    puts "Go to    : %s" % mail_alias.goto
    puts "Active   : %s" % mailbox.active_str
  end
end

#show_address(domain_name) ⇒ Object



197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
# File 'lib/postfix_admin/cli.rb', line 197

def show_address(domain_name)
  domain_check(domain_name)

  mailboxes = Domain.find(domain_name).mailboxes
  index = " No. Email                           Name                 Quota (MB) Active         Maildir"
  report("Addresses", index) do
    if mailboxes.empty?
      puts " No addresses"
      next
    end

    mailboxes.each_with_index do |m, i|
      quota = m.quota.to_f/ KB_TO_MB.to_f
      puts "%4d %-30s  %-20s %10s   %-3s  %s" % [i+1, m.username, m.name, max_str(quota.to_i), m.active_str, m.maildir]
    end
  end

end

#show_admin(domain_name = nil) ⇒ Object



180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
# File 'lib/postfix_admin/cli.rb', line 180

def show_admin(domain_name=nil)
  admins = domain_name ? Admin.select{|a| a.has_domain?(domain_name)} : Admin.all
  index = " No. Admin                                        Domains Active"
  report("Admins", index) do
    if admins.empty?
      puts " No admins"
      next
    end

    admins.each_with_index do |a, i|
      domains = a.super_admin? ? 'Super admin' : a.domains.count
      puts "%4d %-40s %11s   %-3s" % [i+1, a.username, domains, a.active_str]
    end
  end

end

#show_admin_details(name) ⇒ Object



98
99
100
101
102
103
104
105
106
107
108
109
# File 'lib/postfix_admin/cli.rb', line 98

def show_admin_details(name)
  admin_check(name)
  admin = Admin.find(name)

  report("Admin") do
    puts "Name     : %s" % admin.username
    puts "Password : %s" % admin.password
    puts "Domains  : %s" % (admin.super_admin? ? "ALL" : admin.domains.count)
    puts "Role     : %s" % (admin.super_admin? ? "Super admin" : "Admin")
    puts "Active   : %s" % admin.active_str
  end
end

#show_admin_domain(user_name) ⇒ Object



229
230
231
232
233
234
235
236
237
238
239
240
241
# File 'lib/postfix_admin/cli.rb', line 229

def show_admin_domain(user_name)
  admin = Admin.find(user_name)
  if admin.domains.empty?
    puts "\nNo domain in database"
    return
  end

  report("Domains (#{user_name})", " No. Domain") do
    admin.domains.each_with_index do |d, i|
      puts "%4d %-30s" % [i+1, d.domain_name]
    end
  end
end

#show_alias(domain_name) ⇒ Object



216
217
218
219
220
221
222
223
224
225
226
227
# File 'lib/postfix_admin/cli.rb', line 216

def show_alias(domain_name)
  domain_check(domain_name)

  forwards, aliases = Domain.find(domain_name).aliases.partition{|a| a.mailbox?}

  forwards.delete_if do |f|
    f.address == f.goto
  end

  show_alias_base("Forwards", forwards)
  show_alias_base("Aliases",  aliases)
end

#show_alias_details(name) ⇒ Object



111
112
113
114
115
116
117
118
119
# File 'lib/postfix_admin/cli.rb', line 111

def show_alias_details(name)
  alias_check(name)
  mail_alias = Alias.find(name)
  report("Alias") do
    puts "Address  : %s" % mail_alias.address
    puts "Go to    : %s" % mail_alias.goto
    puts "Active   : %s" % mail_alias.active_str
  end
end

#show_domainObject



121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
# File 'lib/postfix_admin/cli.rb', line 121

def show_domain
  index = " No. Domain                          Aliases   Mailboxes     Quota (MB)  Active"
  report('Domains', index) do
    if Domain.all_without_special_domain.empty?
      puts " No domains"
      next
    end

    Domain.all_without_special_domain.each_with_index do |d, i|
      puts "%4d %-30s %3d /%3s   %3d /%3s %10d         %-3s" %
        [i+1, d.domain_name, d.num_total_aliases, max_str(d.maxaliases),
         d.mailboxes.count, max_str(d.maxmailboxes), d.maxquota, d.active_str]
    end
  end

end

#show_summary(domain_name = nil) ⇒ Object



52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# File 'lib/postfix_admin/cli.rb', line 52

def show_summary(domain_name=nil)
  title = "Summary"
  if domain_name
    domain_name = domain_name.downcase
    domain_check(domain_name)
    title = "Summary of #{domain_name}"
  end

  report(title) do
    if domain_name
      domain = Domain.find(domain_name)
      puts "Mailboxes : %4d / %4s"    % [domain.mailboxes.count, max_str(domain.maxmailboxes)]
      puts "Aliases   : %4d / %4s"    % [domain.num_total_aliases, max_str(domain.maxaliases)]
      puts "Max Quota : %4d MB" % domain.maxquota
      puts "Active    :  %3s" % domain.active_str
    else
      puts "Domains   : %4d" % Domain.all_without_special_domain.count
      puts "Admins    : %4d" % Admin.count
      puts "Mailboxes : %4d" % Mailbox.count
      puts "Aliases   : %4d" % Domain.num_total_aliases
    end
  end
end