-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGet-AbsoluteURLFromRelative.ps1
80 lines (75 loc) · 4.15 KB
/
Get-AbsoluteURLFromRelative.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
function Get-AbsoluteURLFromRelative {
#region FunctionHeader #####################################################
# This functions takes a potentially relative URL (/etc/foo.html) and turns it
# into an absolute URL if it is, in fact, a relative URL. If the URL is an
# absolute URL, then the function simply returns the absolute URL.
#
# The function takes two positional arguments.
#
# The first argument is a string containing the base URL (i.e., the parent URL)
# from which the second URL is derived
#
# The second argument is a string containing the (potentially) relative URL.
#
# The function returns a string that represents the absolute URL.
#
# Example 1:
# $strURLBase = 'http://foo.net/stuff/index.html'
# $strURLRelative = '/downloads/list.txt'
# $strURLAbsolute = Get-AbsoluteURLFromRelative $strURLBase $strURLRelative
# # $strURLAbsolute is 'http://foo.net/downloads/list.txt'
#
# Example 2:
# $strURLBase = 'http://foo.net/stuff/index.html'
# $strURLRelative = 'downloads/list.txt'
# $strURLAbsolute = Get-AbsoluteURLFromRelative $strURLBase $strURLRelative
# # $strURLAbsolute is 'http://foo.net/stuff/downloads/list.txt'
#
# Example 3:
# $strURLBase = 'http://foo.net/stuff/index.html'
# $strURLRelative = 'http://foo.net/stuff/downloads/list.txt'
# $strURLAbsolute = Get-AbsoluteURLFromRelative $strURLBase $strURLRelative
# # $strURLAbsolute is 'http://foo.net/stuff/downloads/list.txt'
#
# Version 1.0.20241110.0
#endregion FunctionHeader #####################################################
#region License ################################################################
# Copyright (c) 2024 Frank Lesniak
#
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in the
# Software without restriction, including without limitation the rights to use,
# copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the
# Software, and to permit persons to whom the Software is furnished to do so,
# subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
# FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
# COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
# AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#endregion License ################################################################
#region Acknowledgements #######################################################
# Note: this function is converted from
# https://stackoverflow.com/a/34603567/2134110
# Thanks to Vikash Rathee for pointing me in the right direction
#endregion Acknowledgements #######################################################
#region DownloadLocationNotice #########################################
# The most up-to-date version of this script can be found on the author's
# GitHub repository at:
# https://github.com/franklesniak/PowerShell_Resources
#endregion DownloadLocationNotice #########################################
$strURLBase = $args[0]
$strURLRelative = $args[1]
$uriKindRelativeOrAbsolute = [System.UriKind]::RelativeOrAbsolute
$uriWorking = New-Object -TypeName 'System.Uri' -ArgumentList @($strURLRelative, $uriKindRelativeOrAbsolute)
if ($uriWorking.IsAbsoluteUri -ne $true) {
$uriBase = New-Object -TypeName 'System.Uri' -ArgumentList @($strURLBase)
$uriWorking = New-Object -TypeName 'System.Uri' -ArgumentList @($uriBase, $strURLRelative)
}
return ($uriWorking.ToString())
}