Module: Morpheus::Cli::PrintHelper
- Included in:
- Credentials
- Defined in:
- lib/morpheus/cli/mixins/print_helper.rb
Constant Summary collapse
- ALL_LABELS_UPCASE =
false
Class Method Summary collapse
Instance Method Summary collapse
- #as_csv(data, default_columns = nil, options = {}, object_key = nil) ⇒ Object
-
#as_description_list(obj, columns, opts = {}) ⇒ Object
as_description_list() prints a a two column table containing the name and value of a list of descriptions Usage: print_description_list([:id, :name, :status], my_instance, {}).
- #as_details(obj, opts = {}) ⇒ Object
- #as_json(data, options = {}, object_key = nil) ⇒ Object
- #as_pretty_details(obj, opts = {}) ⇒ Object
-
#as_pretty_table(data, columns, options = {}) ⇒ String
as_pretty_table generates a table with aligned columns and truncated values.
- #as_yaml(data, options = {}, object_key = nil) ⇒ Object
-
#build_column_definitions(*columns) ⇒ Array of OpenStruct
build_column_definitions constructs an Array of column definitions (OpenStruct) Each column is defined by a label (String), and a display_method (Proc).
- #current_terminal_width ⇒ Object
- #format_abbreviated_value(value) ⇒ Object
- #format_api_request(http_method, url, headers, payload = nil, options = {}) ⇒ Object
- #format_available_options(option_types) ⇒ Object
- #format_boolean(v) ⇒ Object
-
#format_curl_command(http_method, url, headers, payload = nil, options = {}) ⇒ Object
format_curl_command generates a valid curl command for the given api request formats command like:.
- #format_detail_value(value) ⇒ Object
- #format_dt_dd(label, value, label_width = 10, justify = "right", do_wrap = true) ⇒ Object
- #format_option_types_table(option_types, options = {}, domain_name = nil) ⇒ Object
- #format_percent(val, sig_dig = 2, hide_zero = false) ⇒ Object
-
#format_rate(amount, unit = 's', sig_dig = 2) ⇒ Object
returns 0.50 / s ie {value} / {unit}.
- #format_results_pagination(json_response, options = {}) ⇒ Object
- #format_simple_option_types_table(option_types, options = {}) ⇒ Object
- #format_table_cell(value, width, justify = "left", pad_char = " ", suffix = "...") ⇒ Object
-
#generate_usage_bar(used_value, max_value, opts = {}) ⇒ Object
shows cyan, yellow, red progress bar where 50% looks like [||||| ] todo: render units used / available here too maybe.
-
#justify_string(value, width, justify = "left", pad_char = " ") ⇒ String
justified returns a left, center, or right aligned string.
-
#parse_json_or_yaml(config, parsers = [:json, :yaml]) ⇒ Object
convert JSON or YAML string to a map.
- #parse_rest_exception(e, options = {}) ⇒ Object
- #parse_yaml_or_json(config, parsers = [:yaml, :json]) ⇒ Object
-
#print_description_list(columns, obj, opts = {}) ⇒ Object
print_description_list() is an alias for ‘print generate_description_list()`.
- #print_details(obj, opts = {}) ⇒ Object
- #print_dry_run(api_request, options = {}) ⇒ Object
-
#print_green_success(msg = nil) ⇒ Object
puts green message to stdout.
-
#print_h1(title, subtitles = nil, options = nil, suffix_content = "\n") ⇒ Object
print_h1 prints a header title and optional subtitles Output:.
- #print_h2(title, subtitles = nil, options = nil, suffix_content = "\n") ⇒ Object
- #print_pretty_details(obj, opts = {}) ⇒ Object
-
#print_red_alert(msg) ⇒ Object
puts red message to stderr why this not stderr yet? use print_error or if respond_to?(:my_terminal).
- #print_rest_errors(errors, options = {}) ⇒ Object
- #print_rest_exception(e, options = {}) ⇒ Object
- #print_results_pagination(json_response, options = {}) ⇒ Object
- #print_stats_usage(stats, opts = {}) ⇒ Object
- #print_system_command_dry_run(cmd, options = {}) ⇒ Object
- #print_to_file(txt, filename, overwrite = false, access_mode = 'w+') ⇒ Object
- #quote_csv_value(v) ⇒ Object
-
#records_as_csv(records, options = {}, default_columns = nil) ⇒ Object
deprecated, replaced by as_csv(records, columns, options, object_key).
- #required_blue_prompt ⇒ Object
- #sleep_with_dots(sleep_seconds, dots = 3, dot_chr = ".") ⇒ Object
-
#transform_data_for_field_options(data, options, object_key = nil) ⇒ Object
transform data for options –fields id,authority and –select id,authority support traversing records with –raw-fields and the list command.
-
#truncate_string(value, width, suffix = "...") ⇒ Object
truncate_string truncates a string and appends the suffix “…”.
-
#truncate_string_right(value, width, prefix = "...") ⇒ Object
truncate_string truncates a string and appends the prefix “…”.
- #with_stdout_to_file(filename, overwrite = false, access_mode = 'w+', &block) ⇒ Object
- #wrap(s, width, indent = 0) ⇒ Object
Class Method Details
.included(klass) ⇒ Object
13 14 15 |
# File 'lib/morpheus/cli/mixins/print_helper.rb', line 13 def self.included(klass) klass.send :include, Term::ANSIColor end |
.terminal_width ⇒ Object
17 18 19 |
# File 'lib/morpheus/cli/mixins/print_helper.rb', line 17 def self.terminal_width @@terminal_width ||= 80 end |
.terminal_width=(v) ⇒ Object
21 22 23 24 25 26 27 28 |
# File 'lib/morpheus/cli/mixins/print_helper.rb', line 21 def self.terminal_width=(v) if v.nil? || v.to_i == 0 @@terminal_width = nil else @@terminal_width = v.to_i end @@terminal_width end |
Instance Method Details
#as_csv(data, default_columns = nil, options = {}, object_key = nil) ⇒ Object
1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 |
# File 'lib/morpheus/cli/mixins/print_helper.rb', line 1218 def as_csv(data, default_columns=nil, ={}, object_key=nil) out = "" delim = [:csv_delim] || [:delim] || "," newline = [:csv_newline] || [:newline] || "\n" include_header = [:csv_no_header] ? false : true do_quotes = [:csv_quotes] || [:quotes] if [:reverse] if data.is_a?(Array) data.reverse! elsif data.is_a?(Hash) data.values.each {|v| v.reverse! if v.is_a?(Array) } end end if [:include_fields] data = (data, , object_key) if data.is_a?(Hash) if [:raw_fields] if [:include_fields_context] data = data[[:include_fields_context]] else # todo: could use a dynamic object_key, first Array or Hash in the data, can probably always do this... # if object_key.nil? # object_key = data.keys.find {|k| data[k].is_a?(Array) || data[k].is_a?(Hash) } # end # if object_key && data[object_key] # data = data[object_key] # end end else if object_key data = data[object_key] end end end else # need array of records, so always select the object/array here if object_key if data.is_a?(Hash) data = data[object_key] else Morpheus::Logging::DarkPrinter.puts "as_csv() expects data as an to fetch object key '#{object_key}' from, #{data.class}." if Morpheus::Logging.debug? end end end records = data # allow records as Array and Hash only.. if records.is_a?(Array) # records = records elsif records.is_a?(Hash) records = [records] else #raise "records_as_csv expects records as an Array of objects to render" Morpheus::Logging::DarkPrinter.puts "as_csv() expects data as an Array of objects to render, got a #{records.class} instead" if Morpheus::Logging.debug? # return "" return out end # build column definitions, by default use all properties for the first record (Hash) in the array columns = [] all_fields = records.first.is_a?(Hash) ? records.first.keys : [] if [:include_fields] if ([:include_fields].is_a?(Array) && [:include_fields].size == 1 && [:include_fields][0] == 'all') || [:include_fields] == 'all' columns = all_fields else columns = [:include_fields] end elsif [:all_fields] columns = all_fields elsif default_columns columns = default_columns else columns = all_fields end column_defs = build_column_definitions(columns) if include_header headers = column_defs.collect {|column_def| column_def.label } if do_quotes headers = headers.collect {|it| quote_csv_value(it) } end out << headers.join(delim) out << newline end lines = [] records.each do |obj| if obj cells = [] column_defs.each do |column_def| label = column_def.label value = column_def.display_method.call(obj) value = value.is_a?(String) ? value : JSON.fast_generate(value) # value = get_object_value(obj, column_def) if do_quotes cells << quote_csv_value(value) else cells << value.to_s end end end line = cells.join(delim) lines << line end out << lines.join(newline) #out << delim out end |
#as_description_list(obj, columns, opts = {}) ⇒ Object
as_description_list() prints a a two column table containing the name and value of a list of descriptions Usage: print_description_list([:id, :name, :status], my_instance, {})
960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 |
# File 'lib/morpheus/cli/mixins/print_helper.rb', line 960 def as_description_list(obj, columns, opts={}) columns = build_column_definitions(columns) #label_width = opts[:label_width] || 10 max_label_width = 0 justify = opts.key?(:justify) ? opts[:justify] : "right" do_wrap = opts.key?(:wrap) ? !!opts[:wrap] : true color = opts.key?(:color) ? opts[:color] : cyan rows = [] columns.flatten.each do |column_def| label = column_def.label label = label.upcase if ALL_LABELS_UPCASE # value = get_object_value(obj, column_def.display_method) value = column_def.display_method.call(obj) value = JSON.fast_generate(value) if value.is_a?(Hash) || value.is_a?(Array) if label.size > max_label_width max_label_width = label.size end rows << {label: label, value: value} end label_width = max_label_width + 1 # for a leading space ' ' ..ew value_width = nil if Morpheus::Cli::PrintHelper.terminal_width value_width = Morpheus::Cli::PrintHelper.terminal_width - label_width end out = "" out << color if color rows.each do |row| value = row[:value].to_s out << format_dt_dd(row[:label], value, label_width, justify, do_wrap) + "\n" end out << reset if color return out end |
#as_details(obj, opts = {}) ⇒ Object
1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 |
# File 'lib/morpheus/cli/mixins/print_helper.rb', line 1016 def as_details(obj, opts={}) #return "" if obj.nil? columns = {} keys = obj.keys if opts[:sort] keys.sort! end keys.each do |key| display_proc = nil if opts[:column_format] && opts[:column_format].key?(key.to_sym) display_proc = opts[:column_format][key.to_sym] else display_proc = lambda {|it| format_detail_value(it[key]) } end label = opts[:pretty] ? key.to_s.titleize : key.to_s columns[label] = display_proc end as_description_list(obj, columns, opts) end |
#as_json(data, options = {}, object_key = nil) ⇒ Object
1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 |
# File 'lib/morpheus/cli/mixins/print_helper.rb', line 1335 def as_json(data, ={}, object_key=nil) out = "" if !data return "null" # "No data" end if [:reverse] if data.is_a?(Array) data.reverse! elsif data.is_a?(Hash) data.values.each {|v| v.reverse! if v.is_a?(Array) } end end if [:include_fields] data = (data, , object_key) end do_pretty = .key?(:pretty_json) ? [:pretty_json] : true if do_pretty out << JSON.pretty_generate(data) else out << JSON.fast_generate(data) end #out << "\n" out end |
#as_pretty_details(obj, opts = {}) ⇒ Object
1008 1009 1010 |
# File 'lib/morpheus/cli/mixins/print_helper.rb', line 1008 def as_pretty_details(obj, opts={}) print as_pretty_details(obj, opts.merge({pretty: true})) end |
#as_pretty_table(data, columns, options = {}) ⇒ String
as_pretty_table generates a table with aligned columns and truncated values. This can be used in place of TablePrint.tp() Usage: puts as_pretty_table(my_objects, [:id, :name])
puts as_pretty_table(my_objects, ["id", "name", {"plan" => "plan.name" }], {color: white})
747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 |
# File 'lib/morpheus/cli/mixins/print_helper.rb', line 747 def as_pretty_table(data, columns, ={}) data = [data].flatten if [:reverse] if data.is_a?(Array) data.reverse! elsif data.is_a?(Hash) data.values.each {|v| v.reverse! if v.is_a?(Array) } end end # support --fields x,y,z and --all-fields or --fields all all_fields = data.first ? data.first.keys : [] #todo: support --raw-fields meh, not really needed.. # if options[:include_fields] && options[:raw_fields] # data = transform_data_for_field_options(data, options) # data = data[options[:include_fields_context]] if options[:include_fields_context] # elsif options[:include_fields] if [:include_fields] if ([:include_fields].is_a?(Array) && [:include_fields].size == 1 && [:include_fields][0] == 'all') || [:include_fields] == 'all' columns = all_fields else # so let's use the passed in column definitions instead of the raw data properties # columns = options[:include_fields] new_columns = {} [:include_fields].each do |f| matching_column = nil # column definitions vary right now, array of symbols/strings/hashes or perhaps a single hash if columns.is_a?(Array) && columns[0] && columns[0].is_a?(Hash) matching_column = columns.find {|c| if c.is_a?(Hash) c.keys[0].to_s.downcase == f.to_s.downcase else c && c.to_s.downcase == f.to_s.downcase end } elsif columns.is_a?(Hash) matching_key = columns.keys.find {|k| k.to_s.downcase == f.to_s.downcase } if matching_key matching_column = columns[matching_key] end end new_columns[f] = matching_column ? matching_column : f end columns = new_columns end elsif [:all_fields] columns = all_fields else columns = columns end columns = build_column_definitions(columns) table_color = [:color] || cyan cell_delim = [:delim] || " | " header_row = [] columns.each do |column_def| header_row << column_def.label end # generate rows matrix data for the specified columns rows = [] data.each do |row_data| row = [] columns.each do |column_def| # r << column_def.display_method.respond_to?(:call) ? column_def.display_method.call(row_data) : get_object_value(row_data, column_def.display_method) value = column_def.display_method.call(row_data) value = JSON.fast_generate(value) if value.is_a?(Hash) || value.is_a?(Array) row << value end rows << row end # all rows (pre-formatted) data_matrix = [header_row] + rows # determine column meta info i.e. width columns.each_with_index do |column_def, column_index| # column_def.meta = { # max_value_size: (header_row + rows).max {|row| row[column_index] ? row[column_index].to_s.size : 0 }.size # } if column_def.fixed_width column_def.width = column_def.fixed_width.to_i else max_value_size = 0 data_matrix.each do |row| v = row[column_index].to_s v_size = Term::ANSIColor.coloring? ? Term::ANSIColor.uncolored(v).size : v.size if v_size > max_value_size max_value_size = v_size end end max_width = (column_def.max_width.to_i > 0) ? column_def.max_width.to_i : nil min_width = (column_def.min_width.to_i > 0) ? column_def.min_width.to_i : nil if min_width && max_value_size < min_width column_def.width = min_width elsif max_width && max_value_size > max_width column_def.width = max_width else # expand / contract to size of the value by default column_def.width = max_value_size end #puts "DEBUG: #{column_index} column_def.width: #{column_def.width}" end end # responsive tables # pops columns off end until they all fit on the terminal # could use some options[:preferred_columns] logic here to throw away in some specified order # --all fields disables this trimmed_columns = [] if [:wrap] != true # && options[:include_fields].nil? && options[:all_fields] != true begin term_width = current_terminal_width() table_width = columns.inject(0) {|acc, column_def| acc + (column_def.width || 0) } table_width += ((columns.size-0) * (3)) # col border width if term_width && table_width # leave 1 column always... while table_width > term_width && columns.size > 1 column_index = columns.size - 1 removed_column = columns.pop trimmed_columns << removed_column if removed_column.width table_width -= removed_column.width table_width -= 3 # col border width end # clear from data_matrix # wel, nvm it just gets regenerated end end rescue => ex Morpheus::Logging::DarkPrinter.puts "Encountered error while applying responsive table sizing: (#{ex.class}) #{ex}" end if trimmed_columns.size > 0 # data_matrix = generate_table_data(data, columns, options) header_row = [] columns.each do |column_def| header_row << column_def.label end rows = [] data.each do |row_data| row = [] columns.each do |column_def| # r << column_def.display_method.respond_to?(:call) ? column_def.display_method.call(row_data) : get_object_value(row_data, column_def.display_method) value = column_def.display_method.call(row_data) value = JSON.fast_generate(value) if value.is_a?(Hash) || value.is_a?(Array) row << value end rows << row end data_matrix = [header_row] + rows end end # format header row header_cells = [] columns.each_with_index do |column_def, column_index| value = header_row[column_index] # column_def.label header_cells << format_table_cell(value, column_def.width, column_def.justify) end # format header spacer row if [:border_style] == :thin # a simpler looking table cell_delim = " " h_line = header_cells.collect {|cell| ("-" * cell.strip.size).ljust(cell.size, ' ') }.join(cell_delim) else # default border style h_line = header_cells.collect {|cell| ("-" * cell.size) }.join(cell_delim.gsub(" ", "-")) end # format data rows formatted_rows = [] rows.each_with_index do |row, row_index| formatted_row = [] row.each_with_index do |value, column_index| column_def = columns[column_index] formatted_row << format_table_cell(value, column_def.width, column_def.justify) end formatted_rows << formatted_row end table_str = "" table_str << header_cells.join(cell_delim) + "\n" table_str << h_line + "\n" formatted_rows.each do |row| table_str << row.join(cell_delim) + "\n" end out = "" out << table_color if table_color out << table_str out << reset if table_color out end |
#as_yaml(data, options = {}, object_key = nil) ⇒ Object
1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 |
# File 'lib/morpheus/cli/mixins/print_helper.rb', line 1361 def as_yaml(data, ={}, object_key=nil) out = "" if !data return "null" # "No data" end if [:reverse] if data.is_a?(Array) data.reverse! elsif data.is_a?(Hash) data.values.each {|v| v.reverse! if v.is_a?(Array) } end end if [:include_fields] data = (data, , object_key) end begin out << data.to_yaml rescue => err puts "failed to render YAML from data: #{data.inspect}" puts err. end #out << "\n" out end |
#build_column_definitions(*columns) ⇒ Array of OpenStruct
build_column_definitions constructs an Array of column definitions (OpenStruct) Each column is defined by a label (String), and a display_method (Proc)
Usage:
build_column_definitions(:id, :name)
build_column_definitions({"Object Id" => 'id'}, :name)
build_column_definitions({"ID" => 'id'}, "name", "plan.name", {status: lambda {|data| data['status'].upcase } })
1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 |
# File 'lib/morpheus/cli/mixins/print_helper.rb', line 1092 def build_column_definitions(*columns) # allow passing a single hash instead of an array of hashes if columns.size == 1 && columns[0].is_a?(Hash) columns = columns[0].collect {|k,v| {(k) => v} } else columns = columns.flatten.compact end results = [] columns.each do |col| # determine label if col.is_a?(String) # supports "field as Label" field_key, field_label = col.split(/\s+as\s+/) if field_key && field_label k = field_label.strip v = field_key.strip else k = col.strip v = col.strip end build_column_definitions([{(k) => v}]).each do |r| results << r if r end elsif col.is_a?(Symbol) k = col.to_s.upcase #.capitalize v = col.to_s build_column_definitions([{(k) => v}]).each do |r| results << r if r end elsif col.is_a?(Hash) column_def = OpenStruct.new k, v = col.keys[0], col.values[0] if k.is_a?(String) column_def.label = k elsif k.is_a?(Symbol) column_def.label = k else column_def.label = k.to_s # raise "invalid column definition label (#{k.class}) #{k.inspect}. Should be a String or Symbol." end # determine display_method if v.is_a?(String) column_def.display_method = lambda {|data| get_object_value(data, v) } elsif v.is_a?(Symbol) column_def.display_method = lambda {|data| get_object_value(data, v) } elsif v.is_a?(Proc) column_def.display_method = v elsif v.is_a?(Hash) || v.is_a?(OpenStruct) if v[:display_name] || v[:label] column_def.label = v[:display_name] || v[:label] end if v[:display_method] if v[:display_method].is_a?(Proc) column_def.display_method = v[:display_method] else # assume v[:display_method] is a String, Symbol column_def.display_method = lambda {|data| get_object_value(data, v[:display_method]) } end else # the default behavior is to use the key (undoctored) to find the data # column_def.display_method = k column_def.display_method = lambda {|data| get_object_value(data, k) } end # other column rendering options column_def.justify = v[:justify] if v[:max_width] column_def.max_width = v[:max_width] end if v[:min_width] column_def.min_width = v[:min_width] end # tp uses width to behave like max_width, but tp() is gone, remove this? if v[:width] column_def.width = v[:width] column_def.max_width = v[:width] end column_def.wrap = v[:wrap].nil? ? true : v[:wrap] # only utlized in as_description_list() right now else raise "invalid column definition value (#{v.class}) #{v.inspect}. Should be a String, Symbol, Proc or Hash" end # only upcase label for symbols, this is silly anyway, # just pass the exact label (key) that you want printed.. if column_def.label.is_a?(Symbol) column_def.label = column_def.label.to_s.upcase end results << column_def else raise "invalid column definition (#{column_def.class}) #{column_def.inspect}. Should be a String, Symbol or Hash" end end return results end |
#current_terminal_width ⇒ Object
35 36 37 |
# File 'lib/morpheus/cli/mixins/print_helper.rb', line 35 def current_terminal_width return IO.console.winsize[1] rescue 0 end |
#format_abbreviated_value(value) ⇒ Object
1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 |
# File 'lib/morpheus/cli/mixins/print_helper.rb', line 1055 def format_abbreviated_value(value) if value.is_a?(Hash) if value.keys.size == 0 "{}" else # show the first three properties keys = value.keys.select { |key| value[key].is_a?(Numeric) || value[key].is_a?(String) }.first(3) keys.collect { |key| "#{key.to_s.titleize}: #{value[key]}" }.join(", ") end elsif value.is_a?(Array) if value.size == 0 return "[]" elsif obj.size == 1 "[(#{obj.size})]" else "[(#{obj.size})]" end elsif value.is_a?(TrueClass) || value.is_a?(FalseClass) format_boolean(value) else value.to_s end end |
#format_api_request(http_method, url, headers, payload = nil, options = {}) ⇒ Object
262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 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 336 |
# File 'lib/morpheus/cli/mixins/print_helper.rb', line 262 def format_api_request(http_method, url, headers, payload=nil, ={}) out = "" # out << "\n" # out << "#{cyan}#{bold}#{dark}REQUEST#{reset}\n" request_string = "#{http_method.to_s.upcase} #{url}".strip out << request_string + "\n" out << cyan if payload out << "\n" is_multipart = (payload.is_a?(Hash) && payload[:multipart] == true) content_type = (headers && headers['Content-Type']) ? headers['Content-Type'] : (is_multipart ? 'multipart/form-data' : 'application/x-www-form-urlencoded') if content_type == 'application/json' if payload.is_a?(String) begin payload = JSON.parse(payload) rescue => e #payload = "(unparsable) #{payload}" end end out << "#{cyan}#{bold}#{dark}JSON#{reset}\n" if [:scrub] out << Morpheus::Logging.(JSON.pretty_generate(payload)) else out << JSON.pretty_generate(payload) end else out << "Content-Type: #{content_type}" + "\n" out << reset if payload.is_a?(File) #pretty_size = "#{payload.size} B" pretty_size = format_bytes(payload.size) out << "File: #{payload.path} (#{pretty_size})" elsif payload.is_a?(String) if [:scrub] out << Morpheus::Logging.(payload) else out << payload end else if content_type == 'application/x-www-form-urlencoded' || content_type.to_s.include?('multipart') body_str = payload.to_s begin payload.delete(:multipart) if payload.is_a?(Hash) # puts "grailsifying it!" payload = Morpheus::RestClient.grails_params(payload) payload.each do |k,v| if v.is_a?(File) payload[k] = "@#{v.path}" payload[k] = v.path end end body_str = URI.encode_www_form(payload) rescue => ex raise ex end if [:scrub] out << Morpheus::Logging.(body_str) else out << body_str end else if [:scrub] out << Morpheus::Logging.(payload) else out << payload.to_s end end end end out << "\n" end # out << "\n" out << reset return out end |
#format_available_options(option_types) ⇒ Object
609 610 611 612 |
# File 'lib/morpheus/cli/mixins/print_helper.rb', line 609 def (option_types) option_lines = option_types.collect {|it| "\t-O #{it['fieldContext'] ? it['fieldContext'] + '.' : ''}#{it['fieldName']}=\"value\"" }.join("\n") return "Available Options:\n#{option_lines}\n\n" end |
#format_boolean(v) ⇒ Object
1206 1207 1208 1209 1210 1211 1212 |
# File 'lib/morpheus/cli/mixins/print_helper.rb', line 1206 def format_boolean(v) if v == true || v == "true" || v == "on" "Yes" else "No" end end |
#format_curl_command(http_method, url, headers, payload = nil, options = {}) ⇒ Object
format_curl_command generates a valid curl command for the given api request formats command like:
curl -XPOST “api.gomorpheus.com/api/cypher” \
-H "Authorization: BEARER ******************" \
-H "Content-Type: application/json" \
-d '{
"value": "mysecret"
}'
349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 |
# File 'lib/morpheus/cli/mixins/print_helper.rb', line 349 def format_curl_command(http_method, url, headers, payload=nil, ={}) ||= {} # build curl [options] out = "" out << "curl -X#{http_method.to_s.upcase} \"#{url}\"" if headers headers.each do |k,v| # avoid weird [:headers][:params] unless k == :params header_value = v out << ' \\' + "\n" header_line = " -H \"#{k.is_a?(Symbol) ? k.to_s.capitalize : k.to_s}: #{v}\"" out << header_line end end end if payload #&& !payload.empty? out << + ' \\' + "\n" if headers && headers['Content-Type'] == 'application/json' if payload.is_a?(String) begin payload = JSON.parse(payload) rescue => e #payload = "(unparsable) #{payload}" end end if payload.is_a?(Hash) out << " -d '#{as_json(payload, )}'" else out << " -d '#{payload}'" end out << "\n" else is_multipart = (payload.is_a?(Hash) && payload[:multipart] == true) content_type = headers['Content-Type'] || 'application/x-www-form-urlencoded' if payload.is_a?(File) # pretty_size = Filesize.from("#{payload.size} B").pretty.strip pretty_size = "#{payload.size} B" # print "File: #{payload.path} (#{payload.size} bytes)" out << " --data-binary @#{payload.path}" elsif payload.is_a?(String) out << " -d '#{payload}'" elsif payload.respond_to?(:map) payload.delete(:multipart) if payload.is_a?(Hash) # puts "grailsifying it!" payload = Morpheus::RestClient.grails_params(payload) payload.each do |k,v| if v.is_a?(File) out << " -F '#{k}=@#{v.path}" else out << " -d '#{URI.encode_www_form({(k) => v})}'" end out << "\n" end #body_str = URI.encode_www_form(payload) # out << " -d '#{body_str}'" end end else out << "\n" end if [:scrub] out = Morpheus::Logging.(out) end return out end |
#format_detail_value(value) ⇒ Object
1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 |
# File 'lib/morpheus/cli/mixins/print_helper.rb', line 1036 def format_detail_value(value) rtn = value if value.is_a?(Array) # show the first three objects rtn = value.first(3).collect { |row| format_abbreviated_value(row) }.join(", ") elsif value.is_a?(Hash) # show the first three properties keys = values.keys.select { |key| value[key].is_a?(Numeric) || value[key].is_a?(String) }.first(3) rtn = keys.collect { |key| "#{key.to_s.titleize}: #{format_abbreviated_value(value[key])}" }.join(", ") elsif value.is_a?(TrueClass) || value.is_a?(FalseClass) rtn = format_boolean(value) else rtn = value.to_s end return rtn end |
#format_dt_dd(label, value, label_width = 10, justify = "right", do_wrap = true) ⇒ Object
614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 |
# File 'lib/morpheus/cli/mixins/print_helper.rb', line 614 def format_dt_dd(label, value, label_width=10, justify="right", do_wrap=true) # JD: uncomment next line to do away with justified labels # label_width, justify = 0, "none" out = "" value = value.to_s if do_wrap && value && value.include?(" ") && Morpheus::Cli::PrintHelper.terminal_width value_width = Morpheus::Cli::PrintHelper.terminal_width - label_width if value_width > 0 && value.gsub(/\e\[(\d+)m/, '').to_s.size > value_width wrap_indent = label_width + 1 value = wrap(value, value_width, wrap_indent) end end if justify == "right" out << "#{label}:".rjust(label_width, ' ') + " #{value}" elsif justify == "left" out << "#{label}:".ljust(label_width, ' ') + " #{value}" else # default is none out << "#{label}:" + " #{value}" end out end |
#format_option_types_table(option_types, options = {}, domain_name = nil) ⇒ Object
1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 |
# File 'lib/morpheus/cli/mixins/print_helper.rb', line 1591 def format_option_types_table(option_types, ={}, domain_name=nil) show_option_source = option_types.find {|it| !it['optionList'].to_s.empty? || !it['optionSource'].to_s.empty? } show_default = option_types.find {|it| !it['defaultValue'].nil? } columns = [ {"FIELD LABEL" => lambda {|it| it['fieldLabel'] } }, {"FIELD NAME" => lambda {|it| if it['fieldContext'] && it['fieldContext'] != domain_name && it['fieldContext'] != 'domain' "#{it['fieldContext']}.#{it['fieldName']}" else "#{it['fieldName']}" end } }, {"TYPE" => lambda {|it| it['type'] } }, {"REQUIRED" => lambda {|it| format_boolean it['required'] } }, show_option_source ? {"OPTION SOURCE" => lambda {|it| if it['optionList'] it['optionList']['name'] elsif it['optionSourceType'] "#{it['optionSourceType']}/#{it['optionSource']}" else "#{it['optionSource']}" end } } : nil, show_default ? {"DEFAULT" => lambda {|it| it['defaultValue'] } } : nil, ].compact as_pretty_table(option_types, columns, ) end |
#format_percent(val, sig_dig = 2, hide_zero = false) ⇒ Object
1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 |
# File 'lib/morpheus/cli/mixins/print_helper.rb', line 1514 def format_percent(val, sig_dig=2, hide_zero=false) if val.nil? return "" end percent_value = val.to_f if percent_value == 0 if hide_zero "" else return "0%" end else return percent_value.round(sig_dig).to_s + "%" end end |
#format_rate(amount, unit = 's', sig_dig = 2) ⇒ Object
returns 0.50 / s ie {value} / {unit}
1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 |
# File 'lib/morpheus/cli/mixins/print_helper.rb', line 1531 def format_rate(amount, unit='s', sig_dig=2) if amount.to_f == 0 return "0.00" + " / " + unit.to_s else rtn = amount.to_f.round(2).to_s parts = rtn.split('.') # number_str = format_number(parts[0]) number_str = parts[0].to_s decimal_str = "#{parts[1]}".ljust(sig_dig, "0") number_str + "." + decimal_str return number_str + "." + decimal_str + " / " + unit.to_s end end |
#format_results_pagination(json_response, options = {}) ⇒ Object
422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 |
# File 'lib/morpheus/cli/mixins/print_helper.rb', line 422 def format_results_pagination(json_response, ={}) # no output for strange, empty data if json_response.nil? || json_response.empty? return "" end color = .key?(:color) ? [:color] : cyan label = [:label] n_label = [:n_label] || (label ? label.to_s.pluralize : nil) = [:message] || "Viewing %{start_index}-%{end_index} of %{total} %{label}" = [:blank_message] || nil # "No %{label} found" # support lazy passing of common list json_response {"meta": {"size": 25, "total": 56} } # priority is: # 1. "meta" that api response contains for list endpoints # 2. "total" and "size" values if passed explicitely by the cli (pretty sure symbols are no longer used) # 3. examine the first array found in the response = nil records = nil # assume records is the first array in the response records_key = json_response.keys.find { |k| json_response[k].is_a?(Array) } if records_key records = json_response[records_key] = {'offset' => 0, 'size' => records.size, 'total' => records.size} end if json_response[:meta] || json_response["meta"] = json_response[:meta] || json_response["meta"] elsif json_response.key?('size') || json_response.key?('total') = json_response elsif json_response.key?(:size) || json_response.key?(:total) = {'size' => json_response[:size], 'total' => json_response[:total], 'offset' => json_response[:offset]} elsif records # just use the first key in the response = {'size' => records.size, 'total' => records.size} end # did not find pagination meta info? if .nil? return "" end # api should not need to return the size, just use records.size if ["size"].nil? && records ["size"] = records.size end offset = ['offset'].to_i size = ['size'].to_i total = ['total'].to_i # perhaps no total count returned, let total be equal to size of list if total == 0 && size > 0 total = size end # plural label? if total != 1 label = n_label end out_str = "" string_key_values = {start_index: format_number(offset + 1), end_index: format_number(offset + size), total: format_number(total), size: format_number(size), offset: format_number(offset), label: label} if size > 0 if out_str << % string_key_values end else if out_str << % string_key_values else #out << "No records" end end out = "" out << "\n" out << color if color out << out_str.strip out << reset if color out << "\n" out end |
#format_simple_option_types_table(option_types, options = {}) ⇒ Object
1619 1620 1621 1622 1623 1624 1625 1626 1627 |
# File 'lib/morpheus/cli/mixins/print_helper.rb', line 1619 def format_simple_option_types_table(option_types, ={}) as_pretty_table(option_types, { "LABEL" => lambda {|it| it['fieldLabel'] }, "NAME" => lambda {|it| it['fieldName'] }, "TYPE" => lambda {|it| it['type'] }, "REQUIRED" => lambda {|it| format_boolean it['required'] }, "DEFAULT" => lambda {|it| it['defaultValue'] }, }, ) end |
#format_table_cell(value, width, justify = "left", pad_char = " ", suffix = "...") ⇒ Object
731 732 733 734 735 736 737 |
# File 'lib/morpheus/cli/mixins/print_helper.rb', line 731 def format_table_cell(value, width, justify="left", pad_char=" ", suffix="...") #puts "format_table_cell(#{value}, #{width}, #{justify}, #{pad_char.inspect})" cell = value.to_s cell = truncate_string(cell, width, suffix) cell = justify_string(cell, width, justify, pad_char) cell end |
#generate_usage_bar(used_value, max_value, opts = {}) ⇒ Object
shows cyan, yellow, red progress bar where 50% looks like [||||| ] todo: render units used / available here too maybe
505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 |
# File 'lib/morpheus/cli/mixins/print_helper.rb', line 505 def (used_value, max_value, opts={}) opts[:bar_color] ||= :rainbow # :rainbow, :solid, or a color eg. cyan = opts[:max_bars] || 50 out = "" = [] percent = 0 percent_sigdig = opts[:percent_sigdig] || 2 if max_value.to_i == 0 percent = 0 else percent = ((used_value.to_f / max_value.to_f) * 100) end unlimited_label = opts[:unlimited_label] || "n/a" percent_label = ((used_value.nil? || max_value.to_f == 0.0) ? unlimited_label : "#{percent.round(percent_sigdig)}%").rjust(6, ' ') = "" if percent > 100 .times { << "|" } # percent = 100 else = ((percent / 100.0) * ).ceil .times { << "|" } end if opts[:bar_color] == :rainbow = "" cur_rainbow_color = reset # default terminal color << cur_rainbow_color .each_with_index {|, i| reached_percent = (i / .to_f) * 100 = cur_rainbow_color if reached_percent > 80 = red elsif reached_percent > 50 = yellow elsif reached_percent > 10 = cyan else = reset end if cur_rainbow_color != cur_rainbow_color = << cur_rainbow_color end << } padding = - .size if padding > 0 padding.times { << " " } #rainbow_bar << " " * padding end << reset = cyan + "[" + + cyan + "]" + " #{cur_rainbow_color}#{percent_label}#{reset}" out << elsif opts[:bar_color] == :solid = cyan if percent > 80 = red elsif percent > 50 = yellow elsif percent > 10 = cyan else = reset end = cyan + "[" + + .join.ljust(, ' ') + cyan + "]" + " #{percent_label}" + reset out << else = opts[:bar_color] || reset = cyan + "[" + + .join.ljust(, ' ') + cyan + "]" + " #{percent_label}" + reset out << end return out end |
#justify_string(value, width, justify = "left", pad_char = " ") ⇒ String
justified returns a left, center, or right aligned string.
715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 |
# File 'lib/morpheus/cli/mixins/print_helper.rb', line 715 def justify_string(value, width, justify="left", pad_char=" ") # JD: hack alert! this sux, but it's a best effort to preserve values containing ascii coloring codes value = value.to_s uncolored_value = Term::ANSIColor.coloring? ? Term::ANSIColor.uncolored(value.to_s) : value.to_s if value.size != uncolored_value.size width = width + (value.size - uncolored_value.size) end if justify == "right" return "#{value}".rjust(width, pad_char) elsif justify == "center" return "#{value}".center(width, pad_char) else return "#{value}".ljust(width, pad_char) end end |
#parse_json_or_yaml(config, parsers = [:json, :yaml]) ⇒ Object
convert JSON or YAML string to a map
1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 |
# File 'lib/morpheus/cli/mixins/print_helper.rb', line 1546 def parse_json_or_yaml(config, parsers = [:json, :yaml]) rtn = {success: false, data: nil, error: nil} error = nil config = config.strip if config[0..2] == "---" parsers = [:yaml] end # ok only parse json for strings that start with {, consolidated yaml can look like json and cause issues} if config[0] && config[0].chr == "{" && config[-1] && config[-1].chr == "}" parsers = [:json] end parsers.each do |parser| if parser == :yaml begin # todo: one method to parse and return Hash # load does not raise an exception, it just returns the bad string #YAML.parse(config) config_map = YAML.load(config) if !config_map.is_a?(Hash) raise "Failed to parse config as YAML" end rtn[:data] = config_map rtn[:success] = true break rescue => ex rtn[:error] = ex if rtn[:error].nil? end elsif parser == :json begin config_map = JSON.parse(config) rtn[:data] = config_map rtn[:success] = true break rescue => ex rtn[:error] = ex if rtn[:error].nil? end end end return rtn end |
#parse_rest_exception(e, options = {}) ⇒ Object
151 152 153 154 155 156 157 158 159 |
# File 'lib/morpheus/cli/mixins/print_helper.rb', line 151 def parse_rest_exception(e, ={}) data = {} begin data = JSON.parse(e.response.to_s) rescue # Morpheus::Logging::DarkPrinter.puts "Failed to parse error response as JSON: #{ex}" if Morpheus::Logging.debug? end return data end |
#parse_yaml_or_json(config, parsers = [:yaml, :json]) ⇒ Object
1587 1588 1589 |
# File 'lib/morpheus/cli/mixins/print_helper.rb', line 1587 def parse_yaml_or_json(config, parsers = [:yaml, :json]) parse_json_or_yaml(config, parsers) end |
#print_description_list(columns, obj, opts = {}) ⇒ Object
print_description_list() is an alias for ‘print generate_description_list()`
999 1000 1001 1002 |
# File 'lib/morpheus/cli/mixins/print_helper.rb', line 999 def print_description_list(columns, obj, opts={}) # raise "oh no.. replace with as_description_list()" print as_description_list(obj, columns, opts) end |
#print_details(obj, opts = {}) ⇒ Object
1012 1013 1014 |
# File 'lib/morpheus/cli/mixins/print_helper.rb', line 1012 def print_details(obj, opts={}) print as_details(obj, opts) end |
#print_dry_run(api_request, options = {}) ⇒ Object
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 220 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/morpheus/cli/mixins/print_helper.rb', line 161 def print_dry_run(api_request, ={}) # 2nd argument used to be command_string (String) command_string = nil if .is_a?(String) command_string = = {} end ||= {} # api client injects common command options here if api_request[:command_options] = .merge(api_request[:command_options]) end ||= {} # parse params request arguments http_method = api_request[:method] url = api_request[:url] headers = api_request[:headers] params = nil if api_request[:params] && !api_request[:params].empty? params = api_request[:params] elsif headers && headers[:params] # params inside headers for restclient reasons.. params = headers[:params] elsif api_request[:query] && !api_request[:query].empty? params = api_request[:query] end query_string = params if query_string.respond_to?(:map) query_string = URI.encode_www_form(query_string) end if query_string && !query_string.empty? url = "#{url}?#{query_string}" end request_string = "#{http_method.to_s.upcase} #{url}".strip payload = api_request[:payload] || api_request[:body] #Morpheus::Logging::DarkPrinter.puts "API payload is: (#{payload.class}) #{payload.inspect}" content_type = (headers && headers['Content-Type']) ? headers['Content-Type'] : 'application/x-www-form-urlencoded' # build output, either CURL or REQUEST output = "" if api_request[:curl] || [:curl] output = format_curl_command(http_method, url, headers, payload, ) elsif [:json] # --dry --json should print the payload only payload_object = payload.is_a?(String) ? JSON.parse(payload) : payload output = as_json(payload_object, ) elsif [:yaml] # --dry --yaml should print the payload only as yaml payload_object = payload.is_a?(String) ? JSON.parse(payload) : payload output = as_yaml(payload_object, ) else # default format is # DRY RUN # REQUEST # GET https://server/api/things # # JSON # { # "thing": { ... } # } output = format_api_request(http_method, url, headers, payload, ) end # this is an extra scrub, should remove if [:scrub] output = Morpheus::Logging.(output) end # write to a file? if [:outfile] print_result = print_to_file(output, [:outfile], [:overwrite]) # with_stdout_to_file(options[:outfile], options[:overwrite]) { print output } print "#{cyan}Wrote output to file #{[:outfile]} (#{format_bytes(File.size([:outfile]))})\n" unless [:quiet] #return print_result return end # print output if api_request[:curl] || [:curl] print "\n" print "#{cyan}#{bold}#{dark}CURL COMMAND#{reset}\n" print output print reset, "\n" print reset elsif [:json] || [:yaml] # print just the just payload print output, "\n" else print "\n" print "#{cyan}#{bold}#{dark}REQUEST#{reset}\n" print output print reset, "\n" print reset end return output end |
#print_green_success(msg = nil) ⇒ Object
puts green message to stdout
48 49 50 51 52 53 |
# File 'lib/morpheus/cli/mixins/print_helper.rb', line 48 def print_green_success(msg=nil) if msg.nil? msg = "success" end print "#{green}#{msg}#{reset}\n" end |
#print_h1(title, subtitles = nil, options = nil, suffix_content = "\n") ⇒ Object
print_h1 prints a header title and optional subtitles Output:
title - subtitle1, subtitle2
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/morpheus/cli/mixins/print_helper.rb', line 61 def print_h1(title, subtitles=nil, =nil, suffix_content="\n") # ok, support all these formats for now: # print_h1(title, options={}) # print_h1(title, subtitles, options={}) # this can go away when we have a dirty @current_options # auto include remote name in h1 titles # eg. Morpheus Instances [dev] # if title && @appliance_name # title = "#{title} [#{@appliance_name}]" # end if subtitles.is_a?(Hash) = subtitles subtitles = ([:subtitles] || []).flatten end if subtitles.is_a?(String) subtitles = [subtitles] end subtitles = (subtitles || []).flatten ||= {} color = [:color] || cyan out = "" out << "\n" out << "#{color}#{bold}#{title}#{reset}" if !subtitles.empty? out << "#{color} | #{subtitles.join(', ')}#{reset}" end out << "\n" if [:border_style] == :thin else out << "#{color}#{bold}==================#{reset}\n" end # Default suffix_content is typically one extra newline if !suffix_content.to_s.empty? out << suffix_content.to_s end print out end |
#print_h2(title, subtitles = nil, options = nil, suffix_content = "\n") ⇒ Object
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 |
# File 'lib/morpheus/cli/mixins/print_helper.rb', line 103 def print_h2(title, subtitles=nil, =nil, suffix_content="\n") # ok, support all these formats for now: # print_h2(title={}) # print_h2(title, options={}) # print_h2(title, subtitles, options={}) # this can go away when we have a dirty @current_options if subtitles.is_a?(Hash) = subtitles subtitles = ([:subtitles] || []).flatten end subtitles = (subtitles || []).flatten ||= {} color = [:color] || cyan out = "" out << "\n" out << "#{color}#{bold}#{title}#{reset}" if !subtitles.empty? out << "#{color} - #{subtitles.join(', ')}#{reset}" end out << "\n" if [:border_style] == :thin else out << "#{color}---------------------#{reset}\n" end # Default suffix_content is typically one extra newline if !suffix_content.to_s.empty? out << suffix_content.to_s end print out end |
#print_pretty_details(obj, opts = {}) ⇒ Object
1004 1005 1006 |
# File 'lib/morpheus/cli/mixins/print_helper.rb', line 1004 def print_pretty_details(obj, opts={}) print as_pretty_details(obj, opts) end |
#print_red_alert(msg) ⇒ Object
puts red message to stderr why this not stderr yet? use print_error or if respond_to?(:my_terminal)
41 42 43 44 45 |
# File 'lib/morpheus/cli/mixins/print_helper.rb', line 41 def print_red_alert(msg) $stderr.print "#{red}#{msg}#{reset}\n" #print_error "#{red}#{msg}#{reset}\n" #puts_error "#{red}#{msg}#{reset}" end |
#print_rest_errors(errors, options = {}) ⇒ Object
143 144 145 146 147 148 149 |
# File 'lib/morpheus/cli/mixins/print_helper.rb', line 143 def print_rest_errors(errors, ={}) if respond_to?(:my_terminal) Morpheus::Cli::ErrorHandler.new(my_terminal.stderr).print_rest_errors(errors, ) else Morpheus::Cli::ErrorHandler.new.print_rest_errors(errors, ) end end |
#print_rest_exception(e, options = {}) ⇒ Object
135 136 137 138 139 140 141 |
# File 'lib/morpheus/cli/mixins/print_helper.rb', line 135 def print_rest_exception(e, ={}) if respond_to?(:my_terminal) Morpheus::Cli::ErrorHandler.new(my_terminal.stderr).print_rest_exception(e, ) else Morpheus::Cli::ErrorHandler.new.print_rest_exception(e, ) end end |
#print_results_pagination(json_response, options = {}) ⇒ Object
417 418 419 420 |
# File 'lib/morpheus/cli/mixins/print_helper.rb', line 417 def print_results_pagination(json_response, ={}) # print cyan,"\nViewing #{json_response['meta']['offset'].to_i + 1}-#{json_response['meta']['offset'].to_i + json_response['meta']['size'].to_i} of #{json_response['meta']['total']}\n", reset print format_results_pagination(json_response, ) end |
#print_stats_usage(stats, opts = {}) ⇒ Object
579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 |
# File 'lib/morpheus/cli/mixins/print_helper.rb', line 579 def print_stats_usage(stats, opts={}) label_width = opts[:label_width] || 10 out = "" if stats.nil? || stats.empty? out << cyan + "No data." + "\n" + reset print out return end opts[:include] ||= [:cpu, :memory, :storage] if opts[:include].include?(:max_cpu) cpu_usage = stats['cpuUsagePeak'] out << cyan + "Max CPU".rjust(label_width, ' ') + ": " + (cpu_usage.to_f, 100) + "\n" end if opts[:include].include?(:avg_cpu) cpu_usage = stats['cpuUsageAvg'] || stats['cpuUsageAverage'] out << cyan + "Avg. CPU".rjust(label_width, ' ') + ": " + (cpu_usage.to_f, 100) + "\n" end if opts[:include].include?(:cpu) cpu_usage = stats['cpuUsage'] || stats['usedCpu'] out << cyan + "CPU".rjust(label_width, ' ') + ": " + (cpu_usage.to_f, 100) + "\n" end if opts[:include].include?(:memory) out << cyan + "Memory".rjust(label_width, ' ') + ": " + (stats['usedMemory'], stats['maxMemory']) + cyan + Filesize.from("#{stats['usedMemory']} B").pretty.strip.rjust(15, ' ') + " / " + Filesize.from("#{stats['maxMemory']} B").pretty.strip.ljust(15, ' ') + "\n" end if opts[:include].include?(:storage) out << cyan + "Storage".rjust(label_width, ' ') + ": " + (stats['usedStorage'], stats['maxStorage']) + cyan + Filesize.from("#{stats['usedStorage']} B").pretty.strip.rjust(15, ' ') + " / " + Filesize.from("#{stats['maxStorage']} B").pretty.strip.ljust(15, ' ') + "\n" end print out end |
#print_system_command_dry_run(cmd, options = {}) ⇒ Object
254 255 256 257 258 259 260 |
# File 'lib/morpheus/cli/mixins/print_helper.rb', line 254 def print_system_command_dry_run(cmd, ={}) print "\n" print "#{cyan}#{bold}#{dark}SYSTEM COMMAND#{reset}\n" print cmd print reset, "\n" return end |
#print_to_file(txt, filename, overwrite = false, access_mode = 'w+') ⇒ Object
1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 |
# File 'lib/morpheus/cli/mixins/print_helper.rb', line 1436 def print_to_file(txt, filename, overwrite=false, access_mode = 'w+') Morpheus::Logging::DarkPrinter.puts "Writing #{txt.to_s.bytesize} bytes to file #{filename}" if Morpheus::Logging.debug? outfile = nil begin full_filename = File.(filename) if File.exist?(full_filename) if !overwrite print "#{red}Output file '#{filename}' already exists.#{reset}\n" print "#{red}Use --overwrite to overwrite the existing file.#{reset}\n" return 1 end end if Dir.exist?(full_filename) print "#{red}Output file '#{filename}' is invalid. It is the name of an existing directory.#{reset}\n" return 1 end target_dir = File.dirname(full_filename) if !Dir.exist?(target_dir) FileUtils.mkdir_p(target_dir) end outfile = File.open(full_filename, access_mode) outfile.print(txt) return 0 rescue => ex # puts_error "Error writing to outfile '#{filename}'. Error: #{ex}" print "#{red}Error writing to file '#{filename}'. Error: #{ex}#{reset}\n" return 1 ensure outfile.close if outfile end end |
#quote_csv_value(v) ⇒ Object
1214 1215 1216 |
# File 'lib/morpheus/cli/mixins/print_helper.rb', line 1214 def quote_csv_value(v) '"' + v.to_s.gsub('"', '""') + '"' end |
#records_as_csv(records, options = {}, default_columns = nil) ⇒ Object
deprecated, replaced by as_csv(records, columns, options, object_key)
1331 1332 1333 |
# File 'lib/morpheus/cli/mixins/print_helper.rb', line 1331 def records_as_csv(records, ={}, default_columns=nil) as_csv(records, default_columns, ) end |
#required_blue_prompt ⇒ Object
498 499 500 |
# File 'lib/morpheus/cli/mixins/print_helper.rb', line 498 def required_blue_prompt "#{cyan}|#{reset}" end |
#sleep_with_dots(sleep_seconds, dots = 3, dot_chr = ".") ⇒ Object
1428 1429 1430 1431 1432 1433 1434 |
# File 'lib/morpheus/cli/mixins/print_helper.rb', line 1428 def sleep_with_dots(sleep_seconds, dots=3, dot_chr=".") dot_interval = (sleep_seconds.to_f / dots.to_i) dots.to_i.times do |dot_index| sleep dot_interval print dot_chr end end |
#transform_data_for_field_options(data, options, object_key = nil) ⇒ Object
transform data for options –fields id,authority and –select id,authority support traversing records with –raw-fields and the list command. Example: roles list –raw-fields roles.id,roles.authority
1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 |
# File 'lib/morpheus/cli/mixins/print_helper.rb', line 1389 def (data, , object_key=nil) if [:include_fields] && data.is_a?(Hash) if [:raw_fields] row = (object_key && ![:raw_fields]) ? data[object_key] : data records = [row].flatten() # look for an array in the first field only now... field_parts = [:include_fields][0].to_s.split(".") field_context = field_parts[0] context_data = data[field_context] if field_parts.size > 1 && context_data.is_a?(Array) # inject all the root level properties to be selectable too.. context_data = data.delete(field_context) # records = context_data records = context_data.collect {|it| it.is_a?(Hash) ? data.merge(it) : data } # hacky modifying options in place [:include_fields_context] = field_context [:include_fields] = [:include_fields].collect {|it| it.sub(field_context+'.', '')} # data = filter_data(records, options[:include_fields]) # data[field_context] = filter_data(records, options[:include_fields]) data = {(field_context) => filter_data(records, [:include_fields])} else data = filter_data(data, [:include_fields]) end else # By default, fields are relative to the object_key, so you can use -F id instead of requiring -F instance.id # So ironically it is the 'raw' options (:raw_fields == true) that has to do all this funny stuff to filter intuitively. if object_key # this removes everything but the object, makes sense when using --fields data = {(object_key) => filter_data(data[object_key], [:include_fields])} # this preserves other fields eg. meta... # data[object_key] = filter_data(data[object_key], options[:include_fields]) else data = filter_data(data, [:include_fields]) end end end return data end |
#truncate_string(value, width, suffix = "...") ⇒ Object
truncate_string truncates a string and appends the suffix “…”
641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 |
# File 'lib/morpheus/cli/mixins/print_helper.rb', line 641 def truncate_string(value, width, suffix="...") value = value.to_s if !width return value end # JD: hack alerty.. this sux, but it's a best effort to preserve values containing ascii coloring codes # it stops working when there are words separated by ascii codes, eg. two diff colors # plus this is probably pretty slow... uncolored_value = Term::ANSIColor.coloring? ? Term::ANSIColor.uncolored(value.to_s) : value.to_s if uncolored_value != value trimmed_value = nil if uncolored_value.size > width if suffix trimmed_value = uncolored_value[0..width-(suffix.size+1)] + suffix else trimmed_value = uncolored_value[0..width-1] end return value.gsub(uncolored_value, trimmed_value) else return value end else if value.size > width if suffix return value[0..width-(suffix.size+1)] + suffix else return value[0..width-1] end else return value end end end |
#truncate_string_right(value, width, prefix = "...") ⇒ Object
truncate_string truncates a string and appends the prefix “…”
679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 |
# File 'lib/morpheus/cli/mixins/print_helper.rb', line 679 def truncate_string_right(value, width, prefix="...") value = value.to_s # JD: hack alerty.. this sux, but it's a best effort to preserve values containing ascii coloring codes # it stops working when there are words separated by ascii codes, eg. two diff colors # plus this is probably pretty slow... uncolored_value = Term::ANSIColor.coloring? ? Term::ANSIColor.uncolored(value.to_s) : value.to_s if uncolored_value != value trimmed_value = nil if uncolored_value.size > width if prefix trimmed_value = prefix + uncolored_value[(uncolored_value.size - width - prefix.size)..-1] else trimmed_value = uncolored_value[(uncolored_value.size - width)..-1] end return value.gsub(uncolored_value, trimmed_value) else return value end else if value.size > width if prefix return prefix + value[(value.size - width - prefix.size)..-1] else return value[(value.size - width)..-1] end else return value end end end |
#with_stdout_to_file(filename, overwrite = false, access_mode = 'w+', &block) ⇒ Object
1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 |
# File 'lib/morpheus/cli/mixins/print_helper.rb', line 1468 def with_stdout_to_file(filename, overwrite=false, access_mode = 'w+', &block) Morpheus::Logging::DarkPrinter.puts "Writing output to file #{filename}" if Morpheus::Logging.debug? previous_stdout = my_terminal.stdout outfile = nil begin full_filename = File.(filename) if File.exist?(full_filename) if !overwrite print "#{red}Output file '#{filename}' already exists.#{reset}\n" print "#{red}Use --overwrite to overwrite the existing file.#{reset}\n" return 1 end end if Dir.exist?(full_filename) print "#{red}Output file '#{filename}' is invalid. It is the name of an existing directory.#{reset}\n" return 1 end target_dir = File.dirname(full_filename) if !Dir.exist?(target_dir) FileUtils.mkdir_p(target_dir) end outfile = File.open(full_filename, access_mode) # outfile.print(txt) # ok just redirect stdout to the file my_terminal.set_stdout(outfile) result = yield outfile.close if outfile my_terminal.set_stdout(previous_stdout) my_terminal.stdout.flush if my_terminal.stdout # this does not work here.. i dunno why yet, it works in ensure though... # print "#{cyan}Wrote #{File.size(full_filename)} bytes to file #{filename}\n" if result return result else return 0 end rescue => ex # puts_error "Error writing to outfile '#{filename}'. Error: #{ex}" print_error "#{red}Error writing to file '#{filename}'. Error: #{ex}#{reset}\n" return 1 ensure outfile.close if outfile my_terminal.set_stdout(previous_stdout) if previous_stdout != my_terminal.stdout end end |
#wrap(s, width, indent = 0) ⇒ Object
1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 |
# File 'lib/morpheus/cli/mixins/print_helper.rb', line 1193 def wrap(s, width, indent=0) out = s if s.size > width if indent > 0 out = s.gsub(/(.{1,#{width}})(\s+|\Z)/, "#{' ' * indent}\\1\n").strip else out = s.gsub(/(.{1,#{width}})(\s+|\Z)/, "\\1\n") end else return s end end |