ironflow-ops-git 0.1.0

Git operations for Ironflow workflows, powered by git2
Documentation
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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
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
337
338
339
340
341
342
343
344
345
346
347
348
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
417
418
419
420
421
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
497
498
499
500
501
502
503
504
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
//! Branch operations.

use std::path::PathBuf;

use async_trait::async_trait;
use git2::{BranchType, Repository};
use ironflow_core::error::OperationError;
use ironflow_core::operation::{Operation, OperationContext, TypedOperation};
use serde::{Deserialize, Serialize};
use serde_json::Value;

use crate::helpers::{blocking, to_value};

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct BranchCreateOutput {
    pub name: String,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct BranchDeleteOutput {
    pub name: String,
    pub deleted: bool,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct BranchRenameOutput {
    pub old_name: String,
    pub new_name: String,
}

/// A single branch entry.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct BranchEntry {
    pub name: String,
    pub is_head: bool,
    #[serde(rename = "type")]
    pub branch_type: String,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct BranchListOutput {
    pub branches: Vec<BranchEntry>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct BranchLookupOutput {
    pub name: String,
    pub is_head: bool,
    pub target: Option<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct BranchIsHeadOutput {
    pub name: String,
    pub is_head: bool,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct BranchSetUpstreamOutput {
    pub branch: String,
    pub upstream: String,
}

/// Create a new branch pointing at HEAD.
///
/// # Examples
///
/// ```no_run
/// use ironflow_ops_git::branch::BranchCreate;
/// use ironflow_core::operation::Operation;
///
/// let op = BranchCreate::new("/path/to/repo", "feature-x");
/// assert_eq!(op.kind(), "git");
/// ```
pub struct BranchCreate {
    repo_path: PathBuf,
    name: String,
}

impl BranchCreate {
    /// Create a new branch-create operation.
    pub fn new(repo_path: impl Into<PathBuf>, name: impl Into<String>) -> Self {
        Self {
            repo_path: repo_path.into(),
            name: name.into(),
        }
    }

    /// Execute and return a typed result.
    pub async fn run(&self, _ctx: &OperationContext) -> Result<BranchCreateOutput, OperationError> {
        let repo_path = self.repo_path.clone();
        let name = self.name.clone();
        blocking(move || {
            let repo = Repository::open(&repo_path)?;
            let head = repo.head()?.peel_to_commit()?;
            repo.branch(&name, &head, false)?;
            Ok(BranchCreateOutput { name })
        })
        .await
    }
}

#[async_trait]
impl Operation for BranchCreate {
    fn kind(&self) -> &str {
        "git"
    }
    async fn execute(&self, ctx: &OperationContext) -> Result<Value, OperationError> {
        to_value(&self.run(ctx).await?)
    }
    fn input(&self) -> Option<Value> {
        Some(serde_json::json!({ "repo_path": self.repo_path, "name": self.name }))
    }
}

impl TypedOperation for BranchCreate {
    type Output = BranchCreateOutput;
}

/// Delete a branch.
///
/// # Examples
///
/// ```no_run
/// use ironflow_ops_git::branch::BranchDelete;
/// use ironflow_core::operation::Operation;
///
/// let op = BranchDelete::new("/path/to/repo", "feature-x", false);
/// assert_eq!(op.kind(), "git");
/// ```
pub struct BranchDelete {
    repo_path: PathBuf,
    name: String,
    remote: bool,
}

impl BranchDelete {
    /// Create a new branch-delete operation.
    ///
    /// Set `remote` to `true` to delete a remote-tracking branch.
    pub fn new(repo_path: impl Into<PathBuf>, name: impl Into<String>, remote: bool) -> Self {
        Self {
            repo_path: repo_path.into(),
            name: name.into(),
            remote,
        }
    }

    /// Execute and return a typed result.
    pub async fn run(&self, _ctx: &OperationContext) -> Result<BranchDeleteOutput, OperationError> {
        let repo_path = self.repo_path.clone();
        let name = self.name.clone();
        let branch_type = if self.remote {
            BranchType::Remote
        } else {
            BranchType::Local
        };
        blocking(move || {
            let repo = Repository::open(&repo_path)?;
            let mut branch = repo.find_branch(&name, branch_type)?;
            branch.delete()?;
            Ok(BranchDeleteOutput {
                name,
                deleted: true,
            })
        })
        .await
    }
}

#[async_trait]
impl Operation for BranchDelete {
    fn kind(&self) -> &str {
        "git"
    }
    async fn execute(&self, ctx: &OperationContext) -> Result<Value, OperationError> {
        to_value(&self.run(ctx).await?)
    }
    fn input(&self) -> Option<Value> {
        Some(
            serde_json::json!({ "repo_path": self.repo_path, "name": self.name, "remote": self.remote }),
        )
    }
}

impl TypedOperation for BranchDelete {
    type Output = BranchDeleteOutput;
}

/// Rename a branch.
///
/// # Examples
///
/// ```no_run
/// use ironflow_ops_git::branch::BranchRename;
/// use ironflow_core::operation::Operation;
///
/// let op = BranchRename::new("/path/to/repo", "old-name", "new-name", false);
/// assert_eq!(op.kind(), "git");
/// ```
pub struct BranchRename {
    repo_path: PathBuf,
    old_name: String,
    new_name: String,
    force: bool,
}

impl BranchRename {
    /// Create a new branch-rename operation.
    pub fn new(
        repo_path: impl Into<PathBuf>,
        old_name: impl Into<String>,
        new_name: impl Into<String>,
        force: bool,
    ) -> Self {
        Self {
            repo_path: repo_path.into(),
            old_name: old_name.into(),
            new_name: new_name.into(),
            force,
        }
    }

    /// Execute and return a typed result.
    pub async fn run(&self, _ctx: &OperationContext) -> Result<BranchRenameOutput, OperationError> {
        let repo_path = self.repo_path.clone();
        let old = self.old_name.clone();
        let new = self.new_name.clone();
        let force = self.force;
        blocking(move || {
            let repo = Repository::open(&repo_path)?;
            let mut branch = repo.find_branch(&old, BranchType::Local)?;
            branch.rename(&new, force)?;
            Ok(BranchRenameOutput {
                old_name: old,
                new_name: new,
            })
        })
        .await
    }
}

#[async_trait]
impl Operation for BranchRename {
    fn kind(&self) -> &str {
        "git"
    }
    async fn execute(&self, ctx: &OperationContext) -> Result<Value, OperationError> {
        to_value(&self.run(ctx).await?)
    }
    fn input(&self) -> Option<Value> {
        Some(serde_json::json!({
            "repo_path": self.repo_path,
            "old_name": self.old_name,
            "new_name": self.new_name,
        }))
    }
}

impl TypedOperation for BranchRename {
    type Output = BranchRenameOutput;
}

/// List all branches.
///
/// # Examples
///
/// ```no_run
/// use ironflow_ops_git::branch::BranchList;
/// use ironflow_core::operation::Operation;
///
/// let op = BranchList::local("/path/to/repo");
/// assert_eq!(op.kind(), "git");
/// ```
pub struct BranchList {
    repo_path: PathBuf,
    filter: Option<BranchType>,
}

impl BranchList {
    /// List local branches only.
    pub fn local(repo_path: impl Into<PathBuf>) -> Self {
        Self {
            repo_path: repo_path.into(),
            filter: Some(BranchType::Local),
        }
    }

    /// List remote-tracking branches only.
    pub fn remote(repo_path: impl Into<PathBuf>) -> Self {
        Self {
            repo_path: repo_path.into(),
            filter: Some(BranchType::Remote),
        }
    }

    /// List all branches (local and remote).
    pub fn all(repo_path: impl Into<PathBuf>) -> Self {
        Self {
            repo_path: repo_path.into(),
            filter: None,
        }
    }

    /// Execute and return a typed result.
    pub async fn run(&self, _ctx: &OperationContext) -> Result<BranchListOutput, OperationError> {
        let repo_path = self.repo_path.clone();
        let filter = self.filter;
        blocking(move || {
            let repo = Repository::open(&repo_path)?;
            let branches = repo.branches(filter)?;
            let list = branches
                .filter_map(|b| b.ok())
                .map(|(branch, bt)| BranchEntry {
                    name: branch.name().ok().flatten().unwrap_or("").to_string(),
                    is_head: branch.is_head(),
                    branch_type: match bt {
                        BranchType::Local => "local".to_string(),
                        BranchType::Remote => "remote".to_string(),
                    },
                })
                .collect();
            Ok(BranchListOutput { branches: list })
        })
        .await
    }
}

#[async_trait]
impl Operation for BranchList {
    fn kind(&self) -> &str {
        "git"
    }
    async fn execute(&self, ctx: &OperationContext) -> Result<Value, OperationError> {
        to_value(&self.run(ctx).await?)
    }
    fn input(&self) -> Option<Value> {
        Some(serde_json::json!({ "repo_path": self.repo_path }))
    }
}

impl TypedOperation for BranchList {
    type Output = BranchListOutput;
}

/// Look up a branch by name.
///
/// # Examples
///
/// ```no_run
/// use ironflow_ops_git::branch::BranchLookup;
/// use ironflow_core::operation::Operation;
///
/// let op = BranchLookup::new("/path/to/repo", "main", false);
/// assert_eq!(op.kind(), "git");
/// ```
pub struct BranchLookup {
    repo_path: PathBuf,
    name: String,
    remote: bool,
}

impl BranchLookup {
    /// Create a new branch-lookup operation.
    pub fn new(repo_path: impl Into<PathBuf>, name: impl Into<String>, remote: bool) -> Self {
        Self {
            repo_path: repo_path.into(),
            name: name.into(),
            remote,
        }
    }

    /// Execute and return a typed result.
    pub async fn run(&self, _ctx: &OperationContext) -> Result<BranchLookupOutput, OperationError> {
        let repo_path = self.repo_path.clone();
        let name = self.name.clone();
        let bt = if self.remote {
            BranchType::Remote
        } else {
            BranchType::Local
        };
        blocking(move || {
            let repo = Repository::open(&repo_path)?;
            let branch = repo.find_branch(&name, bt)?;
            let target = branch.get().target().map(|o| o.to_string());
            Ok(BranchLookupOutput {
                name,
                is_head: branch.is_head(),
                target,
            })
        })
        .await
    }
}

#[async_trait]
impl Operation for BranchLookup {
    fn kind(&self) -> &str {
        "git"
    }
    async fn execute(&self, ctx: &OperationContext) -> Result<Value, OperationError> {
        to_value(&self.run(ctx).await?)
    }
    fn input(&self) -> Option<Value> {
        Some(serde_json::json!({ "repo_path": self.repo_path, "name": self.name }))
    }
}

impl TypedOperation for BranchLookup {
    type Output = BranchLookupOutput;
}

/// Check if a branch is the current HEAD.
///
/// # Examples
///
/// ```no_run
/// use ironflow_ops_git::branch::BranchIsHead;
/// use ironflow_core::operation::Operation;
///
/// let op = BranchIsHead::new("/path/to/repo", "main");
/// assert_eq!(op.kind(), "git");
/// ```
pub struct BranchIsHead {
    repo_path: PathBuf,
    name: String,
}

impl BranchIsHead {
    /// Create a new is-head check operation.
    pub fn new(repo_path: impl Into<PathBuf>, name: impl Into<String>) -> Self {
        Self {
            repo_path: repo_path.into(),
            name: name.into(),
        }
    }

    /// Execute and return a typed result.
    pub async fn run(&self, _ctx: &OperationContext) -> Result<BranchIsHeadOutput, OperationError> {
        let repo_path = self.repo_path.clone();
        let name = self.name.clone();
        blocking(move || {
            let repo = Repository::open(&repo_path)?;
            let branch = repo.find_branch(&name, BranchType::Local)?;
            Ok(BranchIsHeadOutput {
                name,
                is_head: branch.is_head(),
            })
        })
        .await
    }
}

#[async_trait]
impl Operation for BranchIsHead {
    fn kind(&self) -> &str {
        "git"
    }
    async fn execute(&self, ctx: &OperationContext) -> Result<Value, OperationError> {
        to_value(&self.run(ctx).await?)
    }
    fn input(&self) -> Option<Value> {
        Some(serde_json::json!({ "repo_path": self.repo_path, "name": self.name }))
    }
}

impl TypedOperation for BranchIsHead {
    type Output = BranchIsHeadOutput;
}

/// Set the upstream for a branch.
///
/// # Examples
///
/// ```no_run
/// use ironflow_ops_git::branch::BranchSetUpstream;
/// use ironflow_core::operation::Operation;
///
/// let op = BranchSetUpstream::new("/path/to/repo", "main", "origin/main");
/// assert_eq!(op.kind(), "git");
/// ```
pub struct BranchSetUpstream {
    repo_path: PathBuf,
    branch_name: String,
    upstream_name: String,
}

impl BranchSetUpstream {
    /// Create a new set-upstream operation.
    pub fn new(
        repo_path: impl Into<PathBuf>,
        branch_name: impl Into<String>,
        upstream_name: impl Into<String>,
    ) -> Self {
        Self {
            repo_path: repo_path.into(),
            branch_name: branch_name.into(),
            upstream_name: upstream_name.into(),
        }
    }

    /// Execute and return a typed result.
    pub async fn run(
        &self,
        _ctx: &OperationContext,
    ) -> Result<BranchSetUpstreamOutput, OperationError> {
        let repo_path = self.repo_path.clone();
        let branch_name = self.branch_name.clone();
        let upstream = self.upstream_name.clone();
        blocking(move || {
            let repo = Repository::open(&repo_path)?;
            let mut branch = repo.find_branch(&branch_name, BranchType::Local)?;
            branch.set_upstream(Some(&upstream))?;
            Ok(BranchSetUpstreamOutput {
                branch: branch_name,
                upstream,
            })
        })
        .await
    }
}

#[async_trait]
impl Operation for BranchSetUpstream {
    fn kind(&self) -> &str {
        "git"
    }
    async fn execute(&self, ctx: &OperationContext) -> Result<Value, OperationError> {
        to_value(&self.run(ctx).await?)
    }
    fn input(&self) -> Option<Value> {
        Some(serde_json::json!({
            "repo_path": self.repo_path,
            "branch": self.branch_name,
            "upstream": self.upstream_name,
        }))
    }
}

impl TypedOperation for BranchSetUpstream {
    type Output = BranchSetUpstreamOutput;
}