Class: HTAuth::Passwd
- Inherits:
-
Object
- Object
- HTAuth::Passwd
- Defined in:
- lib/htauth/passwd.rb
Constant Summary
- MAX_PASSWD_LENGTH =
255
Instance Attribute Summary (collapse)
-
- (Object) passwd_file
Returns the value of attribute passwd_file.
Instance Method Summary (collapse)
-
- (Passwd) initialize
constructor
A new instance of Passwd.
- - (Object) option_parser
- - (Object) options
- - (Object) parse_options(argv)
- - (Object) run(argv, env = ENV)
- - (Object) show_help
- - (Object) show_version
Constructor Details
- (Passwd) initialize
A new instance of Passwd
16 17 18 |
# File 'lib/htauth/passwd.rb', line 16 def initialize @passwd_file = nil end |
Instance Attribute Details
- (Object) passwd_file
Returns the value of attribute passwd_file
14 15 16 |
# File 'lib/htauth/passwd.rb', line 14 def passwd_file @passwd_file end |
Instance Method Details
- (Object) option_parser
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 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 |
# File 'lib/htauth/passwd.rb', line 37 def option_parser if not @option_parser then @option_parser = OptionParser.new do |op| op. = <<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| .batch_mode = b end op.on("-c", "--create", "Create a new file; this overwrites an existing file.") do |c| .file_mode = HTAuth::File::CREATE end op.on("-d", "--crypt", "Force CRYPT encryption of the password (default).") do |c| .algorithm = "crypt" end op.on("-D", "--delete", "Delete the specified user.") do |d| .delete_entry = d end op.on("-h", "--help", "Display this help.") do |h| .show_help = h end op.on("-m", "--md5", "Force MD5 encryption of the password (default on Windows).") do |m| .algorithm = "md5" end op.on("-n", "--stdout", "Do not update the file; Display the results on stdout instead.") do |n| .send_to_stdout = true .passwdfile = HTAuth::File::STDOUT_FLAG end op.on("-p", "--plaintext", "Do not encrypt the password (plaintext).") do |p| .algorithm = "plaintext" end op.on("-s", "--sha1", "Force SHA encryption of the password.") do |s| .algorithm = "sha1" end op.on("-v", "--version", "Show version info.") do |v| .show_version = v end end end @option_parser end |
- (Object) options
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
# File 'lib/htauth/passwd.rb', line 20 def 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 |
- (Object) parse_options(argv)
106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 |
# File 'lib/htauth/passwd.rb', line 106 def (argv) begin option_parser.parse!(argv) show_version if .show_version show_help if .show_help raise ::OptionParser::ParseError, "Unable to send to stdout AND create a new file" if .send_to_stdout and (.file_mode == File::CREATE) raise ::OptionParser::ParseError, "a username is needed" if .send_to_stdout and argv.size < 1 raise ::OptionParser::ParseError, "a username and password are needed" if .send_to_stdout and .batch_mode and ( argv.size < 2 ) raise ::OptionParser::ParseError, "a passwordfile, username and password are needed " if not .send_to_stdout and .batch_mode and ( argv.size < 3 ) raise ::OptionParser::ParseError, "a passwordfile and username are needed" if argv.size < 2 .passwdfile = argv.shift unless .send_to_stdout .username = argv.shift .password = argv.shift if .batch_mode rescue ::OptionParser::ParseError => pe $stderr.puts "ERROR: #{option_parser.program_name} - #{pe}" show_help exit 1 end end |
- (Object) run(argv, env = ENV)
129 130 131 132 133 134 135 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 |
# File 'lib/htauth/passwd.rb', line 129 def run(argv, env = ENV) begin (argv) passwd_file = PasswdFile.new(.passwdfile, .file_mode) if .delete_entry then passwd_file.delete(.username) else unless .batch_mode # initialize here so that if $stdin is overwritten it gest picked up hl = ::HighLine.new action = passwd_file.has_entry?(.username) ? "Changing" : "Adding" $stdout.puts "#{action} password for #{.username}." pw_in = hl.ask(" New password: ") { |q| q.echo = '*' } raise PasswordError, "password '#{pw_in}' too long" if pw_in.length >= MAX_PASSWD_LENGTH pw_validate = hl.ask("Re-type new password: ") { |q| q.echo = '*' } raise PasswordError, "They don't match, sorry." unless pw_in == pw_validate .password = pw_in end passwd_file.add_or_update(.username, .password, .algorithm) end passwd_file.save! rescue HTAuth::FileAccessError => fae msg = "Password file failure (#{.passwdfile}) " $stderr.puts "#{msg}: #{fae.}" exit 1 rescue HTAuth::PasswordError => pe $stderr.puts "#{pe.}" exit 1 rescue HTAuth::PasswdFileError => fe $stderr.puts "#{fe.}" exit 1 rescue SignalException => se $stderr.puts $stderr.puts "Interrupted" exit 1 end exit 0 end |
- (Object) show_help
96 97 98 99 |
# File 'lib/htauth/passwd.rb', line 96 def show_help $stdout.puts option_parser exit 1 end |
- (Object) show_version
101 102 103 104 |
# File 'lib/htauth/passwd.rb', line 101 def show_version $stdout.puts "#{option_parser.program_name}: version #{HTAuth::VERSION}" exit 1 end |