1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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
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
102
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
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
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
use async_openai::config::OpenAIConfig;
use async_openai::types::{
    ChatCompletionRequestSystemMessageArgs, ChatCompletionRequestUserMessageArgs,
};
use async_openai::Client;
use utils::app_config::AppConfig;
use utils::error::{Error, Result};

use comfy_table::Table;
use spinners::{Spinner, Spinners};

use crate::db;
use crate::decode::{GPTResponse, GPTResult};
use crate::git::{self, execute_gptresponse};

/// Show the configuration file
pub fn config() -> Result<()> {
    let config = AppConfig::fetch()?;

    let mut table = Table::new();

    table.set_header(vec!["Key", "Value"]);

    config.into_iter().for_each(|(key, value)| {
        table.add_row(vec![key, value]);
        return ();
    });

    println!("{}", table);

    Ok(())
}

pub fn history() -> Result<()> {
    // display commands history
    db::display_commands()?;

    Ok(())
}

pub fn undo() -> Result<()> {
    // start spinner animation
    let mut spinner = Spinner::new(Spinners::Dots2, "Communicating with Open AI".into());

    // get last command
    let last_command = db::get_last_command()?;
    // get git status
    let git_status = git::get_status()?;
    // get git log
    let git_log = git::get_log()?;

    // get openai key from config
    let openai_key = AppConfig::fetch()?.openai_key;
    let config = OpenAIConfig::new().with_api_key(openai_key);

    // create client
    let client = Client::with_config(config);

    // create prompt with git status and git log
    let prompt = crate::PROMPT_UNDO
        .replace("{git_status}", &git_status)
        .replace("{git_log}", &git_log);

    // create request
    let request = async_openai::types::CreateChatCompletionRequestArgs::default()
        .model("gpt-4")
        .messages([
            ChatCompletionRequestSystemMessageArgs::default()
                .content(prompt)
                .build()?
                .into(),
            ChatCompletionRequestUserMessageArgs::default()
                .content(format!("git {}", last_command))
                .build()?
                .into(),
        ])
        .max_tokens(64_u16)
        .build()?;

    // make request
    let response = async_std::task::block_on(
        client
            .chat() // Get the API "group" (completions, images, etc.) from the client
            .create(request), // Make the API call in that "group"
    )?;

    // stop spinner animation
    spinner.stop();

    // print newline
    println!("");

    // get first choice
    let returned_command = response
        .choices
        .first()
        .ok_or_else(|| Error::new("No choices returned"))?
        .message
        .content
        .as_ref()
        .ok_or_else(|| Error::new("No content returned"))?;

    // decode returned response
    let decoded_command = crate::decode::decode_gpt_response(returned_command.to_string())?;

    // print GPTResult
    println!("{}", &decoded_command);
    println!("");

    // match GPTResult and extract GPTResponse
    let gpt_response: GPTResponse = match decoded_command {
        GPTResult::Success(gpt_response) => gpt_response,
        GPTResult::Failure(msg) => {
            println!("Giton failed. You can try again. \n {}", &msg);

            return Ok(());
        }
    };

    // ask user if they want to proceed with the command(s)
    println!(":: Prooced with Command(s)?: [Y/n] ");

    // get user input
    let mut input = String::new();
    std::io::stdin().read_line(&mut input)?;

    // if user input is Y, execute GPTResponse
    if input.trim() == "Y" {
        execute_gptresponse(gpt_response)?;
    }

    Ok(())
}

pub fn helpme() -> Result<()> {
    // start spinner animation
    let mut spinner = Spinner::new(Spinners::Dots2, "Communicating with Open AI".into());

    // get git status
    let git_status = git::get_status()?;
    // get git log
    let git_log = git::get_log()?;

    // get openai key from config
    let openai_key = AppConfig::fetch()?.openai_key;
    let config = OpenAIConfig::new().with_api_key(openai_key);

    // create client
    let client = Client::with_config(config);

    // create prompt with git status and git log
    let prompt = crate::PROMPT_HELPME
        .replace("{git_status}", &git_status)
        .replace("{git_log}", &git_log);

    // create request
    let request = async_openai::types::CreateChatCompletionRequestArgs::default()
        .model("gpt-4")
        .messages([ChatCompletionRequestSystemMessageArgs::default()
            .content(prompt)
            .build()?
            .into()])
        .max_tokens(50_u16)
        .build()?;

    // make request
    let response = async_std::task::block_on(
        client
            .chat() // Get the API "group" (completions, images, etc.) from the client
            .create(request), // Make the API call in that "group"
    )?;

    // stop spinner animation
    spinner.stop();

    // print newline
    println!("");

    // get first choice
    let returned_command = response
        .choices
        .first()
        .ok_or_else(|| Error::new("No choices returned"))?
        .message
        .content
        .as_ref()
        .ok_or_else(|| Error::new("No content returned"))?;

    // decode returned response
    let decoded_command = crate::decode::decode_gpt_response(returned_command.to_string())?;

    // print GPTResult
    println!("{}", &decoded_command);
    println!("");

    // match GPTResult and extract GPTResponse
    let gpt_response: GPTResponse = match decoded_command {
        GPTResult::Success(gpt_response) => gpt_response,
        GPTResult::Failure(msg) => {
            println!("Giton failed. You can try again. \n {}", &msg);

            return Ok(());
        }
    };

    // ask user if they want to proceed with the command(s)
    println!(":: Prooced with Command(s)?: [Y/n] ");

    // get user input
    let mut input = String::new();
    std::io::stdin().read_line(&mut input)?;

    // if user input is Y, execute GPTResponse
    if input.trim() == "Y" {
        execute_gptresponse(gpt_response)?;
    }

    Ok(())
}