This repository was archived by the owner on Sep 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathNew-GitLabProjectRepositoryFile.ps1
More file actions
86 lines (76 loc) · 2.33 KB
/
Copy pathNew-GitLabProjectRepositoryFile.ps1
File metadata and controls
86 lines (76 loc) · 2.33 KB
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
function New-GitLabProjectRepositoryFile
{
<#
.SYNOPSIS
Create a new file in the repository
.DESCRIPTION
The New-gitLabProjectRepositoryFile function creates a new file in the repository.
Content is expected in text but can be pased base 64 encoded using -Encoding base64.
.EXAMPLE
New-GitLabProjectRepositoryFile -ProjectID 20 -BranchName '1-FeatureName' -FilePath FeatureFile.ps1 -Content '#filecontent' -CommitMessage 'add FeatureFileMockup'
---------------------------------------------------------------
Adds the FeatureFile.ps1 file to the repository in branch 1-Feature.
#>
[CmdletBinding(defaultParameterSetName = '')]
[Alias()]
[OutputType()]
Param
(
# The ID of the project
[Parameter(HelpMessage = 'ProjectID',
Mandatory = $true)]
[Alias('ID')]
[int]$ProjectID,
# The name of thebranch
[Parameter(HelpMessage = 'Commit SHA or branch name',
Mandatory = $true)]
[Alias('branch_name')]
[string]$BranchName,
# The path of the file inside the projects repository.
[Parameter(Helpmessage = 'The path of the file',
Mandatory = $true)]
[alias('file_path')]
[String]$FilePath,
# Encoding of supplied content. 'text' or 'base64'. Text is default.
[Parameter(HelpMessage = 'Encoding of content (text|base64)')]
[validateset('text','base64')]
[string]$Encoding = 'text',
# File content
[Parameter(Helpmessage = 'File content',
Mandatory = $true)]
[string]$Content,
# Commit message
[Parameter(HelpMessage = ' Commit message',
Mandatory = $true)]
[alias('commit_message')]
[string]$CommitMessage,
# Specify Existing GitlabConnector
[Parameter(HelpMessage = 'Specify Existing GitlabConnector',
Mandatory = $false,
DontShow = $true)]
[psobject]$GitlabConnect = (Get-GitlabConnect)
)
$httpmethod = 'post'
$apiurl = "/projects/$ProjectID/repository/files"
$parameters = @{
'file_path' = $FilePath
'branch_name' = $BranchName
'commit_message' = $CommitMessage
}
$body = @{
'content' = $content
}
switch($encoding){
'text'
{
$parameters.encoding = 'text'
break
}
'base64'
{
$parameters.encoding = 'base64'
break
}
}
$GitlabConnect.callapi($apiurl,$httpmethod,$parameters,$body)
}