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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
use env;
use fs;
use ;
use ;
/// Represents the user's identity as found in the .xit/config file.
/// Gets the path to the global xit config file (e.g., ~/.xit/config)
/// Saves the user's name and email to the global config file.
/// Reads the .xit/config file and extracts the user's name and email.
///
/// This function uses a simple line-by-line parser that looks for the `[user]`
/// section and then extracts the `name` and `email` key-value pairs.
/// Reads config from local and global files to find the user's identity.
/// A generic function to parse a user config from a given file path.
// /// Sets up local repository user configuration
// pub fn setup_local_user(name: &str, email: &str) -> Result<()> {
// // Validate inputs
// if name.trim().is_empty() {
// return Err(io::Error::new(
// io::ErrorKind::InvalidInput,
// "User name cannot be empty",
// ));
// }
// if email.trim().is_empty() {
// return Err(io::Error::new(
// io::ErrorKind::InvalidInput,
// "User email cannot be empty",
// ));
// }
// // Check if we're in a git repository
// if !Path::new(".xit").exists() {
// return Err(io::Error::new(
// io::ErrorKind::NotFound,
// "Not in a git repository. Run `xit init` first.",
// ));
// }
// let config_path = Path::new(".xit").join("config");
// // Read existing config or create new one
// let mut config_content = String::new();
// if config_path.exists() {
// config_content = fs::read_to_string(&config_path)?;
// }
// // Check if [user] section already exists
// if config_content.contains("[user]") {
// // Update existing user section
// let lines: Vec<&str> = config_content.lines().collect();
// let mut new_lines: Vec<String> = Vec::new();
// let mut in_user_section = false;
// let mut user_section_updated = false;
// for line in lines {
// if line.trim() == "[user]" {
// in_user_section = true;
// new_lines.push(line.to_string());
// new_lines.push(format!(" name = {}", name.trim()));
// new_lines.push(format!(" email = {}", email.trim()));
// user_section_updated = true;
// } else if in_user_section && line.trim().starts_with('[') {
// // End of user section
// in_user_section = false;
// new_lines.push(line.to_string());
// } else if !in_user_section
// || (!line.trim().starts_with("name") && !line.trim().starts_with("email"))
// {
// new_lines.push(line.to_string());
// }
// }
// if !user_section_updated {
// // Add user section at the end
// new_lines.push("[user]".to_string());
// new_lines.push(format!(" name = {}", name.trim()));
// new_lines.push(format!(" email = {}", email.trim()));
// }
// config_content = new_lines.join("\n");
// } else {
// // Add new user section
// if !config_content.is_empty() && !config_content.ends_with('\n') {
// config_content.push('\n');
// }
// config_content.push_str(&format!(
// "[user]\n name = {}\n email = {}\n",
// name.trim(),
// email.trim()
// ));
// }
// fs::write(&config_path, config_content)?;
// println!("User identity saved locally to: {}", config_path.display());
// Ok(())
// }
// /// Gets the current working directory's repository config path
// pub fn get_repository_config_path() -> Result<PathBuf> {
// let current_dir = env::current_dir()?;
// Ok(current_dir.join(".xit").join("config"))
// }
// /// Checks if a repository has local user configuration
// pub fn has_local_user_config() -> bool {
// let config_path = Path::new(".xit").join("config");
// if !config_path.exists() {
// return false;
// }
// if let Ok(Some(_)) = read_user_from_path(&config_path) {
// return true;
// }
// false
// }