Skip to content

Commit b918ae1

Browse files
authored
Removal of Insider SAS Token (#3166)
Co-authored-by: freddydk <[email protected]>
1 parent 19df6a3 commit b918ae1

9 files changed

+95
-116
lines changed

AppHandling/Run-AlPipeline.ps1

+8-3
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
If a folder on the host computer is specified in the sharedFolder parameter, it will be shared with the container as c:\shared
1212
.Parameter licenseFile
1313
License file to use for AL Pipeline.
14+
.Parameter accept_insiderEula
15+
Switch, which you need to specify if you are going to create a container with an insider build of Business Central on Docker containers (See https://go.microsoft.com/fwlink/?linkid=2245051)
1416
.Parameter containerName
1517
This is the containerName going to be used for the build/test container. If not specified, the container name will be the pipeline name followed by -bld.
1618
.Parameter imageName
@@ -82,6 +84,7 @@
8284
This is the folder (relative to base folder) where compiled apps are placed. Only relevant when not using useDevEndpoint.
8385
.Parameter artifact
8486
The description of which artifact to use. This can either be a URL (from Get-BcArtifactUrl) or in the format storageAccount/type/version/country/select/sastoken, where these values are transferred as parameters to Get-BcArtifactUrl. Default value is ///us/current.
87+
If you specify accept_insiderEula, you do not need to specify a sasToken
8588
.Parameter useGenericImage
8689
Specify a private (or special) generic image to use for the Container OS. Default is calling Get-BestGenericImageName.
8790
.Parameter buildArtifactFolder
@@ -133,7 +136,7 @@
133136
.Parameter vsixFile
134137
Specify a URL or path to a .vsix file in order to override the .vsix file in the image with this.
135138
Use Get-LatestAlLanguageExtensionUrl to get latest AL Language extension from Marketplace.
136-
Use Get-AlLanguageExtensionFromArtifacts -artifactUrl (Get-BCArtifactUrl -select NextMajor -sasToken $insiderSasToken) to get latest insider .vsix
139+
Use Get-AlLanguageExtensionFromArtifacts -artifactUrl (Get-BCArtifactUrl -select NextMajor -accept_insiderEula) to get latest insider .vsix
137140
.Parameter enableCodeCop
138141
Include this switch to include Code Cop Rules during compilation.
139142
.Parameter enableAppSourceCop
@@ -260,6 +263,7 @@ Param(
260263
[string] $baseFolder = "",
261264
[string] $sharedFolder = "",
262265
[string] $licenseFile,
266+
[switch] $accept_insiderEula,
263267
[string] $containerName = "$($pipelineName.Replace('.','-') -replace '[^a-zA-Z0-9---]', '')-bld".ToLowerInvariant(),
264268
[string] $imageName = 'my',
265269
[switch] $enableTaskScheduler,
@@ -569,7 +573,7 @@ else {
569573
if ($additionalCountries) {
570574
$minver = $null
571575
@($country)+$additionalCountries | ForEach-Object {
572-
$url = Get-BCArtifactUrl -storageAccount $storageAccount -type $type -version $version -country $_.Trim() -select $select -sasToken $sasToken | Select-Object -First 1
576+
$url = Get-BCArtifactUrl -storageAccount $storageAccount -type $type -version $version -country $_.Trim() -select $select -sasToken $sasToken -accept_insiderEula:$accept_insiderEula | Select-Object -First 1
573577
Write-Host "Found $($url.Split('?')[0])"
574578
if ($url) {
575579
$ver = [Version]$url.Split('/')[4]
@@ -586,7 +590,7 @@ else {
586590
}
587591
$version = $minver.ToString()
588592
}
589-
$artifactUrl = Get-BCArtifactUrl -storageAccount $minsto -type $type -version $version -country $country -select $minsel -sasToken $mintok | Select-Object -First 1
593+
$artifactUrl = Get-BCArtifactUrl -storageAccount $minsto -type $type -version $version -country $country -select $minsel -sasToken $mintok -accept_insiderEula:$accept_insiderEula | Select-Object -First 1
590594
if (!($artifactUrl)) {
591595
throw "Unable to locate artifacts"
592596
}
@@ -966,6 +970,7 @@ Measure-Command {
966970

967971
$Parameters += @{
968972
"accept_eula" = $true
973+
"accept_insiderEula" = $accept_insiderEula
969974
"containerName" = $containerName
970975
"artifactUrl" = $artifactUrl
971976
"useGenericImage" = $useGenericImage

Artifacts/Download-Artifacts.ps1

+2-2
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ try {
7878
}
7979
if (-not $exists) {
8080
Write-Host "Downloading artifact $($appUri.AbsolutePath)"
81-
TestSasToken -sasToken $artifactUrl
81+
TestSasToken -url $artifactUrl
8282
$retry = $false
8383
do {
8484
$appZip = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString()).zip"
@@ -203,7 +203,7 @@ try {
203203
}
204204
if (-not $exists) {
205205
Write-Host "Downloading platform artifact $($platformUri.AbsolutePath)"
206-
TestSasToken -sasToken $platformUrl
206+
TestSasToken -url $platformUrl
207207
$retry = $false
208208
do {
209209
$platformZip = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString()).zip"

Artifacts/Get-BCArtifactUrl.ps1

+26-38
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,10 @@
2323
.Parameter storageAccount
2424
The storageAccount that is being used where artifacts are stored (default is bcartifacts, usually should not be changed).
2525
.Parameter sasToken
26-
The token that for accessing protected Azure Blob Storage (like insider builds). Make sure to set the right storageAccount!
26+
The token that for accessing protected Azure Blob Storage. Make sure to set the right storageAccount!
27+
Note that Business Central Insider artifacts doesn't require a sasToken after October 1st 2023, you can use the switch -accept_insiderEula to accept the EULA instead.
28+
.Parameter accept_insiderEula
29+
Accept the EULA for Business Central Insider artifacts. This is required for using Business Central Insider artifacts without providing a SAS token after October 1st 2023.
2730
.Example
2831
Get the latest URL for Belgium:
2932
Get-BCArtifactUrl -Type OnPrem -Select Latest -country be
@@ -44,6 +47,7 @@ function Get-BCArtifactUrl {
4447
[DateTime] $before,
4548
[String] $storageAccount = '',
4649
[String] $sasToken = '',
50+
[switch] $accept_insiderEula,
4751
[switch] $doNotCheckPlatform
4852
)
4953

@@ -101,48 +105,19 @@ try {
101105
if ($storageAccount -ne '' -or $type -eq 'OnPrem' -or $version -ne '') {
102106
throw "You cannot specify storageAccount, type=OnPrem or version when selecting $select release"
103107
}
104-
if ($sasToken -eq '') {
105-
throw "You need to specify an insider SasToken if you want to get $select release"
106-
}
108+
107109
$current = Get-BCArtifactUrl -country 'base' -select Latest -doNotCheckPlatform:$doNotCheckPlatform
108110
$currentversion = [System.Version]($current.Split('/')[4])
109111

110112
$nextminorversion = "$($currentversion.Major).$($currentversion.Minor+1)."
111113
$nextmajorversion = "$($currentversion.Major+1).0."
112-
113-
$publicpreviews = Get-BcArtifactUrl -country $country -storageAccount bcpublicpreview -select All -doNotCheckPlatform:$doNotCheckPlatform
114-
$insiders = Get-BcArtifactUrl -country $country -storageAccount bcinsider -select All -sasToken $sasToken -doNotCheckPlatform:$doNotCheckPlatform
115-
116-
$publicpreview = $publicpreviews | Where-Object { $_.Split('/')[4].StartsWith($nextmajorversion) } | Select-Object -Last 1
117-
$insider = $insiders | Where-Object { $_.Split('/')[4].StartsWith($nextmajorversion) } | Select-Object -Last 1
118-
119-
$nextmajor = $insider
120-
if (!($insider)) {
121-
$nextmajor = $publicpreview
114+
if ($currentVersion.Minor -ge 5) {
115+
$nextminorversion = $nextmajorversion
122116
}
123-
elseif ($publicpreview) {
124-
if ([version]($publicpreview.Split('/')[4]) -ge [version]($insider.Split('/')[4])) {
125-
$nextmajor = $publicpreview
126-
}
127-
}
128-
129-
$insider = $insiders | Where-Object { $_.Split('/')[4].StartsWith($nextminorversion) } | Select-Object -Last 1
130-
$publicpreview = $publicpreviews | Where-Object { $_.Split('/')[4].StartsWith($nextminorversion) } | Select-Object -Last 1
131117

132-
$nextminor = $insider
133-
if (!($insider)) {
134-
if ($publicpreview) {
135-
$nextminor = $publicpreview
136-
}
137-
else {
138-
$nextminor = $nextmajor
139-
}
140-
}
141-
elseif ($publicpreview) {
142-
if ([version]($publicpreview.Split('/')[4]) -ge [version]($insider.Split('/')[4])) {
143-
$nextminor = $publicpreview
144-
}
145-
}
118+
$insiders = Get-BcArtifactUrl -country $country -storageAccount bcinsider -select All -sasToken $sasToken -doNotCheckPlatform:$doNotCheckPlatform -accept_insiderEula:$accept_insiderEula
119+
$nextmajor = $insiders | Where-Object { $_.Split('/')[4].StartsWith($nextmajorversion) } | Select-Object -Last 1
120+
$nextminor = $insiders | Where-Object { $_.Split('/')[4].StartsWith($nextminorversion) } | Select-Object -Last 1
146121

147122
if ($select -eq 'NextMinor') {
148123
$nextminor
@@ -152,7 +127,9 @@ try {
152127
}
153128
}
154129
else {
155-
TestSasToken -sasToken $sasToken
130+
if ($sasToken) {
131+
TestSasToken -url $sasToken
132+
}
156133

157134
if ($storageAccount -eq '') {
158135
$storageAccount = 'bcartifacts'
@@ -164,6 +141,17 @@ try {
164141
$BaseUrl = "https://$storageAccount/$($Type.ToLowerInvariant())/"
165142
$storageAccount = $storageAccount -replace ".azureedge.net", ".blob.core.windows.net"
166143

144+
if ($storageAccount -eq 'bcinsider.blob.core.windows.net') {
145+
if (!$accept_insiderEULA) {
146+
if ($sasToken) {
147+
Write-Host -ForegroundColor Yellow "After October 1st 2023, you can specify -accept_insiderEula to accept the insider EULA (https://go.microsoft.com/fwlink/?linkid=2245051) for Business Central Insider artifacts instead of providing a SAS token."
148+
}
149+
else {
150+
throw "You need to accept the insider EULA (https://go.microsoft.com/fwlink/?linkid=2245051) by specifying -accept_insiderEula or by providing a SAS token to get access to insider builds"
151+
}
152+
}
153+
}
154+
167155
$GetListUrl = "https://$storageAccount/$($Type.ToLowerInvariant())/"
168156

169157
if ($bcContainerHelperConfig.DoNotUseCdnForArtifacts) {
@@ -179,7 +167,7 @@ try {
179167

180168
if ($select -eq 'SecondToLastMajor') {
181169
if ($version) {
182-
throw "You cannot specify a version when asking for the Second To Lst Major version"
170+
throw "You cannot specify a version when asking for the Second To Last Major version"
183171
}
184172
}
185173
elseif ($select -eq 'Closest') {

ContainerHandling/New-NavContainer.ps1

+19-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
Adds shortcut on the desktop for Web Client and Container PowerShell prompt
77
.Parameter accept_eula
88
Switch, which you need to specify if you accept the eula for running NAV or Business Central on Docker containers (See https://go.microsoft.com/fwlink/?linkid=861843)
9+
.Parameter accept_insiderEula
10+
Switch, which you need to specify if you are going to create a container with an insider build of Business Central on Docker containers (See https://go.microsoft.com/fwlink/?linkid=2245051)
911
.Parameter accept_outdated
1012
Specify accept_outdated to ignore error when running containers which are older than 90 days
1113
.Parameter containerName
@@ -174,11 +176,13 @@
174176
.Parameter vsixFile
175177
Specify a URL or path to a .vsix file in order to override the .vsix file in the image with this.
176178
Use Get-LatestAlLanguageExtensionUrl to get latest AL Language extension from Marketplace.
177-
Use Get-AlLanguageExtensionFromArtifacts -artifactUrl (Get-BCArtifactUrl -select NextMajor -sasToken $insiderSasToken) to get latest insider .vsix
179+
Use Get-AlLanguageExtensionFromArtifacts -artifactUrl (Get-BCArtifactUrl -select NextMajor -accept_insiderEula) to get latest insider .vsix
178180
.Parameter sqlTimeout
179181
SQL Timeout for database restore operations
180182
.Example
181183
New-BcContainer -accept_eula -containerName test
184+
.Example
185+
New-BcContainer -accept_eula -containerName test -accept_insiderEula -artifactUrl (Get-BcArtifactUrl -accept_insiderEula -country dk -select NextMajor)
182186
.Example
183187
New-BcContainer -accept_eula -containerName test -multitenant
184188
.Example
@@ -191,6 +195,7 @@
191195
function New-BcContainer {
192196
Param (
193197
[switch] $accept_eula,
198+
[switch] $accept_insiderEula,
194199
[switch] $accept_outdated = $true,
195200
[string] $containerName = $bcContainerHelperConfig.defaultContainerName,
196201
[string] $imageName = "",
@@ -531,6 +536,19 @@ try {
531536
# When using artifacts, you always use best container os - no need to replatform
532537
$useBestContainerOS = $false
533538

539+
if ($artifactUrl -like 'https://bcinsider.blob.core.windows.net/*' -or $artifactUrl -like 'https://bcinsider.azureedge.net/*') {
540+
if (!$accept_insiderEULA) {
541+
$sasToken = "?$("$($artifactUrl)?".Split('?')[1])"
542+
if ($sasToken -eq '?') {
543+
throw "You need to accept the insider EULA (https://go.microsoft.com/fwlink/?linkid=2245051) by specifying -accept_insiderEula or by providing a SAS token to get access to insider builds"
544+
}
545+
else {
546+
TestSasToken -url $artifactUrl
547+
Write-Host -ForegroundColor Yellow "After October 1st 2023, you can specify -accept_insiderEula to accept the insider EULA (https://go.microsoft.com/fwlink/?linkid=2245051) for Business Central Insider artifacts instead of providing a SAS token."
548+
}
549+
}
550+
}
551+
534552
$artifactPaths = Download-Artifacts -artifactUrl $artifactUrl -includePlatform -forceRedirection:$alwaysPull
535553
$appArtifactPath = $artifactPaths[0]
536554
$platformArtifactPath = $artifactPaths[1]

CreateALGoRepo.ps1

+2-17
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,6 @@ $Step = @{
438438

439439
$orgSecrets = @()
440440
$secrets = [ordered]@{
441-
"InsiderSasToken" = ""
442441
"ghTokenWorkflow" = ""
443442
"AdminCenterApiCredentials" = ""
444443
"LicenseFileUrl" = ""
@@ -832,7 +831,7 @@ $Step.scheduledWorkflows {
832831
833832
834833
'@ `
835-
-Description "AL-Go for GitHub includes three workflows, which typically are setup to run on a schedule.`nNote that in order to run the Test Next Minor and Test Next Major workflows, you need to have provide a secret called insiderSasToken.`n" `
834+
-Description "AL-Go for GitHub includes three workflows, which typically are setup to run on a schedule.`n" `
836835
-options ([ordered]@{"Current" = "Test Current : $($settings.CurrentSchedule)"; "NextMinor" = "Test Next Minor : $($settings.NextMinorSchedule)"; "NextMajor" = "Test Next Major : $($settings.NextMajorSchedule)"; "none" = "No further changes needed" }) `
837836
-question "Select schedule to change" `
838837
-previousStep `
@@ -887,7 +886,7 @@ $Step.GitHubRunner {
887886

888887
$Step.Secrets {
889888

890-
$neededSecrets = "- InsiderSasToken - if you want to run builds against future versions of Business Central, this secret needs to contain the insider SAS token from |https://aka.ms/collaborate|`n- GhTokenWorkflow - must be a valid personal access token with permissions to modify workflows, created from |https://github.com/settings/tokens|`n- [environment-]AuthContext - Authentication context for authenticating to specific environments (continuous deployment, publish to production)`n- AdminCenterApiCredentials - An AuthContext for accessing the Admin Center Api (creating development environments)`n- AZURE_CREDENTIALS - is used as a GitHub secret to provide access to an Azure KeyVault with your secrets`n"
889+
$neededSecrets = "- GhTokenWorkflow - must be a valid personal access token with permissions to modify workflows, created from |https://github.com/settings/tokens|`n- [environment-]AuthContext - Authentication context for authenticating to specific environments (continuous deployment, publish to production)`n- AdminCenterApiCredentials - An AuthContext for accessing the Admin Center Api (creating development environments)`n- AZURE_CREDENTIALS - is used as a GitHub secret to provide access to an Azure KeyVault with your secrets`n"
891890
if ($appType -eq "AppSource") {
892891
$neededSecrets += "- LicenseFile - needs to contain a direct download URL for your Business Central license file`n- CodeSignCertificateUrl - direct download URL for Code Signing certificate`n- CodeSignCertificatePassword - pfx password for code signing certificate."
893892
}
@@ -1045,20 +1044,6 @@ $Step.DefineSecrets {
10451044
$script:wizardStep = $step.DefineSecrets
10461045
Write-Host -ForegroundColor Yellow "`n$setSecret`n"
10471046
switch ($setSecret) {
1048-
"InsiderSasToken" {
1049-
Write-Host "The Insider SAS Token is available for Microsoft partners on https://aka.ms/collaborate for members of the Ready! for Dynamics 365 Business Central Engagement`nPlease follow the steps on https://aka.ms/bcpublisher to get access`n`nThe package containing the Insider SAS Token is called Working with Business Central Insider Builds and is available for download here:`n`nhttps://partner.microsoft.com/en-us/dashboard/collaborate/packages/9387`n"
1050-
while ($true) {
1051-
$secrets.InsiderSasToken = Read-Host "Please paste the Insider SAS token here"
1052-
if (-not ($secrets.InsiderSasToken)) { break }
1053-
try {
1054-
Get-BCArtifactUrl -storageAccount bcinsider -country us -sasToken $secrets.InsiderSasToken
1055-
break
1056-
}
1057-
catch {
1058-
Write-Host -ForegroundColor Red "The Insider SAS Token is invalid"
1059-
}
1060-
}
1061-
}
10621047
"ghTokenWorkflow" {
10631048
Write-Host "In order to run the Update AL-Go System files workflow, the ghTokenWorkflow secret needs to be defined.`nVisit the personal access tokens site for your account on GitHub and generate a new token with the workflow scope selected.`nNote that if you specify a PAT with an expiration date, you will have to update the token when it expires.`n`nYou can visit the Personal Access Tokens site on GitHub using this URL:`n`nhttps://github.com/settings/tokens`n"
10641049
$secrets.ghTokenWorkflow = Read-Host "Please paste the Personal Access Token with workflow scope here"

0 commit comments

Comments
 (0)