Class: Neocities::CLI
- Inherits:
-
Object
- Object
- Neocities::CLI
- Defined in:
- lib/neocities/cli.rb
Constant Summary collapse
- SUBCOMMANDS =
%w{upload delete list info push logout pizza}- HELP_SUBCOMMANDS =
['-h', '--help', 'help']
- PENELOPE_MOUTHS =
%w{^ o ~ - v U}- PENELOPE_EYES =
%w{o ~ O}
Class Method Summary collapse
Instance Method Summary collapse
- #delete ⇒ Object
- #display_banner ⇒ Object
- #display_delete_help_and_exit ⇒ Object
- #display_help_and_exit ⇒ Object
- #display_info_help_and_exit ⇒ Object
- #display_list_help_and_exit ⇒ Object
- #display_logout_help_and_exit ⇒ Object
- #display_pizza_help_and_exit ⇒ Object
- #display_push_help_and_exit ⇒ Object
- #display_response(resp) ⇒ Object
- #display_upload_help_and_exit ⇒ Object
- #info ⇒ Object
-
#initialize(argv) ⇒ CLI
constructor
A new instance of CLI.
- #list ⇒ Object
- #logout ⇒ Object
- #push ⇒ Object
- #run ⇒ Object
- #upload ⇒ Object
Constructor Details
#initialize(argv) ⇒ CLI
Returns a new instance of CLI.
16 17 18 19 20 21 22 23 24 |
# File 'lib/neocities/cli.rb', line 16 def initialize(argv) @argv = argv.dup @pastel = Pastel.new eachline: "\n" @subcmd = @argv.first = @argv[1..@argv.length] @prompt = TTY::Prompt.new @api_key = ENV['NEOCITIES_API_KEY'] || nil @app_config_path = File.join self.class.app_config_path, 'config' end |
Class Method Details
.app_config_path ⇒ Object
384 385 386 |
# File 'lib/neocities/cli.rb', line 384 def self.app_config_path File.join root_config_path, 'neocities' end |
.root_config_path ⇒ Object
388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 |
# File 'lib/neocities/cli.rb', line 388 def self.root_config_path platform = if RUBY_PLATFORM =~ /win32/ :win32 elsif RUBY_PLATFORM =~ /darwin/ :darwin elsif RUBY_PLATFORM =~ /linux/ :linux else :unknown end case platform when :win32 return File.join(ENV['LOCALAPPDATA']) if ENV['LOCALAPPDATA'] File.join ENV['USERPROFILE'], 'Local Settings', 'Application Data' when :darwin File.join ENV['HOME'], 'Library', 'Application Support' else return File.join(ENV['XDG_CONFIG_HOME']) if ENV['XDG_CONFIG_HOME'] File.join ENV['HOME'], '.config' end end |
Instance Method Details
#delete ⇒ Object
77 78 79 80 81 82 83 84 |
# File 'lib/neocities/cli.rb', line 77 def delete .each do |file| puts @pastel.bold("Deleting #{file} ...") resp = @client.delete file display_response resp end end |
#display_banner ⇒ Object
357 358 359 360 361 362 363 364 365 |
# File 'lib/neocities/cli.rb', line 357 def puts "\n |\\\\---/|\n | \#{PENELOPE_EYES.sample}_\#{PENELOPE_EYES.sample} | \#{@pastel.on_cyan.bold ' Neocities '}\n \\\\_\#{PENELOPE_MOUTHS.sample}_/\n\n" end |
#display_delete_help_and_exit ⇒ Object
277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 |
# File 'lib/neocities/cli.rb', line 277 def display_delete_help_and_exit puts " \#{@pastel.green.bold 'delete'} - Delete files on your Neocities site\n\n \#{@pastel.dim 'Examples:'}\n\n \#{@pastel.green '$ neocities delete myfile.jpg'} Delete myfile.jpg\n\n \#{@pastel.green '$ neocities delete myfile.jpg myfile2.jpg'} Delete myfile.jpg and myfile2.jpg\n\n \#{@pastel.green '$ neocities delete mydir'} Deletes mydir and everything inside it (be careful!)\n\n" exit end |
#display_help_and_exit ⇒ Object
367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 |
# File 'lib/neocities/cli.rb', line 367 def display_help_and_exit puts " \#{@pastel.dim 'Subcommands:'}\npush Recursively upload a local directory to your site\nupload Upload individual files to your Neocities site\ndelete Delete files from your Neocities site\nlist List files from your Neocities site\ninfo Information and stats for your site\nlogout Remove the site api key from the config\nversion Unceremoniously display version and self destruct\npizza Order a free pizza\n\n" exit end |
#display_info_help_and_exit ⇒ Object
329 330 331 332 333 334 335 336 337 338 339 340 341 |
# File 'lib/neocities/cli.rb', line 329 def display_info_help_and_exit puts " \#{@pastel.green.bold 'info'} - Get site info\n\n \#{@pastel.dim 'Examples:'}\n\n \#{@pastel.green '$ neocities info fauux'} Gets info for 'fauux' site\n\n" exit end |
#display_list_help_and_exit ⇒ Object
259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 |
# File 'lib/neocities/cli.rb', line 259 def display_list_help_and_exit puts " \#{@pastel.green.bold 'list'} - List files on your Neocities site\n\n \#{@pastel.dim 'Examples:'}\n\n \#{@pastel.green '$ neocities list /'} List files in your root directory\n\n \#{@pastel.green '$ neocities list -a'} Recursively display all files and directories\n\n \#{@pastel.green '$ neocities list -d /mydir'} Show detailed information on /mydir\n\n" exit end |
#display_logout_help_and_exit ⇒ Object
343 344 345 346 347 348 349 350 351 352 353 354 355 |
# File 'lib/neocities/cli.rb', line 343 def display_logout_help_and_exit puts " \#{@pastel.green.bold 'logout'} - Remove the site api key from the config\n\n \#{@pastel.dim 'Examples:'}\n\n \#{@pastel.green '$ neocities logout -y'}\n\n" exit end |
#display_pizza_help_and_exit ⇒ Object
254 255 256 257 |
# File 'lib/neocities/cli.rb', line 254 def display_pizza_help_and_exit puts "Sorry, we're fresh out of dough today. Try again tomorrow." exit end |
#display_push_help_and_exit ⇒ Object
311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 |
# File 'lib/neocities/cli.rb', line 311 def display_push_help_and_exit puts " \#{@pastel.green.bold 'push'} - Recursively upload a local directory to your Neocities site\n\n \#{@pastel.dim 'Examples:'}\n\n \#{@pastel.green '$ neocities push .'} Recursively upload current directory.\n\n \#{@pastel.green '$ neocities push -e node_modules -e secret.txt .'} Exclude certain files from push\n\n \#{@pastel.green '$ neocities push --no-gitignore .'} Don't use .gitignore to exclude files\n\n" exit end |
#display_response(resp) ⇒ Object
26 27 28 29 30 31 32 33 34 |
# File 'lib/neocities/cli.rb', line 26 def display_response(resp) if resp[:result] == 'success' puts "#{@pastel.green.bold 'SUCCESS:'} #{resp[:message]}" else out = "#{@pastel.red.bold 'ERROR:'} #{resp[:message]}" out += " (#{resp[:error_type]})" if resp[:error_type] puts out end end |
#display_upload_help_and_exit ⇒ Object
295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 |
# File 'lib/neocities/cli.rb', line 295 def display_upload_help_and_exit puts " \#{@pastel.green.bold 'upload'} - Upload individual files to your Neocities site\n\n \#{@pastel.dim 'Examples:'}\n\n \#{@pastel.green '$ neocities upload img.jpg img2.jpg'} Upload images to the root of your site\n\n \#{@pastel.green '$ neocities upload -d images img.jpg'} Upload img.jpg to the 'images' directory on your site\n\n" exit end |
#info ⇒ Object
101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 |
# File 'lib/neocities/cli.rb', line 101 def info resp = @client.info([0] || @sitename) if resp[:result] == 'error' display_response resp exit end out = [] resp[:info].each do |k,v| v = Time.parse(v).localtime if k == :created_at || k == :last_updated out.push [@pastel.bold(k), v] end puts TTY::Table.new(out).to_s exit end |
#list ⇒ Object
120 121 122 123 124 125 126 127 128 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 |
# File 'lib/neocities/cli.rb', line 120 def list if .delete('-d') == '-d' @detail = true end if .delete('-a') [0] = nil end resp = @client.list [0] if resp[:result] == 'error' display_response resp exit end if @detail out = [ [@pastel.bold('Path'), @pastel.bold('Size'), @pastel.bold('Updated')] ] resp[:files].each do |file| out.push([ @pastel.send(file[:is_directory] ? :blue : :green).bold(file[:path]), file[:size] || '', Time.parse(file[:updated_at]).localtime ]) end puts TTY::Table.new(out).to_s exit end resp[:files].each do |file| puts @pastel.send(file[:is_directory] ? :blue : :green).bold(file[:path]) end end |
#logout ⇒ Object
86 87 88 89 90 91 92 93 94 95 96 97 98 99 |
# File 'lib/neocities/cli.rb', line 86 def logout confirmed = false loop { case [0] when '-y' then .shift; confirmed = true when /^-/ then puts(@pastel.red.bold("Unknown option: #{@subargs[0].inspect}")); display_logout_help_and_exit else break end } if confirmed FileUtils.rm @app_config_path puts @pastel.bold("Your api key has been removed.") end end |
#push ⇒ Object
156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 |
# File 'lib/neocities/cli.rb', line 156 def push @no_gitignore = false @excluded_files = [] loop { case [0] when '--no-gitignore' then .shift; @no_gitignore = true when '-e' then .shift; @excluded_files.push(.shift) when /^-/ then puts(@pastel.red.bold("Unknown option: #{@subargs[0].inspect}")); display_push_help_and_exit else break end } root_path = Pathname [0] if !root_path.exist? display_response result: 'error', message: "path #{root_path} does not exist" display_push_help_and_exit end if !root_path.directory? display_response result: 'error', message: 'provided path is not a directory' display_push_help_and_exit end Dir.chdir(root_path) do paths = Dir.glob(File.join('**', '*')) if @no_gitignore == false begin ignores = File.readlines('.gitignore').collect! do |ignore| File.directory?(ignore.strip!) ? "#{ignore}**" : ignore end paths.select! do |path| res = true ignores.each do |ignore| if File.fnmatch?(ignore.strip, path) res = false break end end end puts "Not pushing .gitignore entries (--no-gitignore to disable)" rescue Errno::ENOENT end end paths.select! {|p| !@excluded_files.include?(p)} paths.collect! {|path| Pathname path} paths.each do |path| next if path.directory? print @pastel.bold("Uploading #{path} ... ") resp = @client.upload path, path if resp[:result] == 'success' print @pastel.green.bold("SUCCESS") + "\n" else print "\n" display_response resp end end end end |
#run ⇒ Object
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 |
# File 'lib/neocities/cli.rb', line 36 def run if @argv[0] == 'version' puts Neocities::VERSION exit end display_help_and_exit if @subcmd.nil? || @argv.include?(HELP_SUBCOMMANDS) || !SUBCOMMANDS.include?(@subcmd) send "display_#{@subcmd}_help_and_exit" if .empty? begin @api_key = File.read @app_config_path rescue Errno::ENOENT @api_key = nil end if @api_key.nil? puts "Please login to get your API key:" if !@sitename && !@password @sitename = @prompt.ask('sitename:', default: ENV['NEOCITIES_SITENAME']) @password = @prompt.mask('password:', default: ENV['NEOCITIES_PASSWORD']) end @client = Neocities::Client.new sitename: @sitename, password: @password res = @client.key if res[:api_key] FileUtils.mkdir_p Pathname(@app_config_path).dirname File.write @app_config_path, res[:api_key] puts "The api key for #{@pastel.bold @sitename} has been stored in #{@pastel.bold @app_config_path}." else display_response resp exit end else @client = Neocities::Client.new api_key: @api_key end send @subcmd end |
#upload ⇒ Object
221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 |
# File 'lib/neocities/cli.rb', line 221 def upload display_upload_help_and_exit if .empty? @dir = '' loop { case [0] when '-d' then .shift; @dir = .shift when /^-/ then puts(@pastel.red.bold("Unknown option: #{@subargs[0].inspect}")); display_upload_help_and_exit else break end } .each do |path| path = Pathname path if !path.exist? display_response result: 'error', message: "#{path} does not exist locally." next end if path.directory? puts "#{path} is a directory, skipping (see the push command)" next end remote_path = ['/', @dir, path.basename.to_s].join('/').gsub %r{/+}, '/' puts @pastel.bold("Uploading #{path} to #{remote_path} ...") resp = @client.upload path, remote_path display_response resp end end |