• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..20-Dec-2019-

helper/url/H20-Dec-2019-6840

LICENSEH A D20-Dec-201915.6 KiB355256

README.mdH A D20-Dec-201913.4 KiB359257

appveyor.ymlH A D20-Dec-2019273 1713

checksum.goH A D20-Dec-20197.7 KiB315235

client.goH A D20-Dec-20198 KiB317191

client_mode.goH A D20-Dec-2019776 258

client_option.goH A D20-Dec-2019943 4734

client_option_progress.goH A D20-Dec-20191.1 KiB3913

common.goH A D20-Dec-2019206 1512

copy_dir.goH A D20-Dec-20191.5 KiB6844

decompress.goH A D20-Dec-20191.8 KiB6038

decompress_bzip2.goH A D20-Dec-2019795 3823

decompress_gzip.goH A D20-Dec-2019848 4227

decompress_tar.goH A D20-Dec-20193.5 KiB151107

decompress_tbz2.goH A D20-Dec-2019694 3423

decompress_testing.goH A D20-Dec-20194.1 KiB172137

decompress_tgz.goH A D20-Dec-2019815 4028

decompress_txz.goH A D20-Dec-2019790 4027

decompress_xz.goH A D20-Dec-2019820 4226

decompress_zip.goH A D20-Dec-20191.8 KiB9062

detect.goH A D20-Dec-20192.6 KiB10663

detect_bitbucket.goH A D20-Dec-20191.6 KiB6752

detect_file.goH A D20-Dec-20191.5 KiB6846

detect_gcs.goH A D20-Dec-2019935 4432

detect_git.goH A D20-Dec-2019573 2718

detect_github.goH A D20-Dec-20191,019 4835

detect_s3.goH A D20-Dec-20191.6 KiB6248

detect_ssh.goH A D20-Dec-20191.1 KiB5034

folder_storage.goH A D20-Dec-20191.4 KiB6643

get.goH A D20-Dec-20194.3 KiB15384

get_base.goH A D20-Dec-2019457 2112

get_file.goH A D20-Dec-2019716 3723

get_file_copy.goH A D20-Dec-20192 KiB7648

get_file_unix.goH A D20-Dec-20191.9 KiB9466

get_file_windows.goH A D20-Dec-20192.7 KiB12588

get_gcs.goH A D20-Dec-20193.5 KiB166126

get_git.goH A D20-Dec-20197.4 KiB291203

get_hg.goH A D20-Dec-20193.3 KiB13694

get_http.goH A D20-Dec-20198.1 KiB323220

get_mock.goH A D20-Dec-20191,017 5540

get_s3.goH A D20-Dec-20196.3 KiB269202

go.modH A D20-Dec-2019852 2321

go.sumH A D20-Dec-201918.1 KiB183182

netrc.goH A D20-Dec-20191.4 KiB6844

source.goH A D20-Dec-20191.8 KiB7642

storage.goH A D20-Dec-2019441 145

README.md

1# go-getter
2
3[![Build Status](http://img.shields.io/travis/hashicorp/go-getter.svg?style=flat-square)][travis]
4[![Build status](https://ci.appveyor.com/api/projects/status/ulq3qr43n62croyq/branch/master?svg=true)][appveyor]
5[![Go Documentation](http://img.shields.io/badge/go-documentation-blue.svg?style=flat-square)][godocs]
6
7[travis]: http://travis-ci.org/hashicorp/go-getter
8[godocs]: http://godoc.org/github.com/hashicorp/go-getter
9[appveyor]: https://ci.appveyor.com/project/hashicorp/go-getter/branch/master
10
11go-getter is a library for Go (golang) for downloading files or directories
12from various sources using a URL as the primary form of input.
13
14The power of this library is being flexible in being able to download
15from a number of different sources (file paths, Git, HTTP, Mercurial, etc.)
16using a single string as input. This removes the burden of knowing how to
17download from a variety of sources from the implementer.
18
19The concept of a _detector_ automatically turns invalid URLs into proper
20URLs. For example: "github.com/hashicorp/go-getter" would turn into a
21Git URL. Or "./foo" would turn into a file URL. These are extensible.
22
23This library is used by [Terraform](https://terraform.io) for
24downloading modules and [Nomad](https://nomadproject.io) for downloading
25binaries.
26
27## Installation and Usage
28
29Package documentation can be found on
30[GoDoc](http://godoc.org/github.com/hashicorp/go-getter).
31
32Installation can be done with a normal `go get`:
33
34```
35$ go get github.com/hashicorp/go-getter
36```
37
38go-getter also has a command you can use to test URL strings:
39
40```
41$ go install github.com/hashicorp/go-getter/cmd/go-getter
42...
43
44$ go-getter github.com/foo/bar ./foo
45...
46```
47
48The command is useful for verifying URL structures.
49
50## URL Format
51
52go-getter uses a single string URL as input to download from a variety of
53protocols. go-getter has various "tricks" with this URL to do certain things.
54This section documents the URL format.
55
56### Supported Protocols and Detectors
57
58**Protocols** are used to download files/directories using a specific
59mechanism. Example protocols are Git and HTTP.
60
61**Detectors** are used to transform a valid or invalid URL into another
62URL if it matches a certain pattern. Example: "github.com/user/repo" is
63automatically transformed into a fully valid Git URL. This allows go-getter
64to be very user friendly.
65
66go-getter out of the box supports the following protocols. Additional protocols
67can be augmented at runtime by implementing the `Getter` interface.
68
69  * Local files
70  * Git
71  * Mercurial
72  * HTTP
73  * Amazon S3
74  * Google GCP
75
76In addition to the above protocols, go-getter has what are called "detectors."
77These take a URL and attempt to automatically choose the best protocol for
78it, which might involve even changing the protocol. The following detection
79is built-in by default:
80
81  * File paths such as "./foo" are automatically changed to absolute
82    file URLs.
83  * GitHub URLs, such as "github.com/mitchellh/vagrant" are automatically
84    changed to Git protocol over HTTP.
85  * BitBucket URLs, such as "bitbucket.org/mitchellh/vagrant" are automatically
86    changed to a Git or mercurial protocol using the BitBucket API.
87
88### Forced Protocol
89
90In some cases, the protocol to use is ambiguous depending on the source
91URL. For example, "http://github.com/mitchellh/vagrant.git" could reference
92an HTTP URL or a Git URL. Forced protocol syntax is used to disambiguate this
93URL.
94
95Forced protocol can be done by prefixing the URL with the protocol followed
96by double colons. For example: `git::http://github.com/mitchellh/vagrant.git`
97would download the given HTTP URL using the Git protocol.
98
99Forced protocols will also override any detectors.
100
101In the absence of a forced protocol, detectors may be run on the URL, transforming
102the protocol anyways. The above example would've used the Git protocol either
103way since the Git detector would've detected it was a GitHub URL.
104
105### Protocol-Specific Options
106
107Each protocol can support protocol-specific options to configure that
108protocol. For example, the `git` protocol supports specifying a `ref`
109query parameter that tells it what ref to checkout for that Git
110repository.
111
112The options are specified as query parameters on the URL (or URL-like string)
113given to go-getter. Using the Git example above, the URL below is a valid
114input to go-getter:
115
116    github.com/hashicorp/go-getter?ref=abcd1234
117
118The protocol-specific options are documented below the URL format
119section. But because they are part of the URL, we point it out here so
120you know they exist.
121
122### Subdirectories
123
124If you want to download only a specific subdirectory from a downloaded
125directory, you can specify a subdirectory after a double-slash `//`.
126go-getter will first download the URL specified _before_ the double-slash
127(as if you didn't specify a double-slash), but will then copy the
128path after the double slash into the target directory.
129
130For example, if you're downloading this GitHub repository, but you only
131want to download the `testdata` directory, you can do the following:
132
133```
134https://github.com/hashicorp/go-getter.git//testdata
135```
136
137If you downloaded this to the `/tmp` directory, then the file
138`/tmp/archive.gz` would exist. Notice that this file is in the `testdata`
139directory in this repository, but because we specified a subdirectory,
140go-getter automatically copied only that directory contents.
141
142Subdirectory paths may contain may also use filesystem glob patterns.
143The path must match _exactly one_ entry or go-getter will return an error.
144This is useful if you're not sure the exact directory name but it follows
145a predictable naming structure.
146
147For example, the following URL would also work:
148
149```
150https://github.com/hashicorp/go-getter.git//test-*
151```
152
153### Checksumming
154
155For file downloads of any protocol, go-getter can automatically verify
156a checksum for you. Note that checksumming only works for downloading files,
157not directories, but checksumming will work for any protocol.
158
159To checksum a file, append a `checksum` query parameter to the URL. go-getter
160will parse out this query parameter automatically and use it to verify the
161checksum. The parameter value can be in the format of `type:value` or just
162`value`, where type is "md5", "sha1", "sha256", "sha512" or "file" . The
163"value" should be the actual checksum value or download URL for "file". When
164`type` part is omitted, type will be guessed based on the length of the
165checksum string. Examples:
166
167```
168./foo.txt?checksum=md5:b7d96c89d09d9e204f5fedc4d5d55b21
169```
170
171```
172./foo.txt?checksum=b7d96c89d09d9e204f5fedc4d5d55b21
173```
174
175```
176./foo.txt?checksum=file:./foo.txt.sha256sum
177```
178
179When checksumming from a file - ex: with `checksum=file:url` - go-getter will
180get the file linked in the URL after `file:` using the same configuration. For
181example, in `file:http://releases.ubuntu.com/cosmic/MD5SUMS` go-getter will
182download a checksum file under the aforementioned url using the http protocol.
183All protocols supported by go-getter can be used. The checksum file will be
184downloaded in a temporary file then parsed. The destination of the temporary
185file can be changed by setting system specific environment variables: `TMPDIR`
186for unix; `TMP`, `TEMP` or `USERPROFILE` on windows. Read godoc of
187[os.TempDir](https://golang.org/pkg/os/#TempDir) for more information on the
188temporary directory selection. Content of files are expected to be BSD or GNU
189style. Once go-getter is done with the checksum file; it is deleted.
190
191The checksum query parameter is never sent to the backend protocol
192implementation. It is used at a higher level by go-getter itself.
193
194If the destination file exists and the checksums match: download
195will be skipped.
196
197### Unarchiving
198
199go-getter will automatically unarchive files into a file or directory
200based on the extension of the file being requested (over any protocol).
201This works for both file and directory downloads.
202
203go-getter looks for an `archive` query parameter to specify the format of
204the archive. If this isn't specified, go-getter will use the extension of
205the path to see if it appears archived. Unarchiving can be explicitly
206disabled by setting the `archive` query parameter to `false`.
207
208The following archive formats are supported:
209
210  * `tar.gz` and `tgz`
211  * `tar.bz2` and `tbz2`
212  * `tar.xz` and `txz`
213  * `zip`
214  * `gz`
215  * `bz2`
216  * `xz`
217
218For example, an example URL is shown below:
219
220```
221./foo.zip
222```
223
224This will automatically be inferred to be a ZIP file and will be extracted.
225You can also be explicit about the archive type:
226
227```
228./some/other/path?archive=zip
229```
230
231And finally, you can disable archiving completely:
232
233```
234./some/path?archive=false
235```
236
237You can combine unarchiving with the other features of go-getter such
238as checksumming. The special `archive` query parameter will be removed
239from the URL before going to the final protocol downloader.
240
241## Protocol-Specific Options
242
243This section documents the protocol-specific options that can be specified for
244go-getter. These options should be appended to the input as normal query
245parameters ([HTTP headers](#headers) are an exception to this, however).
246Depending on the usage of go-getter, applications may provide alternate ways of
247inputting options. For example, [Nomad](https://www.nomadproject.io) provides a
248nice options block for specifying options rather than in the URL.
249
250## General (All Protocols)
251
252The options below are available to all protocols:
253
254  * `archive` - The archive format to use to unarchive this file, or "" (empty
255    string) to disable unarchiving. For more details, see the complete section
256    on archive support above.
257
258  * `checksum` - Checksum to verify the downloaded file or archive. See
259    the entire section on checksumming above for format and more details.
260
261  * `filename` - When in file download mode, allows specifying the name of the
262    downloaded file on disk. Has no effect in directory mode.
263
264### Local Files (`file`)
265
266None
267
268### Git (`git`)
269
270  * `ref` - The Git ref to checkout. This is a ref, so it can point to
271    a commit SHA, a branch name, etc. If it is a named ref such as a branch
272    name, go-getter will update it to the latest on each get.
273
274  * `sshkey` - An SSH private key to use during clones. The provided key must
275    be a base64-encoded string. For example, to generate a suitable `sshkey`
276    from a private key file on disk, you would run `base64 -w0 <file>`.
277
278    **Note**: Git 2.3+ is required to use this feature.
279
280  * `depth` - The Git clone depth. The provided number specifies the last `n`
281    revisions to clone from the repository.
282
283
284The `git` getter accepts both URL-style SSH addresses like
285`git::ssh://git@example.com/foo/bar`, and "scp-style" addresses like
286`git::git@example.com/foo/bar`. In the latter case, omitting the `git::`
287force prefix is allowed if the username prefix is exactly `git@`.
288
289The "scp-style" addresses _cannot_ be used in conjunction with the `ssh://`
290scheme prefix, because in that case the colon is used to mark an optional
291port number to connect on, rather than to delimit the path from the host.
292
293### Mercurial (`hg`)
294
295  * `rev` - The Mercurial revision to checkout.
296
297### HTTP (`http`)
298
299#### Basic Authentication
300
301To use HTTP basic authentication with go-getter, simply prepend `username:password@` to the
302hostname in the URL such as `https://Aladdin:OpenSesame@www.example.com/index.html`. All special
303characters, including the username and password, must be URL encoded.
304
305#### Headers
306
307Optional request headers can be added by supplying them in a custom
308[`HttpGetter`](https://godoc.org/github.com/hashicorp/go-getter#HttpGetter)
309(_not_ as query parameters like most other options). These headers will be sent
310out on every request the getter in question makes.
311
312### S3 (`s3`)
313
314S3 takes various access configurations in the URL. Note that it will also
315read these from standard AWS environment variables if they're set. S3 compliant servers like Minio
316are also supported. If the query parameters are present, these take priority.
317
318  * `aws_access_key_id` - AWS access key.
319  * `aws_access_key_secret` - AWS access key secret.
320  * `aws_access_token` - AWS access token if this is being used.
321
322#### Using IAM Instance Profiles with S3
323
324If you use go-getter and want to use an EC2 IAM Instance Profile to avoid
325using credentials, then just omit these and the profile, if available will
326be used automatically.
327
328### Using S3 with Minio
329 If you use go-gitter for Minio support, you must consider the following:
330
331  * `aws_access_key_id` (required) - Minio access key.
332  * `aws_access_key_secret` (required) - Minio access key secret.
333  * `region` (optional - defaults to us-east-1) - Region identifier to use.
334  * `version` (optional - defaults to Minio default) - Configuration file format.
335
336#### S3 Bucket Examples
337
338S3 has several addressing schemes used to reference your bucket. These are
339listed here: http://docs.aws.amazon.com/AmazonS3/latest/dev/UsingBucket.html#access-bucket-intro
340
341Some examples for these addressing schemes:
342- s3::https://s3.amazonaws.com/bucket/foo
343- s3::https://s3-eu-west-1.amazonaws.com/bucket/foo
344- bucket.s3.amazonaws.com/foo
345- bucket.s3-eu-west-1.amazonaws.com/foo/bar
346- "s3::http://127.0.0.1:9000/test-bucket/hello.txt?aws_access_key_id=KEYID&aws_access_key_secret=SECRETKEY&region=us-east-2"
347
348### GCS (`gcs`)
349
350#### GCS Authentication
351
352In order to access to GCS, authentication credentials should be provided. More information can be found [here](https://cloud.google.com/docs/authentication/getting-started)
353
354#### GCS Bucket Examples
355
356- gcs::https://www.googleapis.com/storage/v1/bucket
357- gcs::https://www.googleapis.com/storage/v1/bucket/foo.zip
358- www.googleapis.com/storage/v1/bucket/foo
359