mirror of
https://dev.azure.com/effectory/Survey%20Software/_git/Cloud%20Engineering
synced 2026-02-27 18:52:18 +01:00
Merged PR 63702: Add Sonar Client to update permissions and tags in Sonar Projects to new team structure
Add Sonar Client to update permissions and tags in Sonar Projects to new team structure Related work items: #125680
This commit is contained in:
38
.aiignore
Normal file
38
.aiignore
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
# Ignore environment and config files
|
||||||
|
environment.ts
|
||||||
|
environment.*.ts
|
||||||
|
environment.prod.ts
|
||||||
|
config.json
|
||||||
|
local.settings.json
|
||||||
|
local.settings.Designer.cs
|
||||||
|
settings.json
|
||||||
|
.env
|
||||||
|
auth-config.ts
|
||||||
|
assets/config/
|
||||||
|
proxy.conf.json
|
||||||
|
package.json
|
||||||
|
angular.json
|
||||||
|
appsettings.json
|
||||||
|
appsettings.*.json
|
||||||
|
web.config
|
||||||
|
app.config
|
||||||
|
secrets.json
|
||||||
|
.env
|
||||||
|
launchSettings.json
|
||||||
|
Properties/PublishProfiles/*.pubxml
|
||||||
|
ServiceConfiguration.*.cscfg
|
||||||
|
App_Data/
|
||||||
|
*.csproj
|
||||||
|
*.mdf
|
||||||
|
*.pfx
|
||||||
|
*.p12
|
||||||
|
*.crt
|
||||||
|
*.key
|
||||||
|
.DS_Store
|
||||||
|
*.log
|
||||||
|
*.tmp
|
||||||
|
bin/
|
||||||
|
obj/
|
||||||
|
dist/
|
||||||
|
build/
|
||||||
|
out/
|
||||||
334
.gitignore
vendored
334
.gitignore
vendored
@@ -1,3 +1,337 @@
|
|||||||
|
## Ignore Visual Studio temporary files, build results, and
|
||||||
|
## files generated by popular Visual Studio add-ons.
|
||||||
|
##
|
||||||
|
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
|
||||||
|
|
||||||
|
# Bicep output
|
||||||
|
Authorization.Deploy/authorization.json
|
||||||
|
|
||||||
|
# User-specific files
|
||||||
|
*.suo
|
||||||
|
*.user
|
||||||
|
*.userosscache
|
||||||
|
*.sln.docstates
|
||||||
|
|
||||||
|
# User-specific files (MonoDevelop/Xamarin Studio)
|
||||||
|
*.userprefs
|
||||||
|
|
||||||
|
# Build results
|
||||||
|
[Dd]ebug/
|
||||||
|
[Dd]ebugPublic/
|
||||||
|
[Rr]elease/
|
||||||
|
[Rr]eleases/
|
||||||
|
x64/
|
||||||
|
x86/
|
||||||
|
bld/
|
||||||
|
[Bb]in/
|
||||||
|
[Oo]bj/
|
||||||
|
[Ll]og/
|
||||||
|
|
||||||
|
# Visual Studio 2015/2017 cache/options directory
|
||||||
|
.vs/
|
||||||
|
# Uncomment if you have tasks that create the project's static files in wwwroot
|
||||||
|
#wwwroot/
|
||||||
|
|
||||||
|
# Visual Studio 2017 auto generated files
|
||||||
|
Generated\ Files/
|
||||||
|
|
||||||
|
# MSTest test Results
|
||||||
|
[Tt]est[Rr]esult*/
|
||||||
|
[Bb]uild[Ll]og.*
|
||||||
|
|
||||||
|
# NUNIT
|
||||||
|
*.VisualState.xml
|
||||||
|
TestResult.xml
|
||||||
|
|
||||||
|
# Build Results of an ATL Project
|
||||||
|
[Dd]ebugPS/
|
||||||
|
[Rr]eleasePS/
|
||||||
|
dlldata.c
|
||||||
|
|
||||||
|
# Benchmark Results
|
||||||
|
BenchmarkDotNet.Artifacts/
|
||||||
|
|
||||||
|
# .NET Core
|
||||||
|
project.lock.json
|
||||||
|
project.fragment.lock.json
|
||||||
|
artifacts/
|
||||||
|
#**/Properties/launchSettings.json
|
||||||
|
|
||||||
|
# StyleCop
|
||||||
|
StyleCopReport.xml
|
||||||
|
|
||||||
|
# Files built by Visual Studio
|
||||||
|
*_i.c
|
||||||
|
*_p.c
|
||||||
|
*_i.h
|
||||||
|
*.ilk
|
||||||
|
*.meta
|
||||||
|
*.obj
|
||||||
|
*.iobj
|
||||||
|
*.pch
|
||||||
|
*.pdb
|
||||||
|
*.ipdb
|
||||||
|
*.pgc
|
||||||
|
*.pgd
|
||||||
|
*.rsp
|
||||||
|
*.sbr
|
||||||
|
*.tlb
|
||||||
|
*.tli
|
||||||
|
*.tlh
|
||||||
|
*.tmp
|
||||||
|
*.tmp_proj
|
||||||
|
*.log
|
||||||
|
*.vspscc
|
||||||
|
*.vssscc
|
||||||
|
.builds
|
||||||
|
*.pidb
|
||||||
|
*.svclog
|
||||||
|
*.scc
|
||||||
|
|
||||||
|
# Chutzpah Test files
|
||||||
|
_Chutzpah*
|
||||||
|
|
||||||
|
# Visual C++ cache files
|
||||||
|
ipch/
|
||||||
|
*.aps
|
||||||
|
*.ncb
|
||||||
|
*.opendb
|
||||||
|
*.opensdf
|
||||||
|
*.sdf
|
||||||
|
*.cachefile
|
||||||
|
*.VC.db
|
||||||
|
*.VC.VC.opendb
|
||||||
|
|
||||||
|
# Visual Studio profiler
|
||||||
|
*.psess
|
||||||
|
*.vsp
|
||||||
|
*.vspx
|
||||||
|
*.sap
|
||||||
|
|
||||||
|
# Visual Studio Trace Files
|
||||||
|
*.e2e
|
||||||
|
|
||||||
|
# TFS 2012 Local Workspace
|
||||||
|
$tf/
|
||||||
|
|
||||||
|
# Guidance Automation Toolkit
|
||||||
|
*.gpState
|
||||||
|
|
||||||
|
# ReSharper is a .NET coding add-in
|
||||||
|
_ReSharper*/
|
||||||
|
*.[Rr]e[Ss]harper
|
||||||
|
*.DotSettings.user
|
||||||
|
|
||||||
|
# JustCode is a .NET coding add-in
|
||||||
|
.JustCode
|
||||||
|
|
||||||
|
# TeamCity is a build add-in
|
||||||
|
_TeamCity*
|
||||||
|
|
||||||
|
# DotCover is a Code Coverage Tool
|
||||||
|
*.dotCover
|
||||||
|
|
||||||
|
# AxoCover is a Code Coverage Tool
|
||||||
|
.axoCover/*
|
||||||
|
!.axoCover/settings.json
|
||||||
|
|
||||||
|
# Visual Studio code coverage results
|
||||||
|
*.coverage
|
||||||
|
*.coveragexml
|
||||||
|
|
||||||
|
# NCrunch
|
||||||
|
_NCrunch_*
|
||||||
|
.*crunch*.local.xml
|
||||||
|
nCrunchTemp_*
|
||||||
|
|
||||||
|
# MightyMoose
|
||||||
|
*.mm.*
|
||||||
|
AutoTest.Net/
|
||||||
|
|
||||||
|
# Web workbench (sass)
|
||||||
|
.sass-cache/
|
||||||
|
|
||||||
|
# Installshield output folder
|
||||||
|
[Ee]xpress/
|
||||||
|
|
||||||
|
# DocProject is a documentation generator add-in
|
||||||
|
DocProject/buildhelp/
|
||||||
|
DocProject/Help/*.HxT
|
||||||
|
DocProject/Help/*.HxC
|
||||||
|
DocProject/Help/*.hhc
|
||||||
|
DocProject/Help/*.hhk
|
||||||
|
DocProject/Help/*.hhp
|
||||||
|
DocProject/Help/Html2
|
||||||
|
DocProject/Help/html
|
||||||
|
|
||||||
|
# Click-Once directory
|
||||||
|
publish/
|
||||||
|
|
||||||
|
# Publish Web Output
|
||||||
|
*.[Pp]ublish.xml
|
||||||
|
*.azurePubxml
|
||||||
|
# Note: Comment the next line if you want to checkin your web deploy settings,
|
||||||
|
# but database connection strings (with potential passwords) will be unencrypted
|
||||||
|
*.pubxml
|
||||||
|
*.publishproj
|
||||||
|
|
||||||
|
# Microsoft Azure Web App publish settings. Comment the next line if you want to
|
||||||
|
# checkin your Azure Web App publish settings, but sensitive information contained
|
||||||
|
# in these scripts will be unencrypted
|
||||||
|
PublishScripts/
|
||||||
|
|
||||||
|
# NuGet Packages
|
||||||
|
*.nupkg
|
||||||
|
# The packages folder can be ignored because of Package Restore
|
||||||
|
**/[Pp]ackages/*
|
||||||
|
# except build/, which is used as an MSBuild target.
|
||||||
|
!**/[Pp]ackages/build/
|
||||||
|
# Uncomment if necessary however generally it will be regenerated when needed
|
||||||
|
#!**/[Pp]ackages/repositories.config
|
||||||
|
# NuGet v3's project.json files produces more ignorable files
|
||||||
|
*.nuget.props
|
||||||
|
*.nuget.targets
|
||||||
|
|
||||||
|
# Microsoft Azure Build Output
|
||||||
|
csx/
|
||||||
|
*.build.csdef
|
||||||
|
|
||||||
|
# Microsoft Azure Emulator
|
||||||
|
ecf/
|
||||||
|
rcf/
|
||||||
|
|
||||||
|
# Windows Store app package directories and files
|
||||||
|
AppPackages/
|
||||||
|
BundleArtifacts/
|
||||||
|
Package.StoreAssociation.xml
|
||||||
|
_pkginfo.txt
|
||||||
|
*.appx
|
||||||
|
|
||||||
|
# Visual Studio cache files
|
||||||
|
# files ending in .cache can be ignored
|
||||||
|
*.[Cc]ache
|
||||||
|
# but keep track of directories ending in .cache
|
||||||
|
!*.[Cc]ache/
|
||||||
|
|
||||||
|
# Others
|
||||||
|
ClientBin/
|
||||||
|
~$*
|
||||||
|
*~
|
||||||
|
*.dbmdl
|
||||||
|
*.dbproj.schemaview
|
||||||
|
*.jfm
|
||||||
|
*.pfx
|
||||||
|
*.publishsettings
|
||||||
|
orleans.codegen.cs
|
||||||
|
|
||||||
|
# Including strong name files can present a security risk
|
||||||
|
# (https://github.com/github/gitignore/pull/2483#issue-259490424)
|
||||||
|
#*.snk
|
||||||
|
|
||||||
|
# Since there are multiple workflows, uncomment next line to ignore bower_components
|
||||||
|
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
|
||||||
|
#bower_components/
|
||||||
|
|
||||||
|
# RIA/Silverlight projects
|
||||||
|
Generated_Code/
|
||||||
|
|
||||||
|
# Backup & report files from converting an old project file
|
||||||
|
# to a newer Visual Studio version. Backup files are not needed,
|
||||||
|
# because we have git ;-)
|
||||||
|
_UpgradeReport_Files/
|
||||||
|
Backup*/
|
||||||
|
UpgradeLog*.XML
|
||||||
|
UpgradeLog*.htm
|
||||||
|
ServiceFabricBackup/
|
||||||
|
*.rptproj.bak
|
||||||
|
|
||||||
|
# SQL Server files
|
||||||
|
*.mdf
|
||||||
|
*.ldf
|
||||||
|
*.ndf
|
||||||
|
|
||||||
|
# Business Intelligence projects
|
||||||
|
*.rdl.data
|
||||||
|
*.bim.layout
|
||||||
|
*.bim_*.settings
|
||||||
|
*.rptproj.rsuser
|
||||||
|
|
||||||
|
# Microsoft Fakes
|
||||||
|
FakesAssemblies/
|
||||||
|
|
||||||
|
# GhostDoc plugin setting file
|
||||||
|
*.GhostDoc.xml
|
||||||
|
|
||||||
|
# Node.js Tools for Visual Studio
|
||||||
|
.ntvs_analysis.dat
|
||||||
|
node_modules/
|
||||||
|
|
||||||
|
# Visual Studio 6 build log
|
||||||
|
*.plg
|
||||||
|
|
||||||
|
# Visual Studio 6 workspace options file
|
||||||
|
*.opt
|
||||||
|
|
||||||
|
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
|
||||||
|
*.vbw
|
||||||
|
|
||||||
|
# Visual Studio LightSwitch build output
|
||||||
|
**/*.HTMLClient/GeneratedArtifacts
|
||||||
|
**/*.DesktopClient/GeneratedArtifacts
|
||||||
|
**/*.DesktopClient/ModelManifest.xml
|
||||||
|
**/*.Server/GeneratedArtifacts
|
||||||
|
**/*.Server/ModelManifest.xml
|
||||||
|
_Pvt_Extensions
|
||||||
|
|
||||||
|
# Paket dependency manager
|
||||||
|
.paket/paket.exe
|
||||||
|
paket-files/
|
||||||
|
|
||||||
|
# FAKE - F# Make
|
||||||
|
.fake/
|
||||||
|
|
||||||
|
# JetBrains Rider
|
||||||
|
.idea/
|
||||||
|
*.sln.iml
|
||||||
|
|
||||||
|
# CodeRush
|
||||||
|
.cr/
|
||||||
|
|
||||||
|
# Python Tools for Visual Studio (PTVS)
|
||||||
|
__pycache__/
|
||||||
|
*.pyc
|
||||||
|
|
||||||
|
# Cake - Uncomment if you are using it
|
||||||
|
# tools/**
|
||||||
|
# !tools/packages.config
|
||||||
|
|
||||||
|
# Tabs Studio
|
||||||
|
*.tss
|
||||||
|
|
||||||
|
# Telerik's JustMock configuration file
|
||||||
|
*.jmconfig
|
||||||
|
|
||||||
|
# BizTalk build output
|
||||||
|
*.btp.cs
|
||||||
|
*.btm.cs
|
||||||
|
*.odx.cs
|
||||||
|
*.xsd.cs
|
||||||
|
|
||||||
|
# OpenCover UI analysis results
|
||||||
|
OpenCover/
|
||||||
|
|
||||||
|
# Azure Stream Analytics local run output
|
||||||
|
ASALocalRun/
|
||||||
|
|
||||||
|
# MSBuild Binary and Structured Log
|
||||||
|
*.binlog
|
||||||
|
|
||||||
|
# NVidia Nsight GPU debugger configuration file
|
||||||
|
*.nvuser
|
||||||
|
|
||||||
|
# MFractors (Xamarin productivity tool) working folder
|
||||||
|
.mfractor/
|
||||||
|
|
||||||
Powershell/Tools/temp.ps1
|
Powershell/Tools/temp.ps1
|
||||||
Powershell/Tools/temp.json
|
Powershell/Tools/temp.json
|
||||||
.vscode/settings.json
|
.vscode/settings.json
|
||||||
|
|||||||
334
ConsoleApps/.gitignore
vendored
334
ConsoleApps/.gitignore
vendored
@@ -1,334 +0,0 @@
|
|||||||
## Ignore Visual Studio temporary files, build results, and
|
|
||||||
## files generated by popular Visual Studio add-ons.
|
|
||||||
##
|
|
||||||
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
|
|
||||||
|
|
||||||
# Bicep output
|
|
||||||
Authorization.Deploy/authorization.json
|
|
||||||
|
|
||||||
# User-specific files
|
|
||||||
*.suo
|
|
||||||
*.user
|
|
||||||
*.userosscache
|
|
||||||
*.sln.docstates
|
|
||||||
|
|
||||||
# User-specific files (MonoDevelop/Xamarin Studio)
|
|
||||||
*.userprefs
|
|
||||||
|
|
||||||
# Build results
|
|
||||||
[Dd]ebug/
|
|
||||||
[Dd]ebugPublic/
|
|
||||||
[Rr]elease/
|
|
||||||
[Rr]eleases/
|
|
||||||
x64/
|
|
||||||
x86/
|
|
||||||
bld/
|
|
||||||
[Bb]in/
|
|
||||||
[Oo]bj/
|
|
||||||
[Ll]og/
|
|
||||||
|
|
||||||
# Visual Studio 2015/2017 cache/options directory
|
|
||||||
.vs/
|
|
||||||
# Uncomment if you have tasks that create the project's static files in wwwroot
|
|
||||||
#wwwroot/
|
|
||||||
|
|
||||||
# Visual Studio 2017 auto generated files
|
|
||||||
Generated\ Files/
|
|
||||||
|
|
||||||
# MSTest test Results
|
|
||||||
[Tt]est[Rr]esult*/
|
|
||||||
[Bb]uild[Ll]og.*
|
|
||||||
|
|
||||||
# NUNIT
|
|
||||||
*.VisualState.xml
|
|
||||||
TestResult.xml
|
|
||||||
|
|
||||||
# Build Results of an ATL Project
|
|
||||||
[Dd]ebugPS/
|
|
||||||
[Rr]eleasePS/
|
|
||||||
dlldata.c
|
|
||||||
|
|
||||||
# Benchmark Results
|
|
||||||
BenchmarkDotNet.Artifacts/
|
|
||||||
|
|
||||||
# .NET Core
|
|
||||||
project.lock.json
|
|
||||||
project.fragment.lock.json
|
|
||||||
artifacts/
|
|
||||||
#**/Properties/launchSettings.json
|
|
||||||
|
|
||||||
# StyleCop
|
|
||||||
StyleCopReport.xml
|
|
||||||
|
|
||||||
# Files built by Visual Studio
|
|
||||||
*_i.c
|
|
||||||
*_p.c
|
|
||||||
*_i.h
|
|
||||||
*.ilk
|
|
||||||
*.meta
|
|
||||||
*.obj
|
|
||||||
*.iobj
|
|
||||||
*.pch
|
|
||||||
*.pdb
|
|
||||||
*.ipdb
|
|
||||||
*.pgc
|
|
||||||
*.pgd
|
|
||||||
*.rsp
|
|
||||||
*.sbr
|
|
||||||
*.tlb
|
|
||||||
*.tli
|
|
||||||
*.tlh
|
|
||||||
*.tmp
|
|
||||||
*.tmp_proj
|
|
||||||
*.log
|
|
||||||
*.vspscc
|
|
||||||
*.vssscc
|
|
||||||
.builds
|
|
||||||
*.pidb
|
|
||||||
*.svclog
|
|
||||||
*.scc
|
|
||||||
|
|
||||||
# Chutzpah Test files
|
|
||||||
_Chutzpah*
|
|
||||||
|
|
||||||
# Visual C++ cache files
|
|
||||||
ipch/
|
|
||||||
*.aps
|
|
||||||
*.ncb
|
|
||||||
*.opendb
|
|
||||||
*.opensdf
|
|
||||||
*.sdf
|
|
||||||
*.cachefile
|
|
||||||
*.VC.db
|
|
||||||
*.VC.VC.opendb
|
|
||||||
|
|
||||||
# Visual Studio profiler
|
|
||||||
*.psess
|
|
||||||
*.vsp
|
|
||||||
*.vspx
|
|
||||||
*.sap
|
|
||||||
|
|
||||||
# Visual Studio Trace Files
|
|
||||||
*.e2e
|
|
||||||
|
|
||||||
# TFS 2012 Local Workspace
|
|
||||||
$tf/
|
|
||||||
|
|
||||||
# Guidance Automation Toolkit
|
|
||||||
*.gpState
|
|
||||||
|
|
||||||
# ReSharper is a .NET coding add-in
|
|
||||||
_ReSharper*/
|
|
||||||
*.[Rr]e[Ss]harper
|
|
||||||
*.DotSettings.user
|
|
||||||
|
|
||||||
# JustCode is a .NET coding add-in
|
|
||||||
.JustCode
|
|
||||||
|
|
||||||
# TeamCity is a build add-in
|
|
||||||
_TeamCity*
|
|
||||||
|
|
||||||
# DotCover is a Code Coverage Tool
|
|
||||||
*.dotCover
|
|
||||||
|
|
||||||
# AxoCover is a Code Coverage Tool
|
|
||||||
.axoCover/*
|
|
||||||
!.axoCover/settings.json
|
|
||||||
|
|
||||||
# Visual Studio code coverage results
|
|
||||||
*.coverage
|
|
||||||
*.coveragexml
|
|
||||||
|
|
||||||
# NCrunch
|
|
||||||
_NCrunch_*
|
|
||||||
.*crunch*.local.xml
|
|
||||||
nCrunchTemp_*
|
|
||||||
|
|
||||||
# MightyMoose
|
|
||||||
*.mm.*
|
|
||||||
AutoTest.Net/
|
|
||||||
|
|
||||||
# Web workbench (sass)
|
|
||||||
.sass-cache/
|
|
||||||
|
|
||||||
# Installshield output folder
|
|
||||||
[Ee]xpress/
|
|
||||||
|
|
||||||
# DocProject is a documentation generator add-in
|
|
||||||
DocProject/buildhelp/
|
|
||||||
DocProject/Help/*.HxT
|
|
||||||
DocProject/Help/*.HxC
|
|
||||||
DocProject/Help/*.hhc
|
|
||||||
DocProject/Help/*.hhk
|
|
||||||
DocProject/Help/*.hhp
|
|
||||||
DocProject/Help/Html2
|
|
||||||
DocProject/Help/html
|
|
||||||
|
|
||||||
# Click-Once directory
|
|
||||||
publish/
|
|
||||||
|
|
||||||
# Publish Web Output
|
|
||||||
*.[Pp]ublish.xml
|
|
||||||
*.azurePubxml
|
|
||||||
# Note: Comment the next line if you want to checkin your web deploy settings,
|
|
||||||
# but database connection strings (with potential passwords) will be unencrypted
|
|
||||||
*.pubxml
|
|
||||||
*.publishproj
|
|
||||||
|
|
||||||
# Microsoft Azure Web App publish settings. Comment the next line if you want to
|
|
||||||
# checkin your Azure Web App publish settings, but sensitive information contained
|
|
||||||
# in these scripts will be unencrypted
|
|
||||||
PublishScripts/
|
|
||||||
|
|
||||||
# NuGet Packages
|
|
||||||
*.nupkg
|
|
||||||
# The packages folder can be ignored because of Package Restore
|
|
||||||
**/[Pp]ackages/*
|
|
||||||
# except build/, which is used as an MSBuild target.
|
|
||||||
!**/[Pp]ackages/build/
|
|
||||||
# Uncomment if necessary however generally it will be regenerated when needed
|
|
||||||
#!**/[Pp]ackages/repositories.config
|
|
||||||
# NuGet v3's project.json files produces more ignorable files
|
|
||||||
*.nuget.props
|
|
||||||
*.nuget.targets
|
|
||||||
|
|
||||||
# Microsoft Azure Build Output
|
|
||||||
csx/
|
|
||||||
*.build.csdef
|
|
||||||
|
|
||||||
# Microsoft Azure Emulator
|
|
||||||
ecf/
|
|
||||||
rcf/
|
|
||||||
|
|
||||||
# Windows Store app package directories and files
|
|
||||||
AppPackages/
|
|
||||||
BundleArtifacts/
|
|
||||||
Package.StoreAssociation.xml
|
|
||||||
_pkginfo.txt
|
|
||||||
*.appx
|
|
||||||
|
|
||||||
# Visual Studio cache files
|
|
||||||
# files ending in .cache can be ignored
|
|
||||||
*.[Cc]ache
|
|
||||||
# but keep track of directories ending in .cache
|
|
||||||
!*.[Cc]ache/
|
|
||||||
|
|
||||||
# Others
|
|
||||||
ClientBin/
|
|
||||||
~$*
|
|
||||||
*~
|
|
||||||
*.dbmdl
|
|
||||||
*.dbproj.schemaview
|
|
||||||
*.jfm
|
|
||||||
*.pfx
|
|
||||||
*.publishsettings
|
|
||||||
orleans.codegen.cs
|
|
||||||
|
|
||||||
# Including strong name files can present a security risk
|
|
||||||
# (https://github.com/github/gitignore/pull/2483#issue-259490424)
|
|
||||||
#*.snk
|
|
||||||
|
|
||||||
# Since there are multiple workflows, uncomment next line to ignore bower_components
|
|
||||||
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
|
|
||||||
#bower_components/
|
|
||||||
|
|
||||||
# RIA/Silverlight projects
|
|
||||||
Generated_Code/
|
|
||||||
|
|
||||||
# Backup & report files from converting an old project file
|
|
||||||
# to a newer Visual Studio version. Backup files are not needed,
|
|
||||||
# because we have git ;-)
|
|
||||||
_UpgradeReport_Files/
|
|
||||||
Backup*/
|
|
||||||
UpgradeLog*.XML
|
|
||||||
UpgradeLog*.htm
|
|
||||||
ServiceFabricBackup/
|
|
||||||
*.rptproj.bak
|
|
||||||
|
|
||||||
# SQL Server files
|
|
||||||
*.mdf
|
|
||||||
*.ldf
|
|
||||||
*.ndf
|
|
||||||
|
|
||||||
# Business Intelligence projects
|
|
||||||
*.rdl.data
|
|
||||||
*.bim.layout
|
|
||||||
*.bim_*.settings
|
|
||||||
*.rptproj.rsuser
|
|
||||||
|
|
||||||
# Microsoft Fakes
|
|
||||||
FakesAssemblies/
|
|
||||||
|
|
||||||
# GhostDoc plugin setting file
|
|
||||||
*.GhostDoc.xml
|
|
||||||
|
|
||||||
# Node.js Tools for Visual Studio
|
|
||||||
.ntvs_analysis.dat
|
|
||||||
node_modules/
|
|
||||||
|
|
||||||
# Visual Studio 6 build log
|
|
||||||
*.plg
|
|
||||||
|
|
||||||
# Visual Studio 6 workspace options file
|
|
||||||
*.opt
|
|
||||||
|
|
||||||
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
|
|
||||||
*.vbw
|
|
||||||
|
|
||||||
# Visual Studio LightSwitch build output
|
|
||||||
**/*.HTMLClient/GeneratedArtifacts
|
|
||||||
**/*.DesktopClient/GeneratedArtifacts
|
|
||||||
**/*.DesktopClient/ModelManifest.xml
|
|
||||||
**/*.Server/GeneratedArtifacts
|
|
||||||
**/*.Server/ModelManifest.xml
|
|
||||||
_Pvt_Extensions
|
|
||||||
|
|
||||||
# Paket dependency manager
|
|
||||||
.paket/paket.exe
|
|
||||||
paket-files/
|
|
||||||
|
|
||||||
# FAKE - F# Make
|
|
||||||
.fake/
|
|
||||||
|
|
||||||
# JetBrains Rider
|
|
||||||
.idea/
|
|
||||||
*.sln.iml
|
|
||||||
|
|
||||||
# CodeRush
|
|
||||||
.cr/
|
|
||||||
|
|
||||||
# Python Tools for Visual Studio (PTVS)
|
|
||||||
__pycache__/
|
|
||||||
*.pyc
|
|
||||||
|
|
||||||
# Cake - Uncomment if you are using it
|
|
||||||
# tools/**
|
|
||||||
# !tools/packages.config
|
|
||||||
|
|
||||||
# Tabs Studio
|
|
||||||
*.tss
|
|
||||||
|
|
||||||
# Telerik's JustMock configuration file
|
|
||||||
*.jmconfig
|
|
||||||
|
|
||||||
# BizTalk build output
|
|
||||||
*.btp.cs
|
|
||||||
*.btm.cs
|
|
||||||
*.odx.cs
|
|
||||||
*.xsd.cs
|
|
||||||
|
|
||||||
# OpenCover UI analysis results
|
|
||||||
OpenCover/
|
|
||||||
|
|
||||||
# Azure Stream Analytics local run output
|
|
||||||
ASALocalRun/
|
|
||||||
|
|
||||||
# MSBuild Binary and Structured Log
|
|
||||||
*.binlog
|
|
||||||
|
|
||||||
# NVidia Nsight GPU debugger configuration file
|
|
||||||
*.nvuser
|
|
||||||
|
|
||||||
# MFractors (Xamarin productivity tool) working folder
|
|
||||||
.mfractor/
|
|
||||||
|
|
||||||
@@ -2,20 +2,20 @@
|
|||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFramework>net6.0</TargetFramework>
|
<TargetFramework>net8.0</TargetFramework>
|
||||||
<ImplicitUsings>enable</ImplicitUsings>
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Azure.Identity" Version="1.6.0" />
|
<PackageReference Include="Azure.Identity" Version="1.17.0" />
|
||||||
<PackageReference Include="Azure.Security.KeyVault.Secrets" Version="4.3.0" />
|
<PackageReference Include="Azure.Security.KeyVault.Secrets" Version="4.8.0" />
|
||||||
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="6.0.0" />
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.1" />
|
||||||
<PackageReference Include="Microsoft.Extensions.Hosting" Version="6.0.1" />
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.1" />
|
||||||
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="6.0.0" />
|
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="8.0.1" />
|
||||||
<PackageReference Include="Microsoft.Extensions.Http" Version="6.0.0" />
|
<PackageReference Include="Microsoft.Extensions.Http" Version="8.0.1" />
|
||||||
<PackageReference Include="Microsoft.IdentityModel.Clients.ActiveDirectory" Version="5.2.9" />
|
<PackageReference Include="Microsoft.Identity.Client" Version="4.78.0" />
|
||||||
<PackageReference Include="Spectre.Console" Version="0.44.0" />
|
<PackageReference Include="Spectre.Console" Version="0.53.0" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
namespace AzureRestApi.Models.Api
|
namespace AzureRestApi.Models.Api;
|
||||||
|
|
||||||
|
public class ApiResponse<T>
|
||||||
{
|
{
|
||||||
public class ApiResponse<T>
|
public List<T>? value { get; set; }
|
||||||
{
|
|
||||||
public List<T>? value { get; set; }
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -1,9 +1,8 @@
|
|||||||
using AzureRestApi.Models.Resources;
|
using AzureRestApi.Models.Resources;
|
||||||
|
|
||||||
namespace AzureRestApi.Models.Api
|
namespace AzureRestApi.Models.Api;
|
||||||
|
|
||||||
|
public class TagProperties
|
||||||
{
|
{
|
||||||
public class TagProperties
|
public TagTags properties { get; set; } = new TagTags();
|
||||||
{
|
|
||||||
public TagTags properties { get; set; } = new TagTags();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -1,11 +1,10 @@
|
|||||||
namespace AzureRestApi.Models.Resources
|
namespace AzureRestApi.Models.Resources;
|
||||||
|
|
||||||
|
public class Deployment
|
||||||
{
|
{
|
||||||
public class Deployment
|
public string? id { get; set; }
|
||||||
{
|
public string? name { get; set; }
|
||||||
public string? id { get; set; }
|
public string? type { get; set; }
|
||||||
public string? name { get; set; }
|
public string? location { get; set; }
|
||||||
public string? type { get; set; }
|
public DeploymentProperties? properties { get; set; }
|
||||||
public string? location { get; set; }
|
|
||||||
public DeploymentProperties? properties { get; set; }
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -1,17 +1,16 @@
|
|||||||
namespace AzureRestApi.Models.Resources
|
namespace AzureRestApi.Models.Resources;
|
||||||
|
|
||||||
|
public class DeploymentProperties
|
||||||
{
|
{
|
||||||
public class DeploymentProperties
|
public string? templateHash { get; set; }
|
||||||
{
|
public string? mode { get; set; }
|
||||||
public string? templateHash { get; set; }
|
//public string? parameters { get; set; }
|
||||||
public string? mode { get; set; }
|
public string? provisioningState { get; set; }
|
||||||
//public string? parameters { get; set; }
|
public DateTimeOffset? timestamp { get; set; }
|
||||||
public string? provisioningState { get; set; }
|
public string? duration { get; set; }
|
||||||
public DateTimeOffset? timestamp { get; set; }
|
public string? correlationId { get; set; }
|
||||||
public string? duration { get; set; }
|
// public string? providers { get; set; }
|
||||||
public string? correlationId { get; set; }
|
//public string? dependencies { get; set; }
|
||||||
// public string? providers { get; set; }
|
//public string? outputs { get; set; }
|
||||||
//public string? dependencies { get; set; }
|
public List<Resource>? outputResources { get; set; }
|
||||||
//public string? outputs { get; set; }
|
|
||||||
public List<Resource>? outputResources { get; set; }
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -1,27 +1,26 @@
|
|||||||
namespace AzureRestApi.Models.Resources
|
namespace AzureRestApi.Models.Resources;
|
||||||
{
|
|
||||||
public class Resource
|
|
||||||
{
|
|
||||||
public string? id { get; set; }
|
|
||||||
public string? name { get; set; }
|
|
||||||
public string? type { get; set; }
|
|
||||||
public string? location { get; set; }
|
|
||||||
public string? createdTime { get; set; }
|
|
||||||
public string? changedTime { get; set; }
|
|
||||||
public Dictionary<string, string> tags { get; set; } = new Dictionary<string, string>();
|
|
||||||
|
|
||||||
public string? CreatedOn
|
public class Resource
|
||||||
|
{
|
||||||
|
public string? id { get; set; }
|
||||||
|
public string? name { get; set; }
|
||||||
|
public string? type { get; set; }
|
||||||
|
public string? location { get; set; }
|
||||||
|
public string? createdTime { get; set; }
|
||||||
|
public string? changedTime { get; set; }
|
||||||
|
public Dictionary<string, string> tags { get; set; } = new Dictionary<string, string>();
|
||||||
|
|
||||||
|
public string? CreatedOn
|
||||||
|
{
|
||||||
|
get
|
||||||
{
|
{
|
||||||
get
|
if (string.IsNullOrWhiteSpace(createdTime))
|
||||||
{
|
{
|
||||||
if (string.IsNullOrWhiteSpace(createdTime))
|
return changedTime;
|
||||||
{
|
}
|
||||||
return changedTime;
|
else
|
||||||
}
|
{
|
||||||
else
|
return createdTime;
|
||||||
{
|
|
||||||
return createdTime;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,12 +1,11 @@
|
|||||||
namespace AzureRestApi.Models.Resources
|
namespace AzureRestApi.Models.Resources;
|
||||||
|
|
||||||
|
public class ResourceGroup
|
||||||
{
|
{
|
||||||
public class ResourceGroup
|
public string? id { get; set; }
|
||||||
{
|
public string? name { get; set; }
|
||||||
public string? id { get; set; }
|
public string? managedBy { get; set; }
|
||||||
public string? name { get; set; }
|
public string? location { get; set; }
|
||||||
public string? managedBy { get; set; }
|
public Dictionary<string, string> tags { get; set; } = new Dictionary<string, string>();
|
||||||
public string? location { get; set; }
|
public DeploymentProperties? properties { get; set; }
|
||||||
public Dictionary<string, string> tags { get; set; } = new Dictionary<string, string>();
|
|
||||||
public DeploymentProperties? properties { get; set; }
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -1,7 +1,6 @@
|
|||||||
namespace AzureRestApi.Models.Resources
|
namespace AzureRestApi.Models.Resources;
|
||||||
|
|
||||||
|
public class ResourceGroupProperties
|
||||||
{
|
{
|
||||||
public class ResourceGroupProperties
|
public string? provisioningState { get; set; }
|
||||||
{
|
|
||||||
public string? provisioningState { get; set; }
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -1,20 +1,19 @@
|
|||||||
namespace AzureRestApi.Models.Resources
|
namespace AzureRestApi.Models.Resources;
|
||||||
{
|
|
||||||
public class Subscription
|
|
||||||
{
|
|
||||||
public string? id { get; set; }
|
|
||||||
public string? authorizationSource { get; set; }
|
|
||||||
public string? subscriptionId { get; set; }
|
|
||||||
public string? tenantId { get; set; }
|
|
||||||
public string? displayName { get; set; }
|
|
||||||
public string? state { get; set; }
|
|
||||||
|
|
||||||
public bool Enabled
|
public class Subscription
|
||||||
|
{
|
||||||
|
public string? id { get; set; }
|
||||||
|
public string? authorizationSource { get; set; }
|
||||||
|
public string? subscriptionId { get; set; }
|
||||||
|
public string? tenantId { get; set; }
|
||||||
|
public string? displayName { get; set; }
|
||||||
|
public string? state { get; set; }
|
||||||
|
|
||||||
|
public bool Enabled
|
||||||
|
{
|
||||||
|
get
|
||||||
{
|
{
|
||||||
get
|
return state == "Enabled";
|
||||||
{
|
|
||||||
return state == "Enabled";
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,7 +1,6 @@
|
|||||||
namespace AzureRestApi.Models.Resources
|
namespace AzureRestApi.Models.Resources;
|
||||||
|
|
||||||
|
public class TagTags
|
||||||
{
|
{
|
||||||
public class TagTags
|
public Dictionary<string, string> tags { get; set; } = new Dictionary<string, string>();
|
||||||
{
|
|
||||||
public Dictionary<string, string> tags { get; set; } = new Dictionary<string, string>();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -1,8 +1,7 @@
|
|||||||
namespace AzureRestApi.Models
|
namespace AzureRestApi.Models;
|
||||||
|
|
||||||
|
public class Settings
|
||||||
{
|
{
|
||||||
public class Settings
|
public string KeyVaultName { get; set; } = string.Empty;
|
||||||
{
|
public string AzureTenantId { get; set; } = string.Empty;
|
||||||
public string KeyVaultName { get; set; } = string.Empty;
|
|
||||||
public string AzureTenantId { get; set; } = string.Empty;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -5,37 +5,36 @@ using Microsoft.Extensions.Configuration;
|
|||||||
using Microsoft.Extensions.DependencyInjection;
|
using Microsoft.Extensions.DependencyInjection;
|
||||||
using Microsoft.Extensions.Hosting;
|
using Microsoft.Extensions.Hosting;
|
||||||
|
|
||||||
namespace AzureRestApi
|
namespace AzureRestApi;
|
||||||
|
|
||||||
|
class Program
|
||||||
{
|
{
|
||||||
class Program
|
static Task Main(string[] args) =>
|
||||||
{
|
CreateHostBuilder(args).Build().RunAsync();
|
||||||
static Task Main(string[] args) =>
|
|
||||||
CreateHostBuilder(args).Build().RunAsync();
|
|
||||||
|
|
||||||
static IHostBuilder CreateHostBuilder(string[] args) =>
|
static IHostBuilder CreateHostBuilder(string[] args) =>
|
||||||
Host.CreateDefaultBuilder(args)
|
Host.CreateDefaultBuilder(args)
|
||||||
.ConfigureServices((builder, services) =>
|
.ConfigureServices((_, services) =>
|
||||||
{
|
{
|
||||||
IConfiguration config = new ConfigurationBuilder()
|
IConfiguration config = new ConfigurationBuilder()
|
||||||
.AddJsonFile("appsettings.json")
|
.AddJsonFile("appsettings.json")
|
||||||
.AddEnvironmentVariables()
|
.AddEnvironmentVariables()
|
||||||
.Build();
|
.Build();
|
||||||
|
|
||||||
Settings settings = config.GetRequiredSection("Settings").Get<Settings>();
|
Settings settings = config.GetRequiredSection("Settings").Get<Settings>();
|
||||||
|
|
||||||
services.AddSingleton<AccessTokenRepository>();
|
services.AddSingleton<AccessTokenRepository>();
|
||||||
services.AddSingleton(settings);
|
services.AddSingleton(settings);
|
||||||
|
|
||||||
services.AddHttpClient<AzureSubscriptionRepository>();
|
services.AddHttpClient<AzureSubscriptionRepository>();
|
||||||
services.AddHttpClient<AzureDeploymentRepository>();
|
services.AddHttpClient<AzureDeploymentRepository>();
|
||||||
services.AddHttpClient<AzureResourceRepository>();
|
services.AddHttpClient<AzureResourceRepository>();
|
||||||
services.AddHttpClient<AzureTagRepository>();
|
services.AddHttpClient<AzureTagRepository>();
|
||||||
services.AddHttpClient<AzureResourceGroupRepository>();
|
services.AddHttpClient<AzureResourceGroupRepository>();
|
||||||
|
|
||||||
services.AddScoped<CreatedOnDateService>();
|
services.AddScoped<CreatedOnDateService>();
|
||||||
services.AddScoped<DeploymentTypeService>();
|
services.AddScoped<DeploymentTypeService>();
|
||||||
|
|
||||||
services.AddHostedService<OptionService>();
|
services.AddHostedService<OptionService>();
|
||||||
} );
|
});
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -1,40 +1,40 @@
|
|||||||
using Azure.Identity;
|
using Azure.Identity;
|
||||||
using Azure.Security.KeyVault.Secrets;
|
using Azure.Security.KeyVault.Secrets;
|
||||||
using AzureRestApi.Models;
|
using AzureRestApi.Models;
|
||||||
using Microsoft.IdentityModel.Clients.ActiveDirectory;
|
using Microsoft.Identity.Client;
|
||||||
|
|
||||||
namespace AzureRestApi.Repositories
|
namespace AzureRestApi.Repositories;
|
||||||
|
|
||||||
|
public class AccessTokenRepository(Settings settings)
|
||||||
{
|
{
|
||||||
public class AccessTokenRepository
|
private string? _accessToken;
|
||||||
|
|
||||||
|
public async Task<string> GetAccessToken()
|
||||||
{
|
{
|
||||||
private readonly Settings _settings;
|
if (!string.IsNullOrWhiteSpace(_accessToken)) return _accessToken;
|
||||||
private string? _accessToken;
|
|
||||||
|
|
||||||
public AccessTokenRepository(Settings settings)
|
var keyVaultUri = "https://" + settings.KeyVaultName + ".vault.azure.net";
|
||||||
|
var credential = new DefaultAzureCredential();
|
||||||
|
var client = new SecretClient(new Uri(keyVaultUri), credential);
|
||||||
|
var clientId = (await client.GetSecretAsync("ClientID")).Value.Value;
|
||||||
|
var clientSecret = (await client.GetSecretAsync("ClientSecret")).Value.Value;
|
||||||
|
|
||||||
|
var app = ConfidentialClientApplicationBuilder
|
||||||
|
.Create(clientId)
|
||||||
|
.WithClientSecret(clientSecret)
|
||||||
|
.WithAuthority(new Uri($"https://login.microsoftonline.com/{settings.AzureTenantId}"))
|
||||||
|
.Build();
|
||||||
|
|
||||||
|
var scopes = new[] {"https://management.azure.com/.default"};
|
||||||
|
|
||||||
|
var result = await app.AcquireTokenForClient(scopes).ExecuteAsync();
|
||||||
|
if (result == null)
|
||||||
{
|
{
|
||||||
_settings = settings;
|
throw new InvalidOperationException("Failed to obtain the Access token");
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<string> GetAccessToken()
|
_accessToken = result.AccessToken;
|
||||||
{
|
|
||||||
if (!string.IsNullOrWhiteSpace(_accessToken)) return _accessToken;
|
|
||||||
|
|
||||||
var keyvaultUri = "https://" + _settings.KeyVaultName + ".vault.azure.net";
|
return _accessToken;
|
||||||
var credential = new DefaultAzureCredential();
|
|
||||||
var client = new SecretClient(new Uri(keyvaultUri), credential);
|
|
||||||
var clientId = (await client.GetSecretAsync("ClientID")).Value.Value;
|
|
||||||
var clientSecret = (await client.GetSecretAsync("ClientSecret")).Value.Value;
|
|
||||||
|
|
||||||
ClientCredential cc = new(clientId, clientSecret);
|
|
||||||
var context = new AuthenticationContext("https://login.microsoftonline.com/" + _settings.AzureTenantId);
|
|
||||||
var result = context.AcquireTokenAsync("https://management.azure.com/", cc);
|
|
||||||
if (result == null)
|
|
||||||
{
|
|
||||||
throw new InvalidOperationException("Failed to obtain the Access token");
|
|
||||||
}
|
|
||||||
_accessToken = result.Result.AccessToken;
|
|
||||||
|
|
||||||
return _accessToken;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -2,43 +2,33 @@
|
|||||||
using System.Net.Http.Headers;
|
using System.Net.Http.Headers;
|
||||||
using System.Text.Json;
|
using System.Text.Json;
|
||||||
|
|
||||||
namespace AzureRestApi.Repositories
|
namespace AzureRestApi.Repositories;
|
||||||
|
|
||||||
|
public abstract class AzureBaseRepository<T>(HttpClient httpClient, AccessTokenRepository accessTokenRepository)
|
||||||
{
|
{
|
||||||
public abstract class AzureBaseRepository<T>
|
protected async Task<List<T>> GetAllByUri(Uri uri)
|
||||||
{
|
{
|
||||||
private readonly HttpClient _httpClient;
|
var accessToken = await accessTokenRepository.GetAccessToken();
|
||||||
private readonly AccessTokenRepository _accessTokenRepository;
|
|
||||||
|
|
||||||
public AzureBaseRepository(HttpClient httpClient, AccessTokenRepository accessTokenRepository)
|
HttpRequestMessage request = new(HttpMethod.Get, uri);
|
||||||
|
request.Headers.Accept.Clear();
|
||||||
|
request.Headers.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
|
||||||
|
request.Headers.Authorization = new AuthenticationHeaderValue("Bearer", accessToken);
|
||||||
|
|
||||||
|
var response = await httpClient.SendAsync(request).ConfigureAwait(false);
|
||||||
|
|
||||||
|
try
|
||||||
{
|
{
|
||||||
_httpClient = httpClient;
|
response.EnsureSuccessStatusCode();
|
||||||
_accessTokenRepository = accessTokenRepository;
|
|
||||||
|
var responseString = await response.Content.ReadAsStringAsync().ConfigureAwait(false);
|
||||||
|
var result = JsonSerializer.Deserialize<ApiResponse<T>>(responseString)?.value;
|
||||||
|
return result ?? [];
|
||||||
|
|
||||||
}
|
}
|
||||||
|
catch
|
||||||
protected async Task<List<T>> GetAllByUri(Uri uri)
|
|
||||||
{
|
{
|
||||||
var accessToken = await _accessTokenRepository.GetAccessToken();
|
return [];
|
||||||
|
|
||||||
HttpRequestMessage request = new(HttpMethod.Get, uri);
|
|
||||||
request.Headers.Accept.Clear();
|
|
||||||
request.Headers.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
|
|
||||||
request.Headers.Authorization = new AuthenticationHeaderValue("Bearer", accessToken);
|
|
||||||
|
|
||||||
var response = await _httpClient.SendAsync(request).ConfigureAwait(false);
|
|
||||||
|
|
||||||
try
|
|
||||||
{
|
|
||||||
response.EnsureSuccessStatusCode();
|
|
||||||
|
|
||||||
var responseString = await response.Content.ReadAsStringAsync().ConfigureAwait(false);
|
|
||||||
var result = JsonSerializer.Deserialize<ApiResponse<T>>(responseString)?.value;
|
|
||||||
return result ?? new List<T>();
|
|
||||||
|
|
||||||
}
|
|
||||||
catch
|
|
||||||
{
|
|
||||||
return new List<T>();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,25 +1,20 @@
|
|||||||
using AzureRestApi.Models.Resources;
|
using AzureRestApi.Models.Resources;
|
||||||
|
|
||||||
namespace AzureRestApi.Repositories
|
namespace AzureRestApi.Repositories;
|
||||||
|
|
||||||
|
public class AzureDeploymentRepository(HttpClient httpClient, AccessTokenRepository accessTokenRepository)
|
||||||
|
: AzureBaseRepository<Deployment>(httpClient, accessTokenRepository)
|
||||||
{
|
{
|
||||||
public class AzureDeploymentRepository : AzureBaseRepository<Deployment>
|
public async Task<List<Deployment>> GetAllBySubscription(string subscriptionId)
|
||||||
{
|
{
|
||||||
public AzureDeploymentRepository(HttpClient httpClient, AccessTokenRepository accessTokenRepository) : base(httpClient, accessTokenRepository)
|
// GET https://management.azure.com/subscriptions/{subscriptionId}/providers/Microsoft.Resources/deployments/?api-version=2021-04-01
|
||||||
{
|
var uri = new Uri($"https://management.azure.com/subscriptions/{subscriptionId}/providers/Microsoft.Resources/deployments/?api-version=2021-04-01");
|
||||||
}
|
return await GetAllByUri(uri);
|
||||||
|
}
|
||||||
public async Task<List<Deployment>> GetAllBySubscription(string subscriptionId)
|
public async Task<List<Deployment>> GetAllByResourceGroup(string subscriptionId, string resourceGroupName)
|
||||||
{
|
{
|
||||||
// GET https://management.azure.com/subscriptions/{subscriptionId}/providers/Microsoft.Resources/deployments/?api-version=2021-04-01
|
// GET https://management.azure.com/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.Resources/deployments/?api-version=2021-04-01
|
||||||
var uri = new Uri($"https://management.azure.com/subscriptions/{subscriptionId}/providers/Microsoft.Resources/deployments/?api-version=2021-04-01");
|
var uri = new Uri($"https://management.azure.com/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.Resources/deployments/?api-version=2021-04-01");
|
||||||
return await GetAllByUri(uri);
|
return await GetAllByUri(uri);
|
||||||
}
|
|
||||||
public async Task<List<Deployment>> GetAllByResourceGroup(string subscriptionId, string resourceGroupName)
|
|
||||||
{
|
|
||||||
// GET https://management.azure.com/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.Resources/deployments/?api-version=2021-04-01
|
|
||||||
var uri = new Uri($"https://management.azure.com/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.Resources/deployments/?api-version=2021-04-01");
|
|
||||||
return await GetAllByUri(uri);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,18 +1,14 @@
|
|||||||
using AzureRestApi.Models.Resources;
|
using AzureRestApi.Models.Resources;
|
||||||
|
|
||||||
namespace AzureRestApi.Repositories
|
namespace AzureRestApi.Repositories;
|
||||||
{
|
|
||||||
public class AzureResourceGroupRepository : AzureBaseRepository<ResourceGroup>
|
|
||||||
{
|
|
||||||
public AzureResourceGroupRepository(HttpClient httpClient, AccessTokenRepository accessTokenRepository) : base(httpClient, accessTokenRepository)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
public async Task<List<ResourceGroup>> GetAll(string subscriptionId)
|
public class AzureResourceGroupRepository(HttpClient httpClient, AccessTokenRepository accessTokenRepository)
|
||||||
{
|
: AzureBaseRepository<ResourceGroup>(httpClient, accessTokenRepository)
|
||||||
// GET https://management.azure.com/subscriptions/{subscriptionId}/resourcegroups?api-version=2021-04-01
|
{
|
||||||
var uri = new Uri($"https://management.azure.com/subscriptions/{subscriptionId}/resourcegroups?api-version=2021-04-01");
|
public async Task<List<ResourceGroup>> GetAll(string subscriptionId)
|
||||||
return await GetAllByUri(uri);
|
{
|
||||||
}
|
// GET https://management.azure.com/subscriptions/{subscriptionId}/resourcegroups?api-version=2021-04-01
|
||||||
|
var uri = new Uri($"https://management.azure.com/subscriptions/{subscriptionId}/resourcegroups?api-version=2021-04-01");
|
||||||
|
return await GetAllByUri(uri);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,21 +1,14 @@
|
|||||||
using AzureRestApi.Models.Api;
|
using AzureRestApi.Models.Resources;
|
||||||
using AzureRestApi.Models.Resources;
|
|
||||||
using System.Net.Http.Headers;
|
|
||||||
using System.Text.Json;
|
|
||||||
|
|
||||||
namespace AzureRestApi.Repositories
|
namespace AzureRestApi.Repositories;
|
||||||
|
|
||||||
|
public class AzureResourceRepository(HttpClient httpClient, AccessTokenRepository accessTokenRepository)
|
||||||
|
: AzureBaseRepository<Resource>(httpClient, accessTokenRepository)
|
||||||
{
|
{
|
||||||
public class AzureResourceRepository : AzureBaseRepository<Resource>
|
public async Task<List<Resource>> GetAll(string subscriptionId)
|
||||||
{
|
{
|
||||||
public AzureResourceRepository(HttpClient httpClient, AccessTokenRepository accessTokenRepository) : base(httpClient, accessTokenRepository)
|
// GET https://management.azure.com/subscriptions/{subscriptionId}/resources?$filter={$filter}&$expand={$expand}&$top={$top}&api-version=2021-04-01
|
||||||
{
|
var uri = new Uri($"https://management.azure.com/subscriptions/{subscriptionId}/resources?$expand=createdTime,changedTime&api-version=2021-04-01");
|
||||||
}
|
return await GetAllByUri(uri);
|
||||||
|
|
||||||
public async Task<List<Resource>> GetAll(string subscriptionId)
|
|
||||||
{
|
|
||||||
// GET https://management.azure.com/subscriptions/{subscriptionId}/resources?$filter={$filter}&$expand={$expand}&$top={$top}&api-version=2021-04-01
|
|
||||||
var uri = new Uri($"https://management.azure.com/subscriptions/{subscriptionId}/resources?$expand=createdTime,changedTime&api-version=2021-04-01");
|
|
||||||
return await GetAllByUri(uri);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -3,37 +3,26 @@ using AzureRestApi.Models.Resources;
|
|||||||
using System.Net.Http.Headers;
|
using System.Net.Http.Headers;
|
||||||
using System.Text.Json;
|
using System.Text.Json;
|
||||||
|
|
||||||
namespace AzureRestApi.Repositories
|
namespace AzureRestApi.Repositories;
|
||||||
|
|
||||||
|
public class AzureSubscriptionRepository(HttpClient httpClient, AccessTokenRepository accessTokenRepository)
|
||||||
{
|
{
|
||||||
public class AzureSubscriptionRepository
|
public async Task<List<Subscription>?> GetAll()
|
||||||
{
|
{
|
||||||
private readonly HttpClient _httpClient;
|
// GET https://management.azure.com/subscriptions?api-version=2020-01-01
|
||||||
private readonly AccessTokenRepository _accessTokenRepository;
|
var accessToken = await accessTokenRepository.GetAccessToken();
|
||||||
|
var uri = new Uri("https://management.azure.com/subscriptions?api-version=2020-01-01");
|
||||||
|
|
||||||
public AzureSubscriptionRepository(HttpClient httpClient, AccessTokenRepository accessTokenRepository)
|
HttpRequestMessage request = new(HttpMethod.Get, uri);
|
||||||
{
|
request.Headers.Accept.Clear();
|
||||||
_httpClient = httpClient;
|
request.Headers.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
|
||||||
_accessTokenRepository = accessTokenRepository;
|
request.Headers.Authorization = new AuthenticationHeaderValue("Bearer", accessToken);
|
||||||
}
|
|
||||||
|
|
||||||
public async Task<List<Subscription>?> GetAll()
|
var response = await httpClient.SendAsync(request).ConfigureAwait(false);
|
||||||
{
|
response.EnsureSuccessStatusCode();
|
||||||
// GET https://management.azure.com/subscriptions?api-version=2020-01-01
|
|
||||||
|
|
||||||
var accessToken = await _accessTokenRepository.GetAccessToken();
|
var responseString = await response.Content.ReadAsStringAsync().ConfigureAwait(false);
|
||||||
var uri = new Uri("https://management.azure.com/subscriptions?api-version=2020-01-01");
|
|
||||||
|
|
||||||
HttpRequestMessage request = new(HttpMethod.Get, uri);
|
return JsonSerializer.Deserialize< ApiResponse<Subscription>>(responseString)?.value;
|
||||||
request.Headers.Accept.Clear();
|
|
||||||
request.Headers.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
|
|
||||||
request.Headers.Authorization = new AuthenticationHeaderValue("Bearer", accessToken);
|
|
||||||
|
|
||||||
var response = await _httpClient.SendAsync(request).ConfigureAwait(false);
|
|
||||||
response.EnsureSuccessStatusCode();
|
|
||||||
|
|
||||||
var responseString = await response.Content.ReadAsStringAsync().ConfigureAwait(false);
|
|
||||||
|
|
||||||
return JsonSerializer.Deserialize< ApiResponse<Subscription>>(responseString)?.value;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -4,50 +4,38 @@ using System.Net.Http.Headers;
|
|||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Text.Json;
|
using System.Text.Json;
|
||||||
|
|
||||||
namespace AzureRestApi.Repositories
|
namespace AzureRestApi.Repositories;
|
||||||
|
|
||||||
|
public class AzureTagRepository(HttpClient httpClient, AccessTokenRepository accessTokenRepository)
|
||||||
{
|
{
|
||||||
public class AzureTagRepository
|
public async Task<bool> SetTag(string scope, string name, string value)
|
||||||
{
|
{
|
||||||
private readonly HttpClient _httpClient;
|
// PUT https://management.azure.com/{scope}/providers/Microsoft.Resources/tags/default?api-version=2021-04-01
|
||||||
private readonly AccessTokenRepository _accessTokenRepository;
|
var result = true;
|
||||||
private readonly ILogger<AzureTagRepository> _logger;
|
var accessToken = await accessTokenRepository.GetAccessToken();
|
||||||
|
var uri = new Uri("https://management.azure.com/" + scope + "/providers/Microsoft.Resources/tags/default?api-version=2021-04-01");
|
||||||
|
|
||||||
public AzureTagRepository(HttpClient httpClient, AccessTokenRepository accessTokenRepository, ILogger<AzureTagRepository> logger)
|
var tagProperties = new TagProperties();
|
||||||
|
tagProperties.properties.tags.Add(name, value);
|
||||||
|
var body = JsonSerializer.Serialize(tagProperties);
|
||||||
|
|
||||||
|
HttpRequestMessage request = new(HttpMethod.Put, uri);
|
||||||
|
request.Headers.Accept.Clear();
|
||||||
|
request.Headers.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
|
||||||
|
request.Headers.Authorization = new AuthenticationHeaderValue("Bearer", accessToken);
|
||||||
|
request.Content = new StringContent(body, Encoding.UTF8, "application/json");
|
||||||
|
|
||||||
|
var response = await httpClient.SendAsync(request).ConfigureAwait(false);
|
||||||
|
try
|
||||||
{
|
{
|
||||||
_httpClient = httpClient;
|
response.EnsureSuccessStatusCode();
|
||||||
_accessTokenRepository = accessTokenRepository;
|
await response.Content.ReadAsStringAsync().ConfigureAwait(false);
|
||||||
_logger = logger;
|
}
|
||||||
|
catch
|
||||||
|
{
|
||||||
|
result = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<bool> SetTag(string scope, string name, string value)
|
return result;
|
||||||
{
|
|
||||||
// PUT https://management.azure.com/{scope}/providers/Microsoft.Resources/tags/default?api-version=2021-04-01
|
|
||||||
var result = true;
|
|
||||||
var accessToken = await _accessTokenRepository.GetAccessToken();
|
|
||||||
var uri = new Uri("https://management.azure.com/" + scope + "/providers/Microsoft.Resources/tags/default?api-version=2021-04-01");
|
|
||||||
|
|
||||||
var tagProperties = new TagProperties();
|
|
||||||
tagProperties.properties.tags.Add(name, value);
|
|
||||||
var body = JsonSerializer.Serialize(tagProperties);
|
|
||||||
|
|
||||||
HttpRequestMessage request = new(HttpMethod.Put, uri);
|
|
||||||
request.Headers.Accept.Clear();
|
|
||||||
request.Headers.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
|
|
||||||
request.Headers.Authorization = new AuthenticationHeaderValue("Bearer", accessToken);
|
|
||||||
request.Content = new StringContent(body, Encoding.UTF8, "application/json");
|
|
||||||
|
|
||||||
var response = await _httpClient.SendAsync(request).ConfigureAwait(false);
|
|
||||||
try
|
|
||||||
{
|
|
||||||
response.EnsureSuccessStatusCode();
|
|
||||||
await response.Content.ReadAsStringAsync().ConfigureAwait(false);
|
|
||||||
}
|
|
||||||
catch
|
|
||||||
{
|
|
||||||
result = false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,65 +1,61 @@
|
|||||||
using AzureRestApi.Repositories;
|
using AzureRestApi.Repositories;
|
||||||
using Spectre.Console;
|
using Spectre.Console;
|
||||||
|
|
||||||
namespace AzureRestApi.Services
|
namespace AzureRestApi.Services;
|
||||||
|
|
||||||
|
public class CreatedOnDateService(
|
||||||
|
AzureSubscriptionRepository azureSubscriptionRepository,
|
||||||
|
AzureResourceRepository azureResourceRepository,
|
||||||
|
AzureTagRepository azureTagRepository)
|
||||||
{
|
{
|
||||||
public class CreatedOnDateService
|
private const string TagName = "CreatedOnDate";
|
||||||
|
|
||||||
|
public async Task SetCreatedOnDateTags(bool skipDone = true)
|
||||||
{
|
{
|
||||||
private const string TagName = "CreatedOnDate";
|
var rule = new Rule("[skyblue1]Setting CreatedOnDateTags[/]")
|
||||||
private readonly AzureSubscriptionRepository _azureSubscriptionRepository;
|
|
||||||
private readonly AzureResourceRepository _azureResourceRepository;
|
|
||||||
private readonly AzureTagRepository _azureTagRepository;
|
|
||||||
|
|
||||||
public CreatedOnDateService(AzureSubscriptionRepository azureSubscriptionRepository, AzureResourceRepository azureResourceRepository, AzureTagRepository azureTagRepository)
|
|
||||||
{
|
{
|
||||||
_azureSubscriptionRepository = azureSubscriptionRepository;
|
Justification = Justify.Left,
|
||||||
_azureResourceRepository = azureResourceRepository;
|
Style = Style.Parse("skyblue1")
|
||||||
_azureTagRepository = azureTagRepository;
|
};
|
||||||
}
|
AnsiConsole.Write(rule);
|
||||||
|
|
||||||
public async Task SetCreatedOnDateTags(bool skipDone = true)
|
await AnsiConsole.Status()
|
||||||
{
|
.AutoRefresh(true)
|
||||||
var rule = new Rule("[skyblue1]Setting CreatedOnDateTags[/]");
|
.Spinner(Spinner.Known.Default)
|
||||||
rule.Alignment = Justify.Left;
|
.StartAsync("Retrieving subscriptions...", async ctx =>
|
||||||
rule.Style = Style.Parse("skyblue1");
|
{
|
||||||
AnsiConsole.Write(rule);
|
var subscriptions = await azureSubscriptionRepository.GetAll();
|
||||||
|
if (subscriptions == null || subscriptions.Count == 0) throw new Exception("No subscriptions found");
|
||||||
|
subscriptions = subscriptions.Where(s => s.Enabled && !string.IsNullOrWhiteSpace(s.subscriptionId)).ToList();
|
||||||
|
if (subscriptions.Count == 0) throw new Exception("No subscriptions found");
|
||||||
|
|
||||||
await AnsiConsole.Status()
|
foreach (var subscription in subscriptions)
|
||||||
.AutoRefresh(true)
|
|
||||||
.Spinner(Spinner.Known.Default)
|
|
||||||
.StartAsync("Retrieving subscriptions...", async ctx =>
|
|
||||||
{
|
{
|
||||||
var subscriptions = await _azureSubscriptionRepository.GetAll();
|
rule = new Rule($"[skyblue1]{subscription.displayName}[/]")
|
||||||
if (subscriptions == null || !subscriptions.Any()) throw new Exception("No subscriptions found");
|
|
||||||
subscriptions = subscriptions.Where(s => s.Enabled && !string.IsNullOrWhiteSpace(s.subscriptionId)).ToList();
|
|
||||||
if (!subscriptions.Any()) throw new Exception("No subscriptions found");
|
|
||||||
|
|
||||||
foreach (var subscription in subscriptions)
|
|
||||||
{
|
{
|
||||||
rule = new Rule($"[skyblue1]{subscription.displayName}[/]");
|
Justification = Justify.Left,
|
||||||
rule.Alignment = Justify.Left;
|
Style = Style.Parse("skyblue1 dim")
|
||||||
rule.Style = Style.Parse("skyblue1 dim");
|
};
|
||||||
AnsiConsole.Write(rule);
|
AnsiConsole.Write(rule);
|
||||||
|
|
||||||
ctx.Status($"Getting the resources for subscription '{subscription.displayName}'");
|
ctx.Status($"Getting the resources for subscription '{subscription.displayName}'");
|
||||||
|
|
||||||
var resources = await _azureResourceRepository.GetAll(subscription.subscriptionId);
|
var resources = await azureResourceRepository.GetAll(subscription.subscriptionId);
|
||||||
if (resources == null || !resources.Any()) continue;
|
if (resources == null || resources.Count == 0) continue;
|
||||||
resources = resources.Where(r => !string.IsNullOrWhiteSpace(r.CreatedOn) && !string.IsNullOrWhiteSpace(r.id)).ToList();
|
resources = resources.Where(r => !string.IsNullOrWhiteSpace(r.CreatedOn) && !string.IsNullOrWhiteSpace(r.id)).ToList();
|
||||||
|
|
||||||
if (skipDone)
|
if (skipDone)
|
||||||
{
|
{
|
||||||
resources = resources.Where(r => !r.tags.Any(t => t.Key == TagName && !string.IsNullOrWhiteSpace(t.Value))).ToList();
|
resources = resources.Where(r => !r.tags.Any(t => t.Key == TagName && !string.IsNullOrWhiteSpace(t.Value))).ToList();
|
||||||
}
|
|
||||||
|
|
||||||
ctx.Status($"Setting created date tag on resources in subscription '{subscription.displayName}'");
|
|
||||||
foreach (var resource in resources)
|
|
||||||
{
|
|
||||||
var tagSuccess = await _azureTagRepository.SetTag(resource.id, TagName, resource.CreatedOn);
|
|
||||||
AnsiConsole.MarkupLine($"{resource.id} " + (tagSuccess ? "[green]V[/]" : "[red]X[/]"));
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
});
|
|
||||||
}
|
ctx.Status($"Setting created date tag on resources in subscription '{subscription.displayName}'");
|
||||||
|
foreach (var resource in resources)
|
||||||
|
{
|
||||||
|
var tagSuccess = await azureTagRepository.SetTag(resource.id, TagName, resource.CreatedOn);
|
||||||
|
AnsiConsole.MarkupLine($"{resource.id} " + (tagSuccess ? "[green]V[/]" : "[red]X[/]"));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,73 +1,65 @@
|
|||||||
using AzureRestApi.Repositories;
|
using AzureRestApi.Repositories;
|
||||||
using Spectre.Console;
|
using Spectre.Console;
|
||||||
|
|
||||||
namespace AzureRestApi.Services
|
namespace AzureRestApi.Services;
|
||||||
|
|
||||||
|
public class DeploymentTypeService(
|
||||||
|
AzureSubscriptionRepository azureSubscriptionRepository,
|
||||||
|
AzureDeploymentRepository azureDeploymentRepository,
|
||||||
|
AzureResourceGroupRepository azureResourceGroupRepository)
|
||||||
{
|
{
|
||||||
public class DeploymentTypeService
|
public async Task CheckDeploymentTypes()
|
||||||
{
|
{
|
||||||
private readonly AzureSubscriptionRepository _azureSubscriptionRepository;
|
var rule = new Rule("[skyblue1]Checking deployment types[/]")
|
||||||
private readonly AzureDeploymentRepository _azureDeploymentRepository;
|
|
||||||
private readonly AzureResourceGroupRepository _azureResourceGroupRepository;
|
|
||||||
|
|
||||||
public DeploymentTypeService(AzureSubscriptionRepository azureSubscriptionRepository, AzureDeploymentRepository azureDeploymentRepository, AzureResourceGroupRepository azureResourceGroupRepository)
|
|
||||||
{
|
{
|
||||||
_azureSubscriptionRepository = azureSubscriptionRepository;
|
Justification = Justify.Left,
|
||||||
_azureDeploymentRepository = azureDeploymentRepository;
|
Style = Style.Parse("skyblue1")
|
||||||
_azureResourceGroupRepository = azureResourceGroupRepository;
|
};
|
||||||
}
|
AnsiConsole.Write(rule);
|
||||||
|
|
||||||
public async Task CheckDeploymentTypes()
|
await AnsiConsole.Status()
|
||||||
{
|
.AutoRefresh(true)
|
||||||
var rule = new Rule("[skyblue1]Checking deployment types[/]");
|
.Spinner(Spinner.Known.Default)
|
||||||
rule.Alignment = Justify.Left;
|
.StartAsync("Retrieving subscriptions...", async ctx =>
|
||||||
rule.Style = Style.Parse("skyblue1");
|
{
|
||||||
AnsiConsole.Write(rule);
|
// Retrieve subscriptions
|
||||||
|
var subscriptions = await azureSubscriptionRepository.GetAll();
|
||||||
|
if (subscriptions == null || !subscriptions.Any()) throw new Exception("No subscriptions found");
|
||||||
|
subscriptions = subscriptions.Where(s => s.Enabled && !string.IsNullOrWhiteSpace(s.subscriptionId)).ToList();
|
||||||
|
if (subscriptions.Count == 0) throw new Exception("No subscriptions found");
|
||||||
|
|
||||||
await AnsiConsole.Status()
|
foreach (var subscription in subscriptions)
|
||||||
.AutoRefresh(true)
|
|
||||||
.Spinner(Spinner.Known.Default)
|
|
||||||
.StartAsync("Retrieving subscriptions...", async ctx =>
|
|
||||||
{
|
{
|
||||||
// Retrieve subscriptions
|
rule = new Rule($"[skyblue1]{subscription.displayName}[/]")
|
||||||
var subscriptions = await _azureSubscriptionRepository.GetAll();
|
|
||||||
if (subscriptions == null || !subscriptions.Any()) throw new Exception("No subscriptions found");
|
|
||||||
subscriptions = subscriptions.Where(s => s.Enabled && !string.IsNullOrWhiteSpace(s.subscriptionId)).ToList();
|
|
||||||
if (!subscriptions.Any()) throw new Exception("No subscriptions found");
|
|
||||||
|
|
||||||
foreach (var subscription in subscriptions)
|
|
||||||
{
|
{
|
||||||
rule = new Rule($"[skyblue1]{subscription.displayName}[/]");
|
Justification = Justify.Left,
|
||||||
rule.Alignment = Justify.Left;
|
Style = Style.Parse("skyblue1 dim")
|
||||||
rule.Style = Style.Parse("skyblue1 dim");
|
};
|
||||||
AnsiConsole.Write(rule);
|
AnsiConsole.Write(rule);
|
||||||
|
|
||||||
ctx.Status($"Getting the deployments for subscription '{subscription.displayName}'");
|
|
||||||
var deployments = await _azureDeploymentRepository.GetAllBySubscription(subscription.subscriptionId);
|
|
||||||
|
|
||||||
if (deployments == null || !deployments.Any()) continue;
|
|
||||||
|
|
||||||
foreach (var deployment in deployments)
|
|
||||||
{
|
|
||||||
AnsiConsole.WriteLine(Markup.Escape(deployment?.name));
|
|
||||||
}
|
|
||||||
|
|
||||||
ctx.Status($"Getting the resource groups for subscription '{subscription.displayName}'");
|
|
||||||
var resourceGroups = await _azureResourceGroupRepository.GetAll(subscription.subscriptionId);
|
|
||||||
foreach (var resourceGroup in resourceGroups)
|
|
||||||
{
|
|
||||||
ctx.Status($"Getting the deployments for resourcegroup {resourceGroup.name} in subscription '{subscription.displayName}'");
|
|
||||||
|
|
||||||
var resourceGroupDeployments = await _azureDeploymentRepository.GetAllByResourceGroup(subscription.subscriptionId, resourceGroup.name);
|
|
||||||
foreach (var deployment in resourceGroupDeployments)
|
|
||||||
{
|
|
||||||
AnsiConsole.WriteLine(Markup.Escape($"{resourceGroup.name} - {deployment?.name}"));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
ctx.Status($"Getting the deployments for subscription '{subscription.displayName}'");
|
||||||
|
var deployments = await azureDeploymentRepository.GetAllBySubscription(subscription.subscriptionId);
|
||||||
|
|
||||||
|
if (deployments == null || deployments.Count == 0) continue;
|
||||||
|
|
||||||
|
foreach (var deployment in deployments)
|
||||||
|
{
|
||||||
|
AnsiConsole.WriteLine(Markup.Escape(deployment?.name));
|
||||||
}
|
}
|
||||||
});
|
|
||||||
}
|
ctx.Status($"Getting the resource groups for subscription '{subscription.displayName}'");
|
||||||
|
var resourceGroups = await azureResourceGroupRepository.GetAll(subscription.subscriptionId);
|
||||||
|
foreach (var resourceGroup in resourceGroups)
|
||||||
|
{
|
||||||
|
ctx.Status($"Getting the deployments for resourcegroup {resourceGroup.name} in subscription '{subscription.displayName}'");
|
||||||
|
|
||||||
|
var resourceGroupDeployments = await azureDeploymentRepository.GetAllByResourceGroup(subscription.subscriptionId, resourceGroup.name);
|
||||||
|
foreach (var deployment in resourceGroupDeployments)
|
||||||
|
{
|
||||||
|
AnsiConsole.WriteLine(Markup.Escape($"{resourceGroup.name} - {deployment?.name}"));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,64 +1,47 @@
|
|||||||
using Microsoft.Extensions.Hosting;
|
using Microsoft.Extensions.Hosting;
|
||||||
using Microsoft.Extensions.Logging;
|
|
||||||
using Spectre.Console;
|
using Spectre.Console;
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
namespace AzureRestApi.Services
|
namespace AzureRestApi.Services;
|
||||||
|
|
||||||
|
public class OptionService(CreatedOnDateService createdOnDateService, DeploymentTypeService deploymentTypeService)
|
||||||
|
: IHostedService
|
||||||
{
|
{
|
||||||
public class OptionService : IHostedService
|
public async Task StartAsync(CancellationToken cancellationToken)
|
||||||
{
|
{
|
||||||
private readonly ILogger<OptionService> _logger;
|
var rule = new Rule("[yellow]Cloud Egineering Console App[/]");
|
||||||
private readonly CreatedOnDateService _createdOnDateService;
|
AnsiConsole.Write(rule);
|
||||||
private readonly DeploymentTypeService _deploymentTypeService;
|
|
||||||
|
|
||||||
public OptionService(ILogger<OptionService> logger, CreatedOnDateService createdOnDateService, DeploymentTypeService deploymentTypeService)
|
Console.WriteLine("-- This couldn't be done with Powershell, so here we are.... ");
|
||||||
|
Console.WriteLine();
|
||||||
|
|
||||||
|
var choices = new[]
|
||||||
{
|
{
|
||||||
_logger = logger;
|
"Update missing CreatedOnDate tags.",
|
||||||
_createdOnDateService = createdOnDateService;
|
"Update missing IaC Deployment type tags.",
|
||||||
_deploymentTypeService = deploymentTypeService;
|
"Exit"
|
||||||
}
|
};
|
||||||
|
var result = AnsiConsole.Prompt(new SelectionPrompt<string>()
|
||||||
public async Task StartAsync(CancellationToken cancellationToken)
|
.Title("Select what you want to do:")
|
||||||
{
|
.PageSize(10)
|
||||||
var rule = new Rule("[yellow]Cloud Egineering Console App[/]");
|
.MoreChoicesText("[grey](Move up and down to reveal more choices)[/]")
|
||||||
AnsiConsole.Write(rule);
|
.AddChoices(choices));
|
||||||
|
|
||||||
Console.WriteLine("-- This couldn't be done with Powershell, so here we are.... ");
|
if (result == choices[0])
|
||||||
Console.WriteLine();
|
{
|
||||||
|
await createdOnDateService.SetCreatedOnDateTags(true);
|
||||||
var choices = new[]
|
}
|
||||||
{
|
else if (result == choices[1])
|
||||||
"Update missing CreatedOnDate tags.",
|
{
|
||||||
"Update missing IaC Deployment type tags.",
|
await deploymentTypeService.CheckDeploymentTypes();
|
||||||
"Exit"
|
|
||||||
};
|
|
||||||
var result = AnsiConsole.Prompt(new SelectionPrompt<string>()
|
|
||||||
.Title("Select what you want to do:")
|
|
||||||
.PageSize(10)
|
|
||||||
.MoreChoicesText("[grey](Move up and down to reveal more choices)[/]")
|
|
||||||
.AddChoices(choices));
|
|
||||||
|
|
||||||
if (result == choices[0])
|
|
||||||
{
|
|
||||||
await _createdOnDateService.SetCreatedOnDateTags(true);
|
|
||||||
}
|
|
||||||
else if (result == choices[1])
|
|
||||||
{
|
|
||||||
await _deploymentTypeService.CheckDeploymentTypes();
|
|
||||||
}
|
|
||||||
|
|
||||||
rule = new Rule("[yellow]Done. Bye.[/]");
|
|
||||||
AnsiConsole.Write(rule);
|
|
||||||
}
|
|
||||||
|
|
||||||
public Task StopAsync(CancellationToken cancellationToken)
|
|
||||||
{
|
|
||||||
throw new NotImplementedException();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
rule = new Rule("[yellow]Done. Bye.[/]");
|
||||||
|
AnsiConsole.Write(rule);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Task StopAsync(CancellationToken cancellationToken)
|
||||||
|
{
|
||||||
|
throw new NotImplementedException();
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
|
||||||
|
|
||||||
<PropertyGroup>
|
|
||||||
<OutputType>Exe</OutputType>
|
|
||||||
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
||||||
</PropertyGroup>
|
|
||||||
|
|
||||||
</Project>
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
using System;
|
|
||||||
|
|
||||||
namespace ConsoleApp1
|
|
||||||
{
|
|
||||||
internal class Program
|
|
||||||
{
|
|
||||||
static void Main(string[] args)
|
|
||||||
{
|
|
||||||
Console.WriteLine("Hello World!");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,15 +1,14 @@
|
|||||||
namespace SnykRestApi.Models.Parsed
|
namespace SnykRestApi.Models.Parsed;
|
||||||
|
|
||||||
|
public class AuditLog
|
||||||
{
|
{
|
||||||
public class AuditLog
|
public string GroupId { get; set; }
|
||||||
{
|
public string OrganizationId { get; set; }
|
||||||
public string GroupId { get; set; }
|
public string OrganizationName { get; set; }
|
||||||
public string OrganizationId { get; set; }
|
public string UserId { get; set; }
|
||||||
public string OrganizationName { get; set; }
|
public string UserName { get; set; }
|
||||||
public string UserId { get; set; }
|
public string ProjectId { get; set; }
|
||||||
public string UserName { get; set; }
|
public string ProjectName { get; set; }
|
||||||
public string ProjectId { get; set; }
|
public string Event { get; set; }
|
||||||
public string ProjectName { get; set; }
|
public DateTime Created { get; set; }
|
||||||
public string Event { get; set; }
|
|
||||||
public DateTime Created { get; set; }
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -1,24 +1,23 @@
|
|||||||
using System.Text.Json.Serialization;
|
using System.Text.Json.Serialization;
|
||||||
|
|
||||||
namespace SnykRestApi.Models.Raw
|
namespace SnykRestApi.Models.Raw;
|
||||||
|
|
||||||
|
internal class AuditLogResponse
|
||||||
{
|
{
|
||||||
internal class AuditLogResponse
|
[JsonPropertyName("groupId")]
|
||||||
{
|
public string GroupId { get; set; }
|
||||||
[JsonPropertyName("groupId")]
|
[JsonPropertyName("orgId")]
|
||||||
public string GroupId { get; set; }
|
public string OrgId { get; set; }
|
||||||
[JsonPropertyName("orgId")]
|
[JsonPropertyName("userId")]
|
||||||
public string OrgId { get; set; }
|
public string UserId { get; set; }
|
||||||
[JsonPropertyName("userId")]
|
[JsonPropertyName("projectId")]
|
||||||
public string UserId { get; set; }
|
public string ProjectId { get; set; }
|
||||||
[JsonPropertyName("projectId")]
|
[JsonPropertyName("event")]
|
||||||
public string ProjectId { get; set; }
|
public string Event { get; set; }
|
||||||
[JsonPropertyName("event")]
|
//[JsonPropertyName("content")]
|
||||||
public string Event { get; set; }
|
//public string Content { get; set; }
|
||||||
//[JsonPropertyName("content")]
|
[JsonPropertyName("created")]
|
||||||
//public string Content { get; set; }
|
public DateTime Created { get; set; }
|
||||||
[JsonPropertyName("created")]
|
|
||||||
public DateTime Created { get; set; }
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -1,13 +1,12 @@
|
|||||||
using System.Text.Json.Serialization;
|
using System.Text.Json.Serialization;
|
||||||
|
|
||||||
namespace SnykRestApi.Models.Raw
|
namespace SnykRestApi.Models.Raw;
|
||||||
{
|
|
||||||
internal class GroupResponse
|
internal class GroupResponse
|
||||||
{
|
{
|
||||||
[JsonPropertyName("name")]
|
[JsonPropertyName("name")]
|
||||||
public string Name { get; set; }
|
public string Name { get; set; }
|
||||||
[JsonPropertyName("id")]
|
[JsonPropertyName("id")]
|
||||||
public string Id { get; set; }
|
public string Id { get; set; }
|
||||||
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -1,10 +1,9 @@
|
|||||||
using System.Text.Json.Serialization;
|
using System.Text.Json.Serialization;
|
||||||
|
|
||||||
namespace SnykRestApi.Models.Raw
|
namespace SnykRestApi.Models.Raw;
|
||||||
|
|
||||||
|
internal class OrganizationListResponse
|
||||||
{
|
{
|
||||||
internal class OrganizationListResponse
|
[JsonPropertyName("orgs")]
|
||||||
{
|
public List<OrganizationResponse> Orgs { get; set; }
|
||||||
[JsonPropertyName("orgs")]
|
|
||||||
public List<OrganizationResponse> Orgs { get; set; }
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -1,19 +1,18 @@
|
|||||||
using System.Text.Json.Serialization;
|
using System.Text.Json.Serialization;
|
||||||
|
|
||||||
namespace SnykRestApi.Models.Raw
|
namespace SnykRestApi.Models.Raw;
|
||||||
{
|
|
||||||
internal class OrganizationResponse
|
internal class OrganizationResponse
|
||||||
{
|
{
|
||||||
[JsonPropertyName("name")]
|
[JsonPropertyName("name")]
|
||||||
public string Name { get; set; }
|
public string Name { get; set; }
|
||||||
[JsonPropertyName("id")]
|
[JsonPropertyName("id")]
|
||||||
public string Id { get; set; }
|
public string Id { get; set; }
|
||||||
[JsonPropertyName("slug")]
|
[JsonPropertyName("slug")]
|
||||||
public string Slug { get; set; }
|
public string Slug { get; set; }
|
||||||
[JsonPropertyName("url")]
|
[JsonPropertyName("url")]
|
||||||
public string Url { get; set; }
|
public string Url { get; set; }
|
||||||
[JsonPropertyName("group")]
|
[JsonPropertyName("group")]
|
||||||
public GroupResponse Group { get; set; }
|
public GroupResponse Group { get; set; }
|
||||||
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -1,12 +1,11 @@
|
|||||||
using System.Text.Json.Serialization;
|
using System.Text.Json.Serialization;
|
||||||
|
|
||||||
namespace SnykRestApi.Models.Raw
|
namespace SnykRestApi.Models.Raw;
|
||||||
|
|
||||||
|
internal class ProjectListResponse
|
||||||
{
|
{
|
||||||
internal class ProjectListResponse
|
[JsonPropertyName("org")]
|
||||||
{
|
public OrganizationResponse Org { get; set; }
|
||||||
[JsonPropertyName("org")]
|
[JsonPropertyName("projects")]
|
||||||
public OrganizationResponse Org { get; set; }
|
public List<ProjectResponse> Projects { get; set; }
|
||||||
[JsonPropertyName("projects")]
|
|
||||||
public List<ProjectResponse> Projects { get; set; }
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -1,12 +1,11 @@
|
|||||||
using System.Text.Json.Serialization;
|
using System.Text.Json.Serialization;
|
||||||
|
|
||||||
namespace SnykRestApi.Models.Raw
|
namespace SnykRestApi.Models.Raw;
|
||||||
|
|
||||||
|
internal class ProjectResponse
|
||||||
{
|
{
|
||||||
internal class ProjectResponse
|
[JsonPropertyName("name")]
|
||||||
{
|
public string Name { get; set; }
|
||||||
[JsonPropertyName("name")]
|
[JsonPropertyName("id")]
|
||||||
public string Name { get; set; }
|
public string Id { get; set; }
|
||||||
[JsonPropertyName("id")]
|
|
||||||
public string Id { get; set; }
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -1,17 +1,16 @@
|
|||||||
using System.Text.Json.Serialization;
|
using System.Text.Json.Serialization;
|
||||||
|
|
||||||
namespace SnykRestApi.Models.Raw
|
namespace SnykRestApi.Models.Raw;
|
||||||
{
|
|
||||||
internal class UserResponse
|
internal class UserResponse
|
||||||
{
|
{
|
||||||
[JsonPropertyName("name")]
|
[JsonPropertyName("name")]
|
||||||
public string Name { get; set; }
|
public string Name { get; set; }
|
||||||
[JsonPropertyName("id")]
|
[JsonPropertyName("id")]
|
||||||
public string Id { get; set; }
|
public string Id { get; set; }
|
||||||
[JsonPropertyName("username")]
|
[JsonPropertyName("username")]
|
||||||
public string UserName { get; set; }
|
public string UserName { get; set; }
|
||||||
[JsonPropertyName("email")]
|
[JsonPropertyName("email")]
|
||||||
public string Email { get; set; }
|
public string Email { get; set; }
|
||||||
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -1,11 +1,10 @@
|
|||||||
namespace SnykRestApi.Models
|
namespace SnykRestApi.Models;
|
||||||
|
|
||||||
|
public class Settings
|
||||||
{
|
{
|
||||||
public class Settings
|
public string KeyVaultName { get; set; } = string.Empty;
|
||||||
{
|
public string CsvFolder { get; set; } = string.Empty;
|
||||||
public string KeyVaultName { get; set; } = string.Empty;
|
public string SnykBaseUrl { get; set; } = string.Empty;
|
||||||
public string CsvFolder { get; set; } = string.Empty;
|
|
||||||
public string SnykBaseUrl { get; set; } = string.Empty;
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -5,36 +5,35 @@ using Microsoft.Extensions.Configuration;
|
|||||||
using Microsoft.Extensions.DependencyInjection;
|
using Microsoft.Extensions.DependencyInjection;
|
||||||
using Microsoft.Extensions.Hosting;
|
using Microsoft.Extensions.Hosting;
|
||||||
|
|
||||||
namespace SnykRestApi
|
namespace SnykRestApi;
|
||||||
|
|
||||||
|
class Program
|
||||||
{
|
{
|
||||||
class Program
|
static Task Main(string[] args) =>
|
||||||
{
|
CreateHostBuilder(args).Build().RunAsync();
|
||||||
static Task Main(string[] args) =>
|
|
||||||
CreateHostBuilder(args).Build().RunAsync();
|
|
||||||
|
|
||||||
static IHostBuilder CreateHostBuilder(string[] args) =>
|
static IHostBuilder CreateHostBuilder(string[] args) =>
|
||||||
Host.CreateDefaultBuilder(args)
|
Host.CreateDefaultBuilder(args)
|
||||||
.ConfigureServices((builder, services) =>
|
.ConfigureServices((builder, services) =>
|
||||||
{
|
{
|
||||||
IConfiguration config = new ConfigurationBuilder()
|
IConfiguration config = new ConfigurationBuilder()
|
||||||
.AddJsonFile("appsettings.json")
|
.AddJsonFile("appsettings.json")
|
||||||
.AddEnvironmentVariables()
|
.AddEnvironmentVariables()
|
||||||
.Build();
|
.Build();
|
||||||
|
|
||||||
Settings settings = config.GetRequiredSection("Settings").Get<Settings>();
|
Settings settings = config.GetRequiredSection("Settings").Get<Settings>();
|
||||||
|
|
||||||
services.AddSingleton<AccessTokenRepository>();
|
services.AddSingleton<AccessTokenRepository>();
|
||||||
services.AddSingleton(settings);
|
services.AddSingleton(settings);
|
||||||
|
|
||||||
services.AddHttpClient<OrganizationRepository>();
|
services.AddHttpClient<OrganizationRepository>();
|
||||||
services.AddHttpClient<AuditLogRepository>();
|
services.AddHttpClient<AuditLogRepository>();
|
||||||
services.AddHttpClient<ProjectRepository>();
|
services.AddHttpClient<ProjectRepository>();
|
||||||
services.AddHttpClient<UserRepository>();
|
services.AddHttpClient<UserRepository>();
|
||||||
services.AddTransient<CsvRepository>();
|
services.AddTransient<CsvRepository>();
|
||||||
|
|
||||||
services.AddScoped<AuditLogService>();
|
services.AddScoped<AuditLogService>();
|
||||||
|
|
||||||
services.AddHostedService<OptionService>();
|
services.AddHostedService<OptionService>();
|
||||||
});
|
});
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -2,28 +2,21 @@
|
|||||||
using Azure.Security.KeyVault.Secrets;
|
using Azure.Security.KeyVault.Secrets;
|
||||||
using SnykRestApi.Models;
|
using SnykRestApi.Models;
|
||||||
|
|
||||||
namespace SnykRestApi.Repositories
|
namespace SnykRestApi.Repositories;
|
||||||
|
|
||||||
|
public class AccessTokenRepository(Settings settings)
|
||||||
{
|
{
|
||||||
public class AccessTokenRepository
|
private string? _authorizationToken = string.Empty;
|
||||||
|
|
||||||
|
public async Task<string> GetAuthorizationToken()
|
||||||
{
|
{
|
||||||
private readonly Settings _settings;
|
if (!string.IsNullOrWhiteSpace(_authorizationToken)) return _authorizationToken;
|
||||||
private string? _authorizationToken = string.Empty;
|
|
||||||
|
|
||||||
public AccessTokenRepository(Settings settings)
|
var keyvaultUri = "https://" + settings.KeyVaultName + ".vault.azure.net";
|
||||||
{
|
var credential = new DefaultAzureCredential();
|
||||||
_settings = settings;
|
var client = new SecretClient(new Uri(keyvaultUri), credential);
|
||||||
}
|
_authorizationToken = (await client.GetSecretAsync("SnykKey")).Value.Value;
|
||||||
|
|
||||||
public async Task<string> GetAuthorizationToken()
|
return _authorizationToken;
|
||||||
{
|
|
||||||
if (!string.IsNullOrWhiteSpace(_authorizationToken)) return _authorizationToken;
|
|
||||||
|
|
||||||
var keyvaultUri = "https://" + _settings.KeyVaultName + ".vault.azure.net";
|
|
||||||
var credential = new DefaultAzureCredential();
|
|
||||||
var client = new SecretClient(new Uri(keyvaultUri), credential);
|
|
||||||
_authorizationToken = (await client.GetSecretAsync("SnykKey")).Value.Value;
|
|
||||||
|
|
||||||
return _authorizationToken;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -3,47 +3,35 @@ using SnykRestApi.Models.Raw;
|
|||||||
using System.Net.Http.Headers;
|
using System.Net.Http.Headers;
|
||||||
using System.Text.Json;
|
using System.Text.Json;
|
||||||
|
|
||||||
namespace SnykRestApi.Repositories
|
namespace SnykRestApi.Repositories;
|
||||||
|
|
||||||
|
public class AuditLogRepository(HttpClient httpClient, AccessTokenRepository accessTokenRepository, Settings settings)
|
||||||
{
|
{
|
||||||
public class AuditLogRepository
|
internal async Task<List<AuditLogResponse>> GetByOrganizationId(string organizationId)
|
||||||
{
|
{
|
||||||
private readonly HttpClient _httpClient;
|
var authorizationToken = await accessTokenRepository.GetAuthorizationToken();
|
||||||
private readonly AccessTokenRepository _accessTokenRepository;
|
List<AuditLogResponse> result = [];
|
||||||
private readonly Settings _settings;
|
List<AuditLogResponse> responseItems;
|
||||||
|
|
||||||
public AuditLogRepository(HttpClient httpClient, AccessTokenRepository accessTokenRepository, Settings settings)
|
var page = 0;
|
||||||
|
|
||||||
|
do
|
||||||
{
|
{
|
||||||
_httpClient = httpClient;
|
HttpRequestMessage request = new(HttpMethod.Post, $"{settings.SnykBaseUrl}org/{organizationId}/audit?from=2022-07-01&page={++page}");
|
||||||
_accessTokenRepository = accessTokenRepository;
|
request.Headers.Accept.Clear();
|
||||||
_settings = settings;
|
request.Headers.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
|
||||||
|
request.Headers.Authorization = new AuthenticationHeaderValue("token", authorizationToken);
|
||||||
|
|
||||||
|
var response = await httpClient.SendAsync(request).ConfigureAwait(false);
|
||||||
|
|
||||||
|
response.EnsureSuccessStatusCode();
|
||||||
|
|
||||||
|
var responseString = await response.Content.ReadAsStringAsync().ConfigureAwait(false);
|
||||||
|
responseItems = JsonSerializer.Deserialize<List<AuditLogResponse>>(responseString) ?? new List<AuditLogResponse>();
|
||||||
|
result.AddRange(responseItems);
|
||||||
}
|
}
|
||||||
|
while (responseItems.Count == 100);
|
||||||
|
|
||||||
internal async Task<List<AuditLogResponse>> GetByOrganizationId(string origanizationId)
|
return result;
|
||||||
{
|
|
||||||
var authorizationToken = await _accessTokenRepository.GetAuthorizationToken();
|
|
||||||
List<AuditLogResponse> result = new();
|
|
||||||
List<AuditLogResponse> responseItems;
|
|
||||||
|
|
||||||
int page = 0;
|
|
||||||
|
|
||||||
do
|
|
||||||
{
|
|
||||||
HttpRequestMessage request = new(HttpMethod.Post, $"{_settings.SnykBaseUrl}org/{origanizationId}/audit?from=2022-07-01&page={++page}");
|
|
||||||
request.Headers.Accept.Clear();
|
|
||||||
request.Headers.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
|
|
||||||
request.Headers.Authorization = new AuthenticationHeaderValue("token", authorizationToken);
|
|
||||||
|
|
||||||
var response = await _httpClient.SendAsync(request).ConfigureAwait(false);
|
|
||||||
|
|
||||||
response.EnsureSuccessStatusCode();
|
|
||||||
|
|
||||||
var responseString = await response.Content.ReadAsStringAsync().ConfigureAwait(false);
|
|
||||||
responseItems = JsonSerializer.Deserialize<List<AuditLogResponse>>(responseString) ?? new List<AuditLogResponse>();
|
|
||||||
result.AddRange(responseItems);
|
|
||||||
}
|
|
||||||
while (responseItems.Count == 100);
|
|
||||||
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -3,30 +3,17 @@ using SnykRestApi.Models;
|
|||||||
using SnykRestApi.Models.Parsed;
|
using SnykRestApi.Models.Parsed;
|
||||||
using System.Globalization;
|
using System.Globalization;
|
||||||
|
|
||||||
namespace SnykRestApi.Repositories
|
namespace SnykRestApi.Repositories;
|
||||||
|
|
||||||
|
public class CsvRepository(Settings settings)
|
||||||
{
|
{
|
||||||
public class CsvRepository
|
public async Task WriteAll (List<AuditLog> log)
|
||||||
{
|
{
|
||||||
private readonly Settings _settings;
|
var t = DateTime.Now;
|
||||||
|
var fileName = $"{settings.CsvFolder}SnykAuditLog_{t:yyyy}{t:MM}{t:dd}_{t:HH}{t:mm}{t:ss}_{t:FFF}.csv";
|
||||||
|
|
||||||
public CsvRepository(Settings settings)
|
await using var writer = new StreamWriter(fileName);
|
||||||
{
|
await using var csv = new CsvWriter(writer, CultureInfo.InvariantCulture);
|
||||||
_settings = settings;
|
await csv.WriteRecordsAsync(log);
|
||||||
}
|
|
||||||
|
|
||||||
public async Task WriteAll (List<AuditLog> log)
|
|
||||||
{
|
|
||||||
var t = DateTime.Now;
|
|
||||||
var fileName = $"{_settings.CsvFolder}SnykAuditLog_{t:yyyy}{t:MM}{t:dd}_{t:HH}{t:mm}{t:ss}_{t:FFF}.csv";
|
|
||||||
|
|
||||||
using (var writer = new StreamWriter(fileName))
|
|
||||||
using (var csv = new CsvWriter(writer, CultureInfo.InvariantCulture))
|
|
||||||
{
|
|
||||||
await csv.WriteRecordsAsync(log);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -3,38 +3,26 @@ using SnykRestApi.Models.Raw;
|
|||||||
using System.Net.Http.Headers;
|
using System.Net.Http.Headers;
|
||||||
using System.Text.Json;
|
using System.Text.Json;
|
||||||
|
|
||||||
namespace SnykRestApi.Repositories
|
namespace SnykRestApi.Repositories;
|
||||||
|
|
||||||
|
public class OrganizationRepository(HttpClient httpClient, AccessTokenRepository accessTokenRepository, Settings settings)
|
||||||
{
|
{
|
||||||
public class OrganizationRepository
|
internal async Task<List<OrganizationResponse>> GetAll()
|
||||||
{
|
{
|
||||||
private readonly HttpClient _httpClient;
|
var authorizationToken = await accessTokenRepository.GetAuthorizationToken();
|
||||||
private readonly AccessTokenRepository _accessTokenRepository;
|
|
||||||
private readonly Settings _settings;
|
|
||||||
|
|
||||||
public OrganizationRepository(HttpClient httpClient, AccessTokenRepository accessTokenRepository, Settings settings)
|
var uri = $"{settings.SnykBaseUrl}orgs";
|
||||||
{
|
HttpRequestMessage request = new(HttpMethod.Get, uri);
|
||||||
_httpClient = httpClient;
|
request.Headers.Accept.Clear();
|
||||||
_accessTokenRepository = accessTokenRepository;
|
request.Headers.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
|
||||||
_settings = settings;
|
request.Headers.Authorization = new AuthenticationHeaderValue("token", authorizationToken);
|
||||||
}
|
|
||||||
|
|
||||||
internal async Task<List<OrganizationResponse>> GetAll()
|
var response = await httpClient.SendAsync(request).ConfigureAwait(false);
|
||||||
{
|
|
||||||
var authorizationToken = await _accessTokenRepository.GetAuthorizationToken();
|
|
||||||
|
|
||||||
var uri = $"{_settings.SnykBaseUrl}orgs";
|
response.EnsureSuccessStatusCode();
|
||||||
HttpRequestMessage request = new(HttpMethod.Get, uri);
|
|
||||||
request.Headers.Accept.Clear();
|
|
||||||
request.Headers.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
|
|
||||||
request.Headers.Authorization = new AuthenticationHeaderValue("token", authorizationToken);
|
|
||||||
|
|
||||||
var response = await _httpClient.SendAsync(request).ConfigureAwait(false);
|
var responseString = await response.Content.ReadAsStringAsync().ConfigureAwait(false);
|
||||||
|
var result = JsonSerializer.Deserialize<OrganizationListResponse>(responseString)?.Orgs;
|
||||||
response.EnsureSuccessStatusCode();
|
return result ?? [];
|
||||||
|
|
||||||
var responseString = await response.Content.ReadAsStringAsync().ConfigureAwait(false);
|
|
||||||
var result = JsonSerializer.Deserialize<OrganizationListResponse>(responseString)?.Orgs;
|
|
||||||
return result ?? new List<OrganizationResponse>();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -3,38 +3,26 @@ using SnykRestApi.Models.Raw;
|
|||||||
using System.Net.Http.Headers;
|
using System.Net.Http.Headers;
|
||||||
using System.Text.Json;
|
using System.Text.Json;
|
||||||
|
|
||||||
namespace SnykRestApi.Repositories
|
namespace SnykRestApi.Repositories;
|
||||||
|
|
||||||
|
public class ProjectRepository(HttpClient httpClient, AccessTokenRepository accessTokenRepository, Settings settings)
|
||||||
{
|
{
|
||||||
public class ProjectRepository
|
internal async Task<List<ProjectResponse>> GetAll(string organizationId)
|
||||||
{
|
{
|
||||||
private readonly HttpClient _httpClient;
|
var authorizationToken = await accessTokenRepository.GetAuthorizationToken();
|
||||||
private readonly AccessTokenRepository _accessTokenRepository;
|
|
||||||
private readonly Settings _settings;
|
|
||||||
|
|
||||||
public ProjectRepository(HttpClient httpClient, AccessTokenRepository accessTokenRepository, Settings settings)
|
var uri = $"{settings.SnykBaseUrl}org/{organizationId}/projects";
|
||||||
{
|
HttpRequestMessage request = new(HttpMethod.Post, uri);
|
||||||
_httpClient = httpClient;
|
request.Headers.Accept.Clear();
|
||||||
_accessTokenRepository = accessTokenRepository;
|
request.Headers.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
|
||||||
_settings = settings;
|
request.Headers.Authorization = new AuthenticationHeaderValue("token", authorizationToken);
|
||||||
}
|
|
||||||
|
|
||||||
internal async Task<List<ProjectResponse>> GetAll(string organizationId)
|
var response = await httpClient.SendAsync(request).ConfigureAwait(false);
|
||||||
{
|
|
||||||
var authorizationToken = await _accessTokenRepository.GetAuthorizationToken();
|
|
||||||
|
|
||||||
var uri = $"{_settings.SnykBaseUrl}org/{organizationId}/projects";
|
response.EnsureSuccessStatusCode();
|
||||||
HttpRequestMessage request = new(HttpMethod.Post, uri);
|
|
||||||
request.Headers.Accept.Clear();
|
|
||||||
request.Headers.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
|
|
||||||
request.Headers.Authorization = new AuthenticationHeaderValue("token", authorizationToken);
|
|
||||||
|
|
||||||
var response = await _httpClient.SendAsync(request).ConfigureAwait(false);
|
var responseString = await response.Content.ReadAsStringAsync().ConfigureAwait(false);
|
||||||
|
var result = JsonSerializer.Deserialize<ProjectListResponse>(responseString)?.Projects;
|
||||||
response.EnsureSuccessStatusCode();
|
return result ?? [];
|
||||||
|
|
||||||
var responseString = await response.Content.ReadAsStringAsync().ConfigureAwait(false);
|
|
||||||
var result = JsonSerializer.Deserialize<ProjectListResponse>(responseString)?.Projects;
|
|
||||||
return result ?? new List<ProjectResponse>();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -4,62 +4,49 @@ using Spectre.Console;
|
|||||||
using System.Net.Http.Headers;
|
using System.Net.Http.Headers;
|
||||||
using System.Text.Json;
|
using System.Text.Json;
|
||||||
|
|
||||||
namespace SnykRestApi.Repositories
|
namespace SnykRestApi.Repositories;
|
||||||
|
|
||||||
|
public class UserRepository(HttpClient httpClient, AccessTokenRepository accessTokenRepository, Settings settings)
|
||||||
{
|
{
|
||||||
public class UserRepository
|
internal async Task<List<UserResponse>> GetAll(List<string> ids)
|
||||||
{
|
{
|
||||||
private readonly HttpClient _httpClient;
|
var authorizationToken = await accessTokenRepository.GetAuthorizationToken();
|
||||||
private readonly AccessTokenRepository _accessTokenRepository;
|
List<UserResponse> result = new();
|
||||||
private readonly Settings _settings;
|
|
||||||
|
|
||||||
public UserRepository(HttpClient httpClient, AccessTokenRepository accessTokenRepository, Settings settings)
|
foreach (var id in ids)
|
||||||
{
|
{
|
||||||
_httpClient = httpClient;
|
HttpRequestMessage request = new(HttpMethod.Get, $"{settings.SnykBaseUrl}user/{id}");
|
||||||
_accessTokenRepository = accessTokenRepository;
|
request.Headers.Accept.Clear();
|
||||||
_settings = settings;
|
request.Headers.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
|
||||||
}
|
request.Headers.Authorization = new AuthenticationHeaderValue("token", authorizationToken);
|
||||||
|
|
||||||
internal async Task<List<UserResponse>> GetAll(List<string> ids)
|
var response = await httpClient.SendAsync(request).ConfigureAwait(false);
|
||||||
{
|
|
||||||
var authorizationToken = await _accessTokenRepository.GetAuthorizationToken();
|
|
||||||
List<UserResponse> result = new();
|
|
||||||
UserResponse? responseItem;
|
|
||||||
|
|
||||||
foreach (var id in ids)
|
try
|
||||||
{
|
{
|
||||||
HttpRequestMessage request = new(HttpMethod.Get, $"{_settings.SnykBaseUrl}user/{id}");
|
response.EnsureSuccessStatusCode();
|
||||||
request.Headers.Accept.Clear();
|
|
||||||
request.Headers.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
|
|
||||||
request.Headers.Authorization = new AuthenticationHeaderValue("token", authorizationToken);
|
|
||||||
|
|
||||||
var response = await _httpClient.SendAsync(request).ConfigureAwait(false);
|
var responseString = await response.Content.ReadAsStringAsync().ConfigureAwait(false);
|
||||||
|
var responseItem = JsonSerializer.Deserialize<UserResponse>(responseString);
|
||||||
|
|
||||||
try
|
if (responseItem != null)
|
||||||
{
|
{
|
||||||
response.EnsureSuccessStatusCode();
|
result.Add(responseItem);
|
||||||
|
|
||||||
var responseString = await response.Content.ReadAsStringAsync().ConfigureAwait(false);
|
|
||||||
responseItem = JsonSerializer.Deserialize<UserResponse>(responseString);
|
|
||||||
|
|
||||||
if (responseItem != null)
|
|
||||||
{
|
|
||||||
result.Add(responseItem);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
catch
|
|
||||||
{
|
|
||||||
AnsiConsole.MarkupLine($"[red bold]Could not find user with id '{id}'[/]");
|
|
||||||
result.Add(new()
|
|
||||||
{
|
|
||||||
Id = id,
|
|
||||||
Name = "{ Unknown user }",
|
|
||||||
UserName = "{ Unknown user }",
|
|
||||||
Email = "{ Unknown user }"
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
catch
|
||||||
return result;
|
{
|
||||||
|
AnsiConsole.MarkupLine($"[red bold]Could not find user with id '{id}'[/]");
|
||||||
|
result.Add(new()
|
||||||
|
{
|
||||||
|
Id = id,
|
||||||
|
Name = "{ Unknown user }",
|
||||||
|
UserName = "{ Unknown user }",
|
||||||
|
Email = "{ Unknown user }"
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return result;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -2,108 +2,96 @@
|
|||||||
using SnykRestApi.Models.Raw;
|
using SnykRestApi.Models.Raw;
|
||||||
using SnykRestApi.Repositories;
|
using SnykRestApi.Repositories;
|
||||||
using Spectre.Console;
|
using Spectre.Console;
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
namespace SnykRestApi.Services
|
namespace SnykRestApi.Services;
|
||||||
|
|
||||||
|
public class AuditLogService(
|
||||||
|
OrganizationRepository organizationRepository,
|
||||||
|
AuditLogRepository auditLogRepository,
|
||||||
|
ProjectRepository projectRepository,
|
||||||
|
UserRepository userRepository,
|
||||||
|
CsvRepository csvRepository)
|
||||||
{
|
{
|
||||||
public class AuditLogService
|
public async Task CreateAuditLog ()
|
||||||
{
|
{
|
||||||
private readonly OrganizationRepository _organizationRepository;
|
var rule = new Rule("[skyblue1]Creating Snyk Audit Log CSV[/]");
|
||||||
private readonly AuditLogRepository _auditLogRepository;
|
rule.Justification = Justify.Left;
|
||||||
private readonly ProjectRepository _projectRepository;
|
rule.Style = Style.Parse("skyblue1");
|
||||||
private readonly UserRepository _userRepository;
|
AnsiConsole.Write(rule);
|
||||||
private readonly CsvRepository _csvRepository;
|
|
||||||
|
|
||||||
public AuditLogService(OrganizationRepository organizationRepository, AuditLogRepository auditLogRepostitory, ProjectRepository projectRepository, UserRepository userRepository, CsvRepository csvRepository)
|
await AnsiConsole.Status()
|
||||||
{
|
.AutoRefresh(true)
|
||||||
_organizationRepository = organizationRepository;
|
.Spinner(Spinner.Known.Default)
|
||||||
_auditLogRepository = auditLogRepostitory;
|
.StartAsync("Retrieving organizations...", async ctx =>
|
||||||
_projectRepository = projectRepository;
|
{
|
||||||
_userRepository = userRepository;
|
var organizations = await organizationRepository.GetAll();
|
||||||
_csvRepository = csvRepository;
|
if (organizations == null || !organizations.Any()) throw new Exception("No organizations found");
|
||||||
}
|
|
||||||
|
|
||||||
public async Task CreateAuditLog ()
|
var log = new List<AuditLogResponse>();
|
||||||
{
|
var projects = new List<ProjectResponse>();
|
||||||
var rule = new Rule("[skyblue1]Creating Snyk Audit Log CSV[/]");
|
|
||||||
rule.Alignment = Justify.Left;
|
|
||||||
rule.Style = Style.Parse("skyblue1");
|
|
||||||
AnsiConsole.Write(rule);
|
|
||||||
|
|
||||||
await AnsiConsole.Status()
|
foreach (var organization in organizations)
|
||||||
.AutoRefresh(true)
|
|
||||||
.Spinner(Spinner.Known.Default)
|
|
||||||
.StartAsync("Retrieving organizations...", async ctx =>
|
|
||||||
{
|
{
|
||||||
var organizations = await _organizationRepository.GetAll();
|
rule = new Rule($"[skyblue1]{organization.Name}[/]");
|
||||||
if (organizations == null || !organizations.Any()) throw new Exception("No organizations found");
|
rule.Justification = Justify.Left;
|
||||||
|
rule.Style = Style.Parse("skyblue1 dim");
|
||||||
|
AnsiConsole.Write(rule);
|
||||||
|
|
||||||
var log = new List<AuditLogResponse>();
|
ctx.Status($"Getting the projects for organization '{organization.Name}'");
|
||||||
var projects = new List<ProjectResponse>();
|
var orgProjects = await projectRepository.GetAll(organization.Id);
|
||||||
|
projects.AddRange(orgProjects);
|
||||||
|
AnsiConsole.WriteLine($"Got {orgProjects.Count} projects.");
|
||||||
|
|
||||||
foreach (var organization in organizations)
|
ctx.Status($"Getting the audit log for organization '{organization.Name}'");
|
||||||
|
var orgLogs = await auditLogRepository.GetByOrganizationId(organization.Id);
|
||||||
|
log.AddRange(orgLogs);
|
||||||
|
AnsiConsole.WriteLine($"Got {orgLogs.Count} log records.");
|
||||||
|
}
|
||||||
|
|
||||||
|
rule = new Rule("[skyblue1]Retrieving users[/]")
|
||||||
|
{
|
||||||
|
Justification = Justify.Left,
|
||||||
|
Style = Style.Parse("skyblue1 dim")
|
||||||
|
};
|
||||||
|
AnsiConsole.Write(rule);
|
||||||
|
|
||||||
|
ctx.Status($"Getting users");
|
||||||
|
var userIds = log.Select(l => l.UserId).Distinct().ToList();
|
||||||
|
|
||||||
|
var users = await userRepository.GetAll(userIds);
|
||||||
|
AnsiConsole.WriteLine($"Got {users.Count} users of {userIds.Count} user ids.");
|
||||||
|
|
||||||
|
rule = new Rule("[skyblue1]Creating CSV[/]")
|
||||||
|
{
|
||||||
|
Justification = Justify.Left,
|
||||||
|
Style = Style.Parse("skyblue1 dim")
|
||||||
|
};
|
||||||
|
AnsiConsole.Write(rule);
|
||||||
|
|
||||||
|
ctx.Status($"Combining all information");
|
||||||
|
var result = (from l in log
|
||||||
|
join o in organizations on l.OrgId equals o.Id into gjO
|
||||||
|
from subO in gjO.DefaultIfEmpty()
|
||||||
|
join u in users on l.UserId equals u.Id into gjU
|
||||||
|
from subU in gjU.DefaultIfEmpty()
|
||||||
|
join p in projects on l.ProjectId equals p.Id into gjP
|
||||||
|
from subP in gjP.DefaultIfEmpty()
|
||||||
|
select new AuditLog
|
||||||
{
|
{
|
||||||
rule = new Rule($"[skyblue1]{organization.Name}[/]");
|
GroupId = l.GroupId,
|
||||||
rule.Alignment = Justify.Left;
|
OrganizationId = l.OrgId,
|
||||||
rule.Style = Style.Parse("skyblue1 dim");
|
OrganizationName = subO?.Name,
|
||||||
AnsiConsole.Write(rule);
|
ProjectId = l.ProjectId,
|
||||||
|
ProjectName = subP?.Name,
|
||||||
|
UserId = l.UserId,
|
||||||
|
UserName = subU?.Name,
|
||||||
|
Event = l.Event,
|
||||||
|
Created = l.Created
|
||||||
|
}).ToList();
|
||||||
|
AnsiConsole.WriteLine($"Prepared {result.Count} lines to export of {log.Count} audit log records.");
|
||||||
|
|
||||||
ctx.Status($"Getting the projects for organization '{organization.Name}'");
|
ctx.Status("Writing CSV");
|
||||||
var orgProjects = await _projectRepository.GetAll(organization.Id);
|
await csvRepository.WriteAll(result);
|
||||||
projects.AddRange(orgProjects);
|
});
|
||||||
AnsiConsole.WriteLine($"Got {orgProjects.Count} projects.");
|
|
||||||
|
|
||||||
ctx.Status($"Getting the audit log for organization '{organization.Name}'");
|
|
||||||
var orgLogs = await _auditLogRepository.GetByOrganizationId(organization.Id);
|
|
||||||
log.AddRange(orgLogs);
|
|
||||||
AnsiConsole.WriteLine($"Got {orgLogs.Count} log records.");
|
|
||||||
}
|
|
||||||
|
|
||||||
rule = new Rule($"[skyblue1]Retrieving users[/]");
|
|
||||||
rule.Alignment = Justify.Left;
|
|
||||||
rule.Style = Style.Parse("skyblue1 dim");
|
|
||||||
AnsiConsole.Write(rule);
|
|
||||||
|
|
||||||
ctx.Status($"Getting users");
|
|
||||||
var userIds = log.Select(l => l.UserId).Distinct().ToList();
|
|
||||||
|
|
||||||
var users = await _userRepository.GetAll(userIds);
|
|
||||||
AnsiConsole.WriteLine($"Got {users.Count} users of {userIds.Count} user ids.");
|
|
||||||
|
|
||||||
rule = new Rule($"[skyblue1]Creating CSV[/]");
|
|
||||||
rule.Alignment = Justify.Left;
|
|
||||||
rule.Style = Style.Parse("skyblue1 dim");
|
|
||||||
AnsiConsole.Write(rule);
|
|
||||||
|
|
||||||
ctx.Status($"Combining all information");
|
|
||||||
var result = (from l in log
|
|
||||||
join o in organizations on l.OrgId equals o.Id into gjO
|
|
||||||
from subO in gjO.DefaultIfEmpty()
|
|
||||||
join u in users on l.UserId equals u.Id into gjU
|
|
||||||
from subU in gjU.DefaultIfEmpty()
|
|
||||||
join p in projects on l.ProjectId equals p.Id into gjP
|
|
||||||
from subP in gjP.DefaultIfEmpty()
|
|
||||||
select new AuditLog()
|
|
||||||
{
|
|
||||||
GroupId = l.GroupId,
|
|
||||||
OrganizationId = l.OrgId,
|
|
||||||
OrganizationName = subO?.Name,
|
|
||||||
ProjectId = l.ProjectId,
|
|
||||||
ProjectName = subP?.Name,
|
|
||||||
UserId = l.UserId,
|
|
||||||
UserName = subU?.Name,
|
|
||||||
Event = l.Event,
|
|
||||||
Created = l.Created
|
|
||||||
}).ToList();
|
|
||||||
AnsiConsole.WriteLine($"Prepared {result.Count} lines to export of {log.Count} audit log records.");
|
|
||||||
|
|
||||||
ctx.Status($"Writing CSV");
|
|
||||||
await _csvRepository.WriteAll(result);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -2,55 +2,47 @@
|
|||||||
using Microsoft.Extensions.Logging;
|
using Microsoft.Extensions.Logging;
|
||||||
using Spectre.Console;
|
using Spectre.Console;
|
||||||
|
|
||||||
namespace SnykRestApi.Services
|
namespace SnykRestApi.Services;
|
||||||
|
|
||||||
|
public class OptionService(AuditLogService auditLogService)
|
||||||
|
: IHostedService
|
||||||
{
|
{
|
||||||
public class OptionService : IHostedService
|
|
||||||
|
public async Task StartAsync(CancellationToken cancellationToken)
|
||||||
{
|
{
|
||||||
private readonly ILogger<OptionService> _logger;
|
var rule = new Rule("[yellow]Cloud Egineering Console App[/]");
|
||||||
private readonly AuditLogService _auditLogService;
|
AnsiConsole.Write(rule);
|
||||||
|
|
||||||
public OptionService(ILogger<OptionService> logger, AuditLogService auditLogService)
|
|
||||||
|
Console.WriteLine("-- This couldn't be done in the Snyk UI, so here we are.... ");
|
||||||
|
Console.WriteLine();
|
||||||
|
|
||||||
|
var choices = new[]
|
||||||
{
|
{
|
||||||
_logger = logger;
|
"Create Audit log CSV.",
|
||||||
_auditLogService = auditLogService;
|
"Exit"
|
||||||
}
|
};
|
||||||
|
var result = AnsiConsole.Prompt(new SelectionPrompt<string>()
|
||||||
|
.Title("Select what you want to do:")
|
||||||
|
.PageSize(10)
|
||||||
|
.MoreChoicesText("[grey](Move up and down to reveal more choices)[/]")
|
||||||
|
.AddChoices(choices));
|
||||||
|
|
||||||
public async Task StartAsync(CancellationToken cancellationToken)
|
if (result == choices[0])
|
||||||
{
|
{
|
||||||
var rule = new Rule("[yellow]Cloud Egineering Console App[/]");
|
await auditLogService.CreateAuditLog();
|
||||||
AnsiConsole.Write(rule);
|
|
||||||
|
|
||||||
|
|
||||||
Console.WriteLine("-- This couldn't be done in the Snyk UI, so here we are.... ");
|
|
||||||
Console.WriteLine();
|
|
||||||
|
|
||||||
var choices = new[]
|
|
||||||
{
|
|
||||||
"Create Audit log CSV.",
|
|
||||||
"Exit"
|
|
||||||
};
|
|
||||||
var result = AnsiConsole.Prompt(new SelectionPrompt<string>()
|
|
||||||
.Title("Select what you want to do:")
|
|
||||||
.PageSize(10)
|
|
||||||
.MoreChoicesText("[grey](Move up and down to reveal more choices)[/]")
|
|
||||||
.AddChoices(choices));
|
|
||||||
|
|
||||||
if (result == choices[0])
|
|
||||||
{
|
|
||||||
await _auditLogService.CreateAuditLog();
|
|
||||||
}
|
|
||||||
//else if (result == choices[1])
|
|
||||||
//{
|
|
||||||
// // Do something
|
|
||||||
//}
|
|
||||||
|
|
||||||
rule = new Rule("[yellow]Done. Bye.[/]");
|
|
||||||
AnsiConsole.Write(rule);
|
|
||||||
}
|
}
|
||||||
|
//else if (result == choices[1])
|
||||||
|
//{
|
||||||
|
// // Do something
|
||||||
|
//}
|
||||||
|
|
||||||
public Task StopAsync(CancellationToken cancellationToken)
|
rule = new Rule("[yellow]Done. Bye.[/]");
|
||||||
{
|
AnsiConsole.Write(rule);
|
||||||
throw new NotImplementedException();
|
}
|
||||||
}
|
|
||||||
|
public Task StopAsync(CancellationToken cancellationToken)
|
||||||
|
{
|
||||||
|
throw new NotImplementedException();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -2,21 +2,21 @@
|
|||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFramework>net6.0</TargetFramework>
|
<TargetFramework>net8.0</TargetFramework>
|
||||||
<ImplicitUsings>enable</ImplicitUsings>
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Azure.Identity" Version="1.6.1" />
|
<PackageReference Include="Azure.Identity" Version="1.17.0" />
|
||||||
<PackageReference Include="Azure.Security.KeyVault.Secrets" Version="4.3.0" />
|
<PackageReference Include="Azure.Security.KeyVault.Secrets" Version="4.8.0" />
|
||||||
<PackageReference Include="CsvHelper" Version="28.0.1" />
|
<PackageReference Include="CsvHelper" Version="33.1.0" />
|
||||||
<PackageReference Include="Microsoft.Extensions.Configuration" Version="6.0.1" />
|
<PackageReference Include="Microsoft.Extensions.Configuration" Version="8.0.0" />
|
||||||
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="6.0.0" />
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.1" />
|
||||||
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="6.0.0" />
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.2" />
|
||||||
<PackageReference Include="Microsoft.Extensions.Hosting" Version="6.0.1" />
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.1" />
|
||||||
<PackageReference Include="Microsoft.Extensions.Http" Version="6.0.0" />
|
<PackageReference Include="Microsoft.Extensions.Http" Version="8.0.1" />
|
||||||
<PackageReference Include="Spectre.Console" Version="0.44.0" />
|
<PackageReference Include="Spectre.Console" Version="0.53.0" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|||||||
16
ConsoleApps/SonarClient/SonarClient.sln
Normal file
16
ConsoleApps/SonarClient/SonarClient.sln
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
|
||||||
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SonarClient", "SonarClient\SonarClient.csproj", "{1DF21902-A886-4C02-AB59-B19CB291498D}"
|
||||||
|
EndProject
|
||||||
|
Global
|
||||||
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
|
Debug|Any CPU = Debug|Any CPU
|
||||||
|
Release|Any CPU = Release|Any CPU
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||||
|
{1DF21902-A886-4C02-AB59-B19CB291498D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{1DF21902-A886-4C02-AB59-B19CB291498D}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{1DF21902-A886-4C02-AB59-B19CB291498D}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{1DF21902-A886-4C02-AB59-B19CB291498D}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
EndGlobalSection
|
||||||
|
EndGlobal
|
||||||
@@ -0,0 +1,93 @@
|
|||||||
|
using SonarClient.Repositories.Interfaces;
|
||||||
|
using Spectre.Console;
|
||||||
|
|
||||||
|
namespace SonarClient.Actions;
|
||||||
|
|
||||||
|
public class UpdatePermissionsAndTags(
|
||||||
|
IProjectRepository projectRepository,
|
||||||
|
IPermissionRepository permissionRepository,
|
||||||
|
IProjectTagRepository projectTagRepository)
|
||||||
|
{
|
||||||
|
private Dictionary<string, string> PermissionTemplateMapping { get; set; } = new();
|
||||||
|
|
||||||
|
public async Task Execute(string organizationId, string organizationKey)
|
||||||
|
{
|
||||||
|
var projects = await projectRepository.GetProjects(organizationId);
|
||||||
|
var permissionTemplates = await permissionRepository.GetPermissionTemplates(organizationKey);
|
||||||
|
PermissionTemplateMapping = permissionTemplates.ToDictionary(x => x.Name, x => x.Id);
|
||||||
|
|
||||||
|
var projectTeams = new List<ProjectTeam>();
|
||||||
|
|
||||||
|
foreach (var project in projects)
|
||||||
|
{
|
||||||
|
if (project.Tags.Length == 0)
|
||||||
|
{
|
||||||
|
AnsiConsole.MarkupLine($"[red]Project {project.Name} has zero tags[/]");
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
var oldTeam = project.Tags[0];
|
||||||
|
|
||||||
|
var newTeam = GetNewTeam(oldTeam);
|
||||||
|
|
||||||
|
if (newTeam == null)
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
projectTeams.Add(new ProjectTeam(project.Key, oldTeam, newTeam));
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach (var teamProjects in projectTeams.GroupBy(p => p.OldTeam).ToDictionary(g => g.Key, g => g.ToList()))
|
||||||
|
{
|
||||||
|
AnsiConsole.MarkupLine($"Do you want to update permissions and tags for team: [yellow]{teamProjects.Key}[/] to [yellow]{GetNewTeam(teamProjects.Key)}[/]? It will be updated for the following projects:");
|
||||||
|
foreach (var project in teamProjects.Value)
|
||||||
|
{
|
||||||
|
AnsiConsole.MarkupLine($"[green]{Markup.Escape($"- {project.ProjectKey}")}[/]");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!await AnsiConsole.ConfirmAsync("Confirm"))
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach (var project in teamProjects.Value)
|
||||||
|
{
|
||||||
|
await permissionRepository.ApplyTemplateToProject(project.ProjectKey, GetPermissionTemplateName(project.NewTeam));
|
||||||
|
await projectTagRepository.SetTags(project.ProjectKey, [project.NewTeam]);
|
||||||
|
AnsiConsole.MarkupLine($"[green]Updated permissions and tags for project: [yellow]{project.ProjectKey}[/][/]");
|
||||||
|
}
|
||||||
|
AnsiConsole.Clear();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private static string GetNewTeam(string oldTeam)
|
||||||
|
{
|
||||||
|
return oldTeam switch
|
||||||
|
{
|
||||||
|
"lime" => "platform",
|
||||||
|
"yellow" => "reporting",
|
||||||
|
"orange" => "reporting",
|
||||||
|
"red" => "surveying",
|
||||||
|
"pink" => "surveying",
|
||||||
|
"gray" => "surveying",
|
||||||
|
"blue" => "data-and-ai",
|
||||||
|
_ => null
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
private string GetPermissionTemplateName(string newTeam)
|
||||||
|
{
|
||||||
|
return newTeam switch
|
||||||
|
{
|
||||||
|
"platform" => PermissionTemplateMapping["Team Platform template"],
|
||||||
|
"reporting" => PermissionTemplateMapping["Team Reporting template"],
|
||||||
|
"surveying" => PermissionTemplateMapping["Team Surveying template"],
|
||||||
|
"data-and-ai" => PermissionTemplateMapping["Team Data and AI template"],
|
||||||
|
"managers" => PermissionTemplateMapping["Team Managers template"],
|
||||||
|
_ => throw new IndexOutOfRangeException($"Unknown team: {newTeam}")
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
private record ProjectTeam(string ProjectKey, string OldTeam, string NewTeam);
|
||||||
|
}
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
namespace SonarClient.Constants;
|
||||||
|
|
||||||
|
public static class SonarConstants
|
||||||
|
{
|
||||||
|
public const string SonarApiV1ClientName = "SonarApiV1Client";
|
||||||
|
public const string SonarApiV1BaseAddress = "https://sonarcloud.io/";
|
||||||
|
|
||||||
|
public const string SonarApiV2ClientName = "SonarApiV2Client";
|
||||||
|
public const string SonarApiV2BaseAddress = "https://api.sonarcloud.io/";
|
||||||
|
}
|
||||||
8
ConsoleApps/SonarClient/SonarClient/Models/Link.cs
Normal file
8
ConsoleApps/SonarClient/SonarClient/Models/Link.cs
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
namespace SonarClient.Models;
|
||||||
|
|
||||||
|
public class Link
|
||||||
|
{
|
||||||
|
public string Name { get; set; }
|
||||||
|
public string Url { get; set; }
|
||||||
|
public string Type { get; set; }
|
||||||
|
}
|
||||||
9
ConsoleApps/SonarClient/SonarClient/Models/Paging.cs
Normal file
9
ConsoleApps/SonarClient/SonarClient/Models/Paging.cs
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
namespace SonarClient.Models;
|
||||||
|
|
||||||
|
public class Paging
|
||||||
|
{
|
||||||
|
public int PageIndex { get; set; }
|
||||||
|
public int PageSize { get; set; }
|
||||||
|
public int Total { get; set; }
|
||||||
|
}
|
||||||
|
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
namespace SonarClient.Models;
|
||||||
|
|
||||||
|
public class PermissionTemplate
|
||||||
|
{
|
||||||
|
public string Id { get; set; }
|
||||||
|
public string Name { get; set; }
|
||||||
|
}
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
namespace SonarClient.Models;
|
||||||
|
|
||||||
|
public class PermissionTemplateResponse
|
||||||
|
{
|
||||||
|
public List<PermissionTemplate> PermissionTemplates { get; set; }
|
||||||
|
}
|
||||||
16
ConsoleApps/SonarClient/SonarClient/Models/Project.cs
Normal file
16
ConsoleApps/SonarClient/SonarClient/Models/Project.cs
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
namespace SonarClient.Models;
|
||||||
|
|
||||||
|
public class Project
|
||||||
|
{
|
||||||
|
public string Id { get; set; }
|
||||||
|
public string LegacyId { get; set; }
|
||||||
|
public string Key { get; set; }
|
||||||
|
public string Name { get; set; }
|
||||||
|
public string Visibility { get; set; }
|
||||||
|
public string OrganizationId { get; set; }
|
||||||
|
public string Description { get; set; }
|
||||||
|
public string[] Tags { get; set; }
|
||||||
|
public Link[] Links { get; set; }
|
||||||
|
public string CreatedAt { get; set; }
|
||||||
|
public string UpdatedAt { get; set; }
|
||||||
|
}
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
namespace SonarClient.Models;
|
||||||
|
|
||||||
|
public class ProjectsSearchResponse
|
||||||
|
{
|
||||||
|
public Paging Page { get; set; }
|
||||||
|
public List<Project> Projects { get; set; }
|
||||||
|
}
|
||||||
59
ConsoleApps/SonarClient/SonarClient/Program.cs
Normal file
59
ConsoleApps/SonarClient/SonarClient/Program.cs
Normal file
@@ -0,0 +1,59 @@
|
|||||||
|
using Microsoft.Extensions.Configuration;
|
||||||
|
using Microsoft.Extensions.DependencyInjection;
|
||||||
|
using Microsoft.Extensions.Logging;
|
||||||
|
using SonarClient.Actions;
|
||||||
|
using SonarClient.Constants;
|
||||||
|
using SonarClient.Repositories;
|
||||||
|
using SonarClient.Repositories.Interfaces;
|
||||||
|
using Spectre.Console;
|
||||||
|
using System.Net.Http.Headers;
|
||||||
|
using System.Text;
|
||||||
|
|
||||||
|
var builder = new ConfigurationBuilder()
|
||||||
|
.AddJsonFile("appsettings.json")
|
||||||
|
.AddUserSecrets<Program>()
|
||||||
|
.AddEnvironmentVariables();
|
||||||
|
var configurationRoot = builder.Build();
|
||||||
|
|
||||||
|
var sonarConfiguration = configurationRoot.GetSection("sonar");
|
||||||
|
|
||||||
|
var token = sonarConfiguration["api_key"];
|
||||||
|
var organizationId = sonarConfiguration["organization_id"];
|
||||||
|
var organizationKey = sonarConfiguration["organization_key"];
|
||||||
|
|
||||||
|
var services = new ServiceCollection();
|
||||||
|
|
||||||
|
services.AddLogging(options =>
|
||||||
|
{
|
||||||
|
options.SetMinimumLevel(LogLevel.Warning);
|
||||||
|
options.AddConsole();
|
||||||
|
});
|
||||||
|
|
||||||
|
services.AddHttpClient(SonarConstants.SonarApiV1ClientName, c =>
|
||||||
|
{
|
||||||
|
c.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Basic", Convert.ToBase64String(Encoding.UTF8.GetBytes($"{token}:")));
|
||||||
|
c.BaseAddress = new Uri(SonarConstants.SonarApiV1BaseAddress);
|
||||||
|
});
|
||||||
|
services.AddHttpClient(SonarConstants.SonarApiV2ClientName, c =>
|
||||||
|
{
|
||||||
|
c.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", token);
|
||||||
|
c.BaseAddress = new Uri(SonarConstants.SonarApiV2BaseAddress);
|
||||||
|
});
|
||||||
|
|
||||||
|
// Repositories
|
||||||
|
services.AddTransient<IProjectRepository, ProjectRepository>();
|
||||||
|
services.AddTransient<IPermissionRepository, PermissionRepository>();
|
||||||
|
services.AddTransient<IProjectTagRepository, ProjectTagRepository>();
|
||||||
|
|
||||||
|
// Actions
|
||||||
|
services.AddTransient<UpdatePermissionsAndTags>();
|
||||||
|
|
||||||
|
await using var serviceProvider = services.BuildServiceProvider();
|
||||||
|
|
||||||
|
var updatePermissionsAndTags = serviceProvider.GetRequiredService<UpdatePermissionsAndTags>();
|
||||||
|
|
||||||
|
AnsiConsole.Confirm("Are you sure you want to update permissions?", false);
|
||||||
|
await updatePermissionsAndTags.Execute(organizationId, organizationKey);
|
||||||
|
|
||||||
|
Console.WriteLine("Press any key to exit...");
|
||||||
|
Console.ReadKey();
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
using SonarClient.Models;
|
||||||
|
|
||||||
|
namespace SonarClient.Repositories.Interfaces;
|
||||||
|
|
||||||
|
public interface IPermissionRepository
|
||||||
|
{
|
||||||
|
Task<List<PermissionTemplate>> GetPermissionTemplates(string organizationKey);
|
||||||
|
Task ApplyTemplateToProject(string projectKey, string templateId);
|
||||||
|
}
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
using SonarClient.Models;
|
||||||
|
|
||||||
|
namespace SonarClient.Repositories.Interfaces;
|
||||||
|
|
||||||
|
public interface IProjectRepository
|
||||||
|
{
|
||||||
|
Task<List<Project>> GetProjects(string organizationId);
|
||||||
|
}
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
namespace SonarClient.Repositories.Interfaces;
|
||||||
|
|
||||||
|
public interface IProjectTagRepository
|
||||||
|
{
|
||||||
|
Task SetTags(string projectKey, string[] tags);
|
||||||
|
}
|
||||||
@@ -0,0 +1,28 @@
|
|||||||
|
using SonarClient.Constants;
|
||||||
|
using SonarClient.Models;
|
||||||
|
using SonarClient.Repositories.Interfaces;
|
||||||
|
using System.Net.Http.Json;
|
||||||
|
|
||||||
|
namespace SonarClient.Repositories;
|
||||||
|
|
||||||
|
public class PermissionRepository(IHttpClientFactory httpClientFactory) : IPermissionRepository
|
||||||
|
{
|
||||||
|
private readonly HttpClient _httpClient = httpClientFactory.CreateClient(SonarConstants.SonarApiV1ClientName);
|
||||||
|
|
||||||
|
public async Task<List<PermissionTemplate>> GetPermissionTemplates(string organizationKey)
|
||||||
|
{
|
||||||
|
var permissionTemplateResponse = await _httpClient.GetFromJsonAsync<PermissionTemplateResponse>($"/api/permissions/search_templates?organization={organizationKey}");
|
||||||
|
return permissionTemplateResponse.PermissionTemplates;
|
||||||
|
}
|
||||||
|
|
||||||
|
public async Task ApplyTemplateToProject(string projectKey, string templateId)
|
||||||
|
{
|
||||||
|
var content = new FormUrlEncodedContent([
|
||||||
|
new KeyValuePair<string, string>("projectKey", projectKey),
|
||||||
|
new KeyValuePair<string, string>("templateId", templateId)
|
||||||
|
]);
|
||||||
|
|
||||||
|
var response = await _httpClient.PostAsync("api/permissions/apply_template", content);
|
||||||
|
response.EnsureSuccessStatusCode();
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,34 @@
|
|||||||
|
using SonarClient.Constants;
|
||||||
|
using SonarClient.Models;
|
||||||
|
using SonarClient.Repositories.Interfaces;
|
||||||
|
using System.Net.Http.Json;
|
||||||
|
|
||||||
|
namespace SonarClient.Repositories;
|
||||||
|
|
||||||
|
public class ProjectRepository(IHttpClientFactory httpClientFactory) : IProjectRepository
|
||||||
|
{
|
||||||
|
private readonly HttpClient _httpClient = httpClientFactory.CreateClient(SonarConstants.SonarApiV2ClientName);
|
||||||
|
|
||||||
|
public async Task<List<Project>> GetProjects(string organizationId)
|
||||||
|
{
|
||||||
|
var projects = new List<Project>();
|
||||||
|
var currentPage = 1;
|
||||||
|
ProjectsSearchResponse projectResponse;
|
||||||
|
|
||||||
|
do
|
||||||
|
{
|
||||||
|
projectResponse = await GetProjects(organizationId, currentPage);
|
||||||
|
projects.AddRange(projectResponse.Projects);
|
||||||
|
currentPage++;
|
||||||
|
} while (projects.Count < projectResponse.Page.Total);
|
||||||
|
|
||||||
|
return projects;
|
||||||
|
}
|
||||||
|
|
||||||
|
private async Task<ProjectsSearchResponse> GetProjects(string organizationId, int page)
|
||||||
|
{
|
||||||
|
return await _httpClient.GetFromJsonAsync<ProjectsSearchResponse>(
|
||||||
|
$"/projects/projects?organizationIds={organizationId}&pageIndex={page}"
|
||||||
|
) ?? throw new InvalidOperationException("Failed to retrieve projects from SonarCloud");
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,22 @@
|
|||||||
|
using SonarClient.Constants;
|
||||||
|
using SonarClient.Repositories.Interfaces;
|
||||||
|
|
||||||
|
namespace SonarClient.Repositories;
|
||||||
|
|
||||||
|
public class ProjectTagRepository(IHttpClientFactory httpClientFactory) : IProjectTagRepository
|
||||||
|
{
|
||||||
|
private readonly HttpClient _httpClient = httpClientFactory.CreateClient(SonarConstants.SonarApiV1ClientName);
|
||||||
|
|
||||||
|
public async Task SetTags(string projectKey, string[] tags)
|
||||||
|
{
|
||||||
|
var tagsCommaSeperated = string.Join(",", tags);
|
||||||
|
|
||||||
|
var content = new FormUrlEncodedContent([
|
||||||
|
new KeyValuePair<string, string>("project", projectKey),
|
||||||
|
new KeyValuePair<string, string>("tags", tagsCommaSeperated)
|
||||||
|
]);
|
||||||
|
|
||||||
|
var response = await _httpClient.PostAsync("api/project_tags/set", content);
|
||||||
|
response.EnsureSuccessStatusCode();
|
||||||
|
}
|
||||||
|
}
|
||||||
24
ConsoleApps/SonarClient/SonarClient/SonarClient.csproj
Normal file
24
ConsoleApps/SonarClient/SonarClient/SonarClient.csproj
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<OutputType>Exe</OutputType>
|
||||||
|
<TargetFramework>net8.0</TargetFramework>
|
||||||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
|
<Nullable>disable</Nullable>
|
||||||
|
<UserSecretsId>e28ed066-de2c-46f8-865f-4b0eda67be3c</UserSecretsId>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<PackageReference Include="Microsoft.Extensions.Configuration" Version="8.0.0" />
|
||||||
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.1" />
|
||||||
|
<PackageReference Include="Microsoft.Extensions.Http" Version="8.0.1" />
|
||||||
|
<PackageReference Include="Spectre.Console" Version="0.53.0" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<None Update="appsettings.json">
|
||||||
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||||||
|
</None>
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
</Project>
|
||||||
7
ConsoleApps/SonarClient/SonarClient/appsettings.json
Normal file
7
ConsoleApps/SonarClient/SonarClient/appsettings.json
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"sonar": {
|
||||||
|
"api_key": "",
|
||||||
|
"organization_id": "aa1160b9-e4ab-4d2a-9ce5-bac8d9b5fb06",
|
||||||
|
"organization_key": "effectory"
|
||||||
|
}
|
||||||
|
}
|
||||||
44
ConsoleApps/SonarClient/SonarClient/sonar-client.md
Normal file
44
ConsoleApps/SonarClient/SonarClient/sonar-client.md
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
# SonarClient Console Application
|
||||||
|
|
||||||
|
## Overview
|
||||||
|
|
||||||
|
SonarClient is a console application designed to interact with SonarQube/SonarCloud REST APIs. This tool
|
||||||
|
provides functionality to manage, query, and analyze code quality metrics and security findings from SonarQube
|
||||||
|
instances.
|
||||||
|
|
||||||
|
Depending on the operations, the application will reach out to v1 or v2 of the SonarQube API.
|
||||||
|
|
||||||
|
Documentation for the v1 API can be found here: https://sonarcloud.io/web_api
|
||||||
|
Documentation for the v2 API can be found here: https://api-docs.sonarsource.com/
|
||||||
|
|
||||||
|
## Features
|
||||||
|
|
||||||
|
- **Update Permissions And Tags**: Update permissions and tags for all projects. Added for migration to new team structure.
|
||||||
|
|
||||||
|
## Operations
|
||||||
|
|
||||||
|
- Retrieve all projects
|
||||||
|
- Set tags for a project
|
||||||
|
- Apply permission template on a project
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
|
||||||
|
1. Retrieve a personal token from SonarCloud:
|
||||||
|
- Go to: https://sonarcloud.io/account/security
|
||||||
|
- Enter token name
|
||||||
|
- Click `Generate Token`
|
||||||
|
- Copy token
|
||||||
|
2. In Rider
|
||||||
|
- Right-click on the `SonarClient` project
|
||||||
|
- Select `Tools > .NET User Secrets`
|
||||||
|
- This will open `secrets.json`
|
||||||
|
- Add the following:
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"sonar": {
|
||||||
|
"api_key": "[add token here]"
|
||||||
|
}
|
||||||
|
}`
|
||||||
|
3. Run the application
|
||||||
|
4. When done revoke the token
|
||||||
|
|
||||||
47
_azuredevops/cloud-engineering.yml
Normal file
47
_azuredevops/cloud-engineering.yml
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
trigger:
|
||||||
|
branches:
|
||||||
|
include:
|
||||||
|
- master
|
||||||
|
pool:
|
||||||
|
vmImage: 'windows-latest'
|
||||||
|
|
||||||
|
variables:
|
||||||
|
repositoryName: $(Build.Repository.Name)
|
||||||
|
buildConfiguration: release
|
||||||
|
|
||||||
|
stages:
|
||||||
|
- stage: build
|
||||||
|
displayName: 'Build for branch policy validation'
|
||||||
|
jobs:
|
||||||
|
- job: build
|
||||||
|
displayName: 'Build solution'
|
||||||
|
steps:
|
||||||
|
- task: SonarCloudPrepare@3
|
||||||
|
inputs:
|
||||||
|
SonarCloud: SonarCloud
|
||||||
|
organization: effectory
|
||||||
|
scannerMode: dotnet
|
||||||
|
projectKey: platform-cloud-engineering
|
||||||
|
projectName: repositoryName
|
||||||
|
extraProperties: |
|
||||||
|
sonar.exclusions=**/obj/**,**/*.dll
|
||||||
|
sonar.cs.vstest.reportsPaths=$(Agent.TempDirectory)/**/*.trx
|
||||||
|
sonar.cs.opencover.reportsPaths=$(Agent.TempDirectory)/**/coverage.opencover.xml
|
||||||
|
sonar.coverage.exclusions=**/*
|
||||||
|
sonar.scm.enabled=true
|
||||||
|
sonar.scm.provider=git
|
||||||
|
sonar.pullrequest.provider=vsts
|
||||||
|
|
||||||
|
- task: DotNetCoreCLI@2
|
||||||
|
displayName: 'dotnet build console apps'
|
||||||
|
inputs:
|
||||||
|
command: build
|
||||||
|
projects: |
|
||||||
|
ConsoleApps/**/*.csproj
|
||||||
|
arguments: '-c $(buildConfiguration)'
|
||||||
|
|
||||||
|
- task: SonarCloudAnalyze@3
|
||||||
|
|
||||||
|
- task: SonarCloudPublish@3
|
||||||
|
inputs:
|
||||||
|
pollingTimeoutSec: '300'
|
||||||
Reference in New Issue
Block a user