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 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
|
/*
Copyright (c) 2019 VMware, Inc. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package simulator
import (
"fmt"
"io"
"io/ioutil"
"log"
"net/http"
"os"
"strings"
"sync"
"github.com/vmware/govmomi/vim25/methods"
"github.com/vmware/govmomi/vim25/mo"
"github.com/vmware/govmomi/vim25/soap"
"github.com/vmware/govmomi/vim25/types"
)
type HttpNfcLease struct {
mo.HttpNfcLease
files map[string]string
}
var (
nfcLease sync.Map // HTTP access to NFC leases are token based and do not require Session auth
nfcPrefix = "/nfc/"
)
// ServeNFC handles NFC file upload/download
func ServeNFC(w http.ResponseWriter, r *http.Request) {
p := strings.Split(r.URL.Path, "/")
id, name := p[len(p)-2], p[len(p)-1]
ref := types.ManagedObjectReference{Type: "HttpNfcLease", Value: id}
l, ok := nfcLease.Load(ref)
if !ok {
log.Printf("invalid NFC lease: %s", id)
http.NotFound(w, r)
return
}
lease := l.(*HttpNfcLease)
file, ok := lease.files[name]
if !ok {
log.Printf("invalid NFC device id: %s", name)
http.NotFound(w, r)
return
}
status := http.StatusOK
var dst io.Writer
var src io.ReadCloser
switch r.Method {
case http.MethodPut, http.MethodPost:
dst = ioutil.Discard
src = r.Body
case http.MethodGet:
f, err := os.Open(file)
if err != nil {
http.NotFound(w, r)
return
}
src = f
default:
status = http.StatusMethodNotAllowed
}
n, err := io.Copy(dst, src)
_ = src.Close()
msg := fmt.Sprintf("transferred %d bytes", n)
if err != nil {
status = http.StatusInternalServerError
msg = err.Error()
}
log.Printf("nfc %s %s: %s", r.Method, file, msg)
w.WriteHeader(status)
}
func NewHttpNfcLease(ctx *Context, entity types.ManagedObjectReference) *HttpNfcLease {
lease := &HttpNfcLease{
HttpNfcLease: mo.HttpNfcLease{
Info: &types.HttpNfcLeaseInfo{
Entity: entity,
LeaseTimeout: 30000,
},
State: types.HttpNfcLeaseStateReady,
},
files: make(map[string]string),
}
ctx.Session.Put(lease)
nfcLease.Store(lease.Reference(), lease)
return lease
}
func (l *HttpNfcLease) HttpNfcLeaseComplete(ctx *Context, req *types.HttpNfcLeaseComplete) soap.HasFault {
ctx.Session.Remove(req.This)
nfcLease.Delete(req.This)
return &methods.HttpNfcLeaseCompleteBody{
Res: new(types.HttpNfcLeaseCompleteResponse),
}
}
func (l *HttpNfcLease) HttpNfcLeaseAbort(ctx *Context, req *types.HttpNfcLeaseAbort) soap.HasFault {
ctx.Session.Remove(req.This)
nfcLease.Delete(req.This)
return &methods.HttpNfcLeaseAbortBody{
Res: new(types.HttpNfcLeaseAbortResponse),
}
}
func (l *HttpNfcLease) HttpNfcLeaseProgress(ctx *Context, req *types.HttpNfcLeaseProgress) soap.HasFault {
l.TransferProgress = req.Percent
return &methods.HttpNfcLeaseProgressBody{
Res: new(types.HttpNfcLeaseProgressResponse),
}
}
|