Class: HTAuth::CLI::Passwd

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

Overview

Internal: Implemenation of the commandline htpasswd-ruby

Constant Summary collapse

MAX_PASSWD_LENGTH =
255

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializePasswd

Returns a new instance of Passwd.



17
18
19
20
21
# File 'lib/htauth/cli/passwd.rb', line 17

def initialize
  @passwd_file = nil
  @option_parser = nil
  @options = nil
end

Instance Attribute Details

#passwd_fileObject

Returns the value of attribute passwd_file.



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

def passwd_file
  @passwd_file
end

Instance Method Details

#option_parserObject



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
# File 'lib/htauth/cli/passwd.rb', line 40

def option_parser
  if not @option_parser then
    @option_parser = OptionParser.new do |op|
      op.banner = <<-EOB
Usage: 
      #{op.program_name} [-cmdpsD] passwordfile username
      #{op.program_name} -b[cmdpsD] passwordfile username password

      #{op.program_name} -n[mdps] username
      #{op.program_name} -nb[mdps] username password
      EOB

      op.separator ""

      op.on("-b", "--batch", "Batch mode, get the password from the command line, rather than prompt") do |b|
        options.batch_mode = b
      end

      op.on("-c", "--create", "Create a new file; this overwrites an existing file.") do |c|
        options.file_mode = HTAuth::File::CREATE
      end

      op.on("-d", "--crypt", "Force CRYPT encryption of the password.") do |c|
        options.algorithm = Algorithm::CRYPT
      end

      op.on("-D", "--delete", "Delete the specified user.") do |d|
        options.delete_entry = d
      end

      op.on("-h", "--help", "Display this help.") do |h|
        options.show_help = h
      end

      op.on("-m", "--md5", "Force MD5 encryption of the password (default).") do |m|
        options.algorithm = Algorithm::MD5
      end

      op.on("-n", "--stdout", "Do not update the file; Display the results on stdout instead.") do |n|
        options.send_to_stdout = true
        options.passwdfile     = HTAuth::File::STDOUT_FLAG
      end

      op.on("-p", "--plaintext", "Do not encrypt the password (plaintext).") do |p|
        options.algorithm = Algorithm::PLAINTEXT
      end

      op.on("-s", "--sha1", "Force SHA encryption of the password.") do |s|
        options.algorithm = Algorithm::SHA1
      end

      op.on("-v", "--version", "Show version info.") do |v|
        options.show_version = v
      end

      op.separator ""

      op.separator "The SHA algorihtm does not use a salt and is less secure than the MD5 algorithm"
    end
  end
  @option_parser
end

#optionsObject



23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# File 'lib/htauth/cli/passwd.rb', line 23

def options
  if @options.nil? then
    @options                = ::OpenStruct.new
    @options.batch_mode     = false
    @options.file_mode      = File::ALTER
    @options.passwdfile     = nil
    @options.algorithm      = Algorithm::EXISTING
    @options.send_to_stdout = false
    @options.show_version   = false
    @options.show_help      = false
    @options.username       = nil
    @options.delete_entry   = false
    @options.password       = ""
  end
  @options
end

#parse_options(argv) ⇒ Object



113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
# File 'lib/htauth/cli/passwd.rb', line 113

def parse_options(argv)
  begin
    option_parser.parse!(argv)
    show_version if options.show_version
    show_help if options.show_help 

    raise ::OptionParser::ParseError, "Unable to send to stdout AND create a new file" if options.send_to_stdout and (options.file_mode == File::CREATE)
    raise ::OptionParser::ParseError, "a username is needed" if options.send_to_stdout and argv.size < 1
    raise ::OptionParser::ParseError, "a username and password are needed" if options.send_to_stdout and options.batch_mode  and ( argv.size < 2 ) 
    raise ::OptionParser::ParseError, "a passwordfile, username and password are needed " if not options.send_to_stdout and options.batch_mode and ( argv.size < 3 )
    raise ::OptionParser::ParseError, "a passwordfile and username are needed" if argv.size < 2

    options.passwdfile = argv.shift unless options.send_to_stdout
    options.username   = argv.shift
    options.password   = argv.shift if options.batch_mode

  rescue ::OptionParser::ParseError => pe
    $stderr.puts "ERROR: #{option_parser.program_name} - #{pe}"
    show_help
    exit 1
  end
end

#run(argv, env = ENV) ⇒ Object



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
# File 'lib/htauth/cli/passwd.rb', line 136

def run(argv, env = ENV)
  begin
    parse_options(argv)
    passwd_file = PasswdFile.new(options.passwdfile, options.file_mode)

    if options.delete_entry then
      passwd_file.delete(options.username)
    else
      unless options.batch_mode 
        console = Console.new

        action = passwd_file.has_entry?(options.username) ? "Changing" : "Adding"

        console.say "#{action} password for #{options.username}."

        pw_in       = console.ask("        New password: ")
        raise PasswordError, "password '#{pw_in}' too long" if pw_in.length >= MAX_PASSWD_LENGTH

        pw_validate = console.ask("Re-type new password: ")
        raise PasswordError, "They don't match, sorry." unless pw_in == pw_validate
        options.password = pw_in
      end
      passwd_file.add_or_update(options.username, options.password, options.algorithm)
    end

    passwd_file.save! 

  rescue HTAuth::FileAccessError => fae
    msg = "Password file failure (#{options.passwdfile}) "
    $stderr.puts "#{msg}: #{fae.message}"
    exit 1
  rescue HTAuth::Error => pe
    $stderr.puts "#{pe.message}"
    exit 1
  rescue SignalException => se
    $stderr.puts
    $stderr.puts "Interrupted #{se}"
    exit 1
  end
  exit 0
end

#show_helpObject



103
104
105
106
# File 'lib/htauth/cli/passwd.rb', line 103

def show_help
  $stdout.puts option_parser
  exit 1
end

#show_versionObject



108
109
110
111
# File 'lib/htauth/cli/passwd.rb', line 108

def show_version
  $stdout.puts "#{option_parser.program_name}: version #{HTAuth::VERSION}"
  exit 1
end