Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ADD Format atlantis-comment support #40

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
129 changes: 129 additions & 0 deletions src/oiq/oiq_pricer.ml
Original file line number Diff line number Diff line change
Expand Up @@ -455,3 +455,132 @@ let to_markdown_string t =
render_section "🔴 Removed resources" removes;
render_section "⚪ Existing resources" existing;
])

let to_atlantis_comment_string t =
let fmt v = Printf.sprintf "$%.2f" (CCFloat.abs v) in
let fmt_with_sign v = Printf.sprintf "%s$%.2f" (if v >= 0.0 then "" else "-") (CCFloat.abs v) in

(* Initial box header with emojis *)
let lines =
[
"\n";
(* Add an empty line for spacing *)
"╔══════════════════════════════════════════════════════════╗\n";
"║ 💸 OpenInfraQuote Monthly Cost Estimate ║\n";
"╚══════════════════════════════════════════════════════════╝\n";
]
in

(* Price difference section *)
let delta_min = t.price_diff.Oiq_range.min in
let delta_max = t.price_diff.Oiq_range.max in
let lines =
if delta_min = 0.0 && delta_max = 0.0 then lines @ [ "\n"; "No change in monthly cost\n" ]
else if delta_max < 0.0 then
lines
@ [
"\n";
Printf.sprintf
"Decrease: %s → %s/month\n"
(fmt (CCFloat.abs delta_min))
(fmt (CCFloat.abs delta_max));
]
else
lines @ [ "\n"; Printf.sprintf "Increase: %s → %s/month\n" (fmt delta_min) (fmt delta_max) ]
in

(* Before/After summary *)
let lines =
lines
@ [
"\n";
Printf.sprintf
"Before: %s - %s\n"
(fmt_with_sign t.prev_price.Oiq_range.min)
(fmt_with_sign t.prev_price.Oiq_range.max);
Printf.sprintf
"After: %s - %s\n"
(fmt_with_sign t.price.Oiq_range.min)
(fmt_with_sign t.price.Oiq_range.max);
]
in

(* Group resources by change type *)
let adds, removes, existing =
CCList.fold_left
(fun (a, r, e) resource ->
match resource.Resource.change with
| `Add -> (resource :: a, r, e)
| `Remove -> (a, resource :: r, e)
| `Noop -> (a, r, resource :: e))
([], [], [])
t.resources
in

(* Add resource counts *)
let lines =
lines
@ [
"\n";
Printf.sprintf "%-2s %-10s %d\n" "🟢" "Added:" (CCList.length adds);
Printf.sprintf "%-2s %-10s %d\n" "🔴" "Removed:" (CCList.length removes);
Printf.sprintf "%-2s %-10s %d\n" "⚪" "Existing:" (CCList.length existing);
]
in

(* Helper to render a section of resources *)
let render_section title resources =
if CCList.is_empty resources then ""
else
let header = Printf.sprintf "\n%s:\n%s\n" title (String.make (String.length title) '-') in
let table_header =
Printf.sprintf "%-40s %-20s %12s %12s\n" "Resource" "Type" "Before" "After"
in
let table_divider =
Printf.sprintf
"%-40s %-20s %12s %12s\n"
(String.make 40 '-')
(String.make 20 '-')
(String.make 12 '-')
(String.make 12 '-')
in
let rows =
CCString.concat
""
(CCList.map
(fun r ->
let name =
if
not
(CCString.equal r.Resource.address (r.Resource.type_ ^ "." ^ r.Resource.name))
then
CCString.concat "." @@ CCList.tl @@ CCString.split_on_char '.' r.Resource.address
else r.Resource.name
in
let typ = r.Resource.type_ in
let est_min = r.Resource.price.Oiq_range.min in
let est_max = r.Resource.price.Oiq_range.max in
(* Use spaces around hyphens and preserve signs for removed resources *)
let before_range =
Printf.sprintf
"%s - %s"
(fmt_with_sign t.prev_price.Oiq_range.min)
(fmt_with_sign t.prev_price.Oiq_range.max)
in
let after_range =
Printf.sprintf "%s - %s" (fmt_with_sign est_min) (fmt_with_sign est_max)
in
Printf.sprintf "%-40s %-20s %12s %12s\n" name typ before_range after_range)
resources)
in
header ^ table_header ^ table_divider ^ rows
in

CCString.concat
""
(lines
@ [
render_section "Added resources" adds;
render_section "Removed resources" removes;
render_section "Existing resources" existing;
])
1 change: 1 addition & 0 deletions src/oiq/oiq_pricer.mli
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ type t [@@deriving to_yojson]
val price : ?match_query:Oiq_match_query.t -> usage:Oiq_usage.t -> Oiq_match_file.t -> t
val pretty_to_string : t -> string
val to_markdown_string : t -> string
val to_atlantis_comment_string : t -> string
15 changes: 12 additions & 3 deletions src/oiq_cli/oiq_cli.ml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,18 @@ module Cli = struct

let output_format =
let docv = "FORMAT" in
let doc = "Format of output (text, json, or markdown)." in
let doc = "Format of output (text, json, markdown, atlantis-comment)." in
C.Arg.(
value
& opt (enum [ ("text", `Text); ("json", `Json); ("markdown", `Markdown) ]) `Text
& opt
(enum
[
("text", `Text);
("json", `Json);
("markdown", `Markdown);
("atlantis-comment", `AtlantisComment);
])
`Text
& info [ "f"; "format" ] ~docv ~doc)

let match_query =
Expand Down Expand Up @@ -150,7 +158,8 @@ let price usage input output_format match_query regions =
match output_format with
| `Text -> print_endline @@ Oiq_pricer.pretty_to_string priced
| `Json -> print_endline @@ Yojson.Safe.pretty_to_string @@ Oiq_pricer.to_yojson priced
| `Markdown -> print_endline @@ Oiq_pricer.to_markdown_string priced)
| `Markdown -> print_endline @@ Oiq_pricer.to_markdown_string priced
| `AtlantisComment -> print_endline @@ Oiq_pricer.to_atlantis_comment_string priced)
| Error (#Oiq_match_query.err as err) ->
Logs.err (fun m -> m "%a" Oiq_match_query.pp_err err);
exit 1
Expand Down