summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/technoweenie/multipartstreamer/examples
diff options
context:
space:
mode:
authorWim <wim@42.be>2016-11-19 15:05:11 +0100
committerWim <wim@42.be>2016-11-19 15:05:11 +0100
commit2867ec459a9234a8b0152ae5baad01fc18af843b (patch)
tree280c420c024fb24714129be526454ad6ac8888e3 /vendor/github.com/technoweenie/multipartstreamer/examples
parentcd18d89894903a92ac12e1a2e78582b543a4ab6e (diff)
downloadmatterbridge-msglm-2867ec459a9234a8b0152ae5baad01fc18af843b.tar.gz
matterbridge-msglm-2867ec459a9234a8b0152ae5baad01fc18af843b.tar.bz2
matterbridge-msglm-2867ec459a9234a8b0152ae5baad01fc18af843b.zip
Add missing imports
Diffstat (limited to 'vendor/github.com/technoweenie/multipartstreamer/examples')
-rw-r--r--vendor/github.com/technoweenie/multipartstreamer/examples/multipart.go31
-rw-r--r--vendor/github.com/technoweenie/multipartstreamer/examples/streamer.go27
2 files changed, 58 insertions, 0 deletions
diff --git a/vendor/github.com/technoweenie/multipartstreamer/examples/multipart.go b/vendor/github.com/technoweenie/multipartstreamer/examples/multipart.go
new file mode 100644
index 00000000..971078be
--- /dev/null
+++ b/vendor/github.com/technoweenie/multipartstreamer/examples/multipart.go
@@ -0,0 +1,31 @@
+package main
+
+import (
+ "bytes"
+ "flag"
+ "fmt"
+ "io"
+ "mime/multipart"
+ "os"
+ "path/filepath"
+)
+
+func main() {
+ defaultPath, _ := os.Getwd()
+ defaultFile := filepath.Join(defaultPath, "streamer.go")
+ fullpath := flag.String("path", defaultFile, "Path to the include in the multipart data.")
+ flag.Parse()
+
+ buffer := bytes.NewBufferString("")
+ writer := multipart.NewWriter(buffer)
+
+ fmt.Println("Adding the file to the multipart writer")
+ fileWriter, _ := writer.CreateFormFile("file", *fullpath)
+ fileData, _ := os.Open(*fullpath)
+ io.Copy(fileWriter, fileData)
+ writer.Close()
+
+ fmt.Println("Writing the multipart data to a file")
+ output, _ := os.Create("multiparttest")
+ io.Copy(output, buffer)
+}
diff --git a/vendor/github.com/technoweenie/multipartstreamer/examples/streamer.go b/vendor/github.com/technoweenie/multipartstreamer/examples/streamer.go
new file mode 100644
index 00000000..324f7e12
--- /dev/null
+++ b/vendor/github.com/technoweenie/multipartstreamer/examples/streamer.go
@@ -0,0 +1,27 @@
+package main
+
+import (
+ "flag"
+ "fmt"
+ "github.com/technoweenie/multipartstreamer"
+ "io"
+ "os"
+ "path/filepath"
+)
+
+func main() {
+ defaultPath, _ := os.Getwd()
+ defaultFile := filepath.Join(defaultPath, "streamer.go")
+ fullpath := flag.String("path", defaultFile, "Path to the include in the multipart data.")
+ flag.Parse()
+
+ ms := multipartstreamer.New()
+
+ fmt.Println("Adding the file to the multipart writer")
+ ms.WriteFile("file", *fullpath)
+ reader := ms.GetReader()
+
+ fmt.Println("Writing the multipart data to a file")
+ file, _ := os.Create("streamtest")
+ io.Copy(file, reader)
+}