Module: Muzak::Utils
- Included in:
- Index, Instance, Player, Player::StubPlayer, Plugin::StubPlugin, Song
- Defined in:
- lib/muzak/utils.rb
Overview
A collection of convenience utilities for use throughout muzak.
Class Method Summary collapse
-
.album_art?(filename) ⇒ Boolean
Tests whether the given filename is likely to be album art.
-
.music?(filename) ⇒ Boolean
Tests whether the given filename is likely to be music.
-
.resolve_command(cmd) ⇒ String
Convert the given command into a method (kebab to camel case).
-
.resolve_method(meth) ⇒ String
Convert the given method into a command (camel to kebab case).
-
.which?(util) ⇒ Boolean
Tests whether the given utility is available in the system path.
Instance Method Summary collapse
-
#build_response(error: nil, data: nil) ⇒ Object
Returns a response hash containing the given data and error.
-
#debug(*args) ⇒ void
Outputs a boxed debugging message.
-
#debug? ⇒ Boolean
Whether or not muzak is running in debug mode.
-
#error(*args) ⇒ void
Outputs a boxed error message.
-
#error!(*args) ⇒ void
Outputs a boxed error message and then exits.
-
#output(box, *args) ⇒ void
Outputs a boxed message and arguments.
-
#pretty(color = :none, str) ⇒ String
Formats a string with ANSI colors.
-
#verbose(*args) ⇒ void
Outputs a boxed verbose message.
-
#verbose? ⇒ Boolean
Whether or not muzak is running in verbose mode.
-
#warn(*args) ⇒ void
Outputs a boxed warning message.
Class Method Details
.album_art?(filename) ⇒ Boolean
Tests whether the given filename is likely to be album art.
32 33 34 |
# File 'lib/muzak/utils.rb', line 32 def self.album_art?(filename) File.basename(filename) =~ /(cover)|(folder).(jpg)|(png)/i end |
.music?(filename) ⇒ Boolean
Tests whether the given filename is likely to be music.
25 26 27 |
# File 'lib/muzak/utils.rb', line 25 def self.music?(filename) [".mp3", ".flac", ".m4a", ".wav", ".ogg", ".oga", ".opus"].include?(File.extname(filename.downcase)) end |
.resolve_command(cmd) ⇒ String
Convert the given command into a method (kebab to camel case).
9 10 11 |
# File 'lib/muzak/utils.rb', line 9 def self.resolve_command(cmd) cmd.tr "-", "_" end |
.resolve_method(meth) ⇒ String
Convert the given method into a command (camel to kebab case).
18 19 20 |
# File 'lib/muzak/utils.rb', line 18 def self.resolve_method(meth) meth.to_s.tr "_", "-" end |
.which?(util) ⇒ Boolean
Tests whether the given utility is available in the system path.
39 40 41 42 43 |
# File 'lib/muzak/utils.rb', line 39 def self.which?(util) ENV["PATH"].split(File::PATH_SEPARATOR).any? do |path| File.executable?(File.join(path, util)) end end |
Instance Method Details
#build_response(error: nil, data: nil) ⇒ Object
Returns a response hash containing the given data and error.
124 125 126 127 128 129 130 131 |
# File 'lib/muzak/utils.rb', line 124 def build_response(error: nil, data: nil) { response: { error: error, data: data, method: caller_locations.first.label } } end |
#debug(*args) ⇒ void
This method returns an undefined value.
Outputs a boxed debugging message.
106 107 108 109 110 |
# File 'lib/muzak/utils.rb', line 106 def debug(*args) return unless debug? context = self.is_a?(Module) ? name : self.class.name output pretty(:yellow, "debug"), "[#{context}]", args end |
#debug? ⇒ Boolean
Returns whether or not muzak is running in debug mode.
46 47 48 |
# File 'lib/muzak/utils.rb', line 46 def debug? Config.debug end |
#error(*args) ⇒ void
This method returns an undefined value.
Outputs a boxed error message.
90 91 92 93 |
# File 'lib/muzak/utils.rb', line 90 def error(*args) context = self.is_a?(Module) ? name : self.class.name output pretty(:red, "error"), "[#{context}]", args end |
#error!(*args) ⇒ void
This method returns an undefined value.
Outputs a boxed error message and then exits.
98 99 100 101 |
# File 'lib/muzak/utils.rb', line 98 def error!(*args) error *args exit 1 end |
#output(box, *args) ⇒ void
This method returns an undefined value.
Outputs a boxed message and arguments.
75 76 77 78 |
# File 'lib/muzak/utils.rb', line 75 def output(box, *args) msg = args.join(" ") puts "[#{box}] #{msg}" end |
#pretty(color = :none, str) ⇒ String
Formats a string with ANSI colors.
59 60 61 62 63 64 65 66 67 68 69 |
# File 'lib/muzak/utils.rb', line 59 def pretty(color = :none, str) colors = { none: 0, red: 31, green: 32, yellow: 33, blue: 34 } "\e[#{colors[color]}m#{str}\e[0m" end |
#verbose(*args) ⇒ void
This method returns an undefined value.
Outputs a boxed verbose message.
115 116 117 118 119 |
# File 'lib/muzak/utils.rb', line 115 def verbose(*args) return unless verbose? output pretty(:blue, "verbose"), args end |
#verbose? ⇒ Boolean
Returns whether or not muzak is running in verbose mode.
51 52 53 |
# File 'lib/muzak/utils.rb', line 51 def verbose? Config.verbose end |
#warn(*args) ⇒ void
This method returns an undefined value.
Outputs a boxed warning message.
83 84 85 |
# File 'lib/muzak/utils.rb', line 83 def warn(*args) output pretty(:yellow, "warn"), args end |