ChocolateyGet.psm1

# Current script path
[string]$ScriptPath = Split-Path (Get-Variable MyInvocation -Scope Script).Value.MyCommand.Definition -Parent

# Define provider related variables
$script:PackageSource = "Chocolatey"
$script:additionalArguments = "AdditionalArguments"
$script:AllVersions = "AllVersions"
$script:AcceptLicense = "AcceptLicense"

# Define choco related variables
$script:ChocoExeName = 'choco.exe'

# Only allow the native Chocolatey .NET library with FullCLR
if ($PSEdition -eq 'Desktop' -and -not $env:CHOCO_CLI) {
    $script:NativeAPI = $true
    # If Choco.exe isn't already installed, try to guess where the API files should get extracted
    if (-not $env:ChocolateyInstall) {
        $env:ChocolateyInstall = "$($env:ProgramData)\chocolatey"
    }
} elseif (-not (Get-ChocoPath)) {
    Write-Debug ("Choco not already installed")
    $ChocoExePath = Install-ChocoBinaries
}

# Utility variables
$script:FastReferenceRegex = "(?<name>[^#]*)#(?<version>[^\s]*)#(?<source>[^#]*)"
$script:ChocoSourcePropertyNames = @(
    'Name',
    'Location',
    'Disabled',
    'UserName',
    'Certificate',
    'Priority',
    'Bypass Proxy',
    'Allow Self Service',
    'Visibile to Admins Only'
)

Import-LocalizedData LocalizedData -filename "ChocolateyGet.Resource.psd1"

# Load included libraries, since the manifest wont handle that for package providers
if ($script:NativeAPI) {
    Get-ChildItem $ScriptPath/lib/ -Filter 'chocolatey.dll' -File | ForEach-Object {
        Add-Type -Path $_.FullName
    }
}
# Dot sourcing private script files
Get-ChildItem $ScriptPath/private -Recurse -Filter '*.ps1' -File | ForEach-Object {
    . $_.FullName
}
# Dot sourcing public function files
Get-ChildItem $ScriptPath/public -Recurse -Filter '*.ps1' -File | ForEach-Object {
    . $_.FullName

    # Find all the functions defined no deeper than the first level deep and export it.
    # This looks ugly but allows us to not keep any uneeded variables from polluting the module.
    ([System.Management.Automation.Language.Parser]::ParseInput((Get-Content -Path $_.FullName -Raw), [ref]$null, [ref]$null)).FindAll({ $args[0] -is [System.Management.Automation.Language.FunctionDefinitionAst] }, $false) | ForEach-Object {
        Export-ModuleMember $_.Name
    }
}