endpoints/drive/webdav -> endpoints/drive/driveServer (#511)

This commit is contained in:
Michael Quigley 2024-01-09 14:55:51 -05:00
parent a28aa2f77f
commit 8ccb5603ca
No known key found for this signature in database
GPG Key ID: 9B60314A9DD20A62
25 changed files with 25 additions and 25 deletions

View File

@ -5,7 +5,7 @@ import (
"github.com/openziti/sdk-golang/ziti"
"github.com/openziti/sdk-golang/ziti/edge"
"github.com/openziti/zrok/endpoints"
"github.com/openziti/zrok/endpoints/drive/webdav"
"github.com/openziti/zrok/endpoints/drive/driveServer"
"github.com/pkg/errors"
"net/http"
"time"
@ -43,9 +43,9 @@ func NewBackend(cfg *BackendConfig) (*Backend, error) {
return nil, err
}
handler := &webdav.Handler{
FileSystem: webdav.Dir(cfg.DriveRoot),
LockSystem: webdav.NewMemLS(),
handler := &driveServer.Handler{
FileSystem: driveServer.Dir(cfg.DriveRoot),
LockSystem: driveServer.NewMemLS(),
Logger: func(r *http.Request, err error) {
if cfg.Requests != nil {
cfg.Requests <- &endpoints.Request{

View File

@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package webdav
package driveServer
import (
"context"

View File

@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package webdav
package driveServer
import (
"context"

View File

@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package webdav
package driveServer
// The If header is covered by Section 10.4.
// http://www.webdav.org/specs/rfc4918.html#HEADER_If

View File

@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package webdav
package driveServer
import (
"reflect"

View File

@ -21,7 +21,7 @@ package main
import (
"flag"
"fmt"
"github.com/openziti/zrok/endpoints/drive/webdav"
"github.com/openziti/zrok/endpoints/drive/driveServer"
"log"
"net/http"
"net/url"
@ -32,9 +32,9 @@ var port = flag.Int("port", 9999, "server port")
func main() {
flag.Parse()
log.SetFlags(0)
h := &webdav.Handler{
FileSystem: webdav.NewMemFS(),
LockSystem: webdav.NewMemLS(),
h := &driveServer.Handler{
FileSystem: driveServer.NewMemFS(),
LockSystem: driveServer.NewMemLS(),
Logger: func(r *http.Request, err error) {
litmus := r.Header.Get("X-Litmus")
if len(litmus) > 19 {

View File

@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package webdav
package driveServer
import (
"container/heap"

View File

@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package webdav
package driveServer
import (
"fmt"

View File

@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package webdav
package driveServer
import (
"bytes"

View File

@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package webdav
package driveServer
import (
"context"

View File

@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Package webdav provides a WebDAV server implementation.
package webdav // import "golang.org/x/net/webdav"
// Package driveServer provides a WebDAV server implementation.
package driveServer
import (
"errors"

View File

@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package webdav
package driveServer
import (
"context"

View File

@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package webdav
package driveServer
// The XML encoding is covered by Section 14.
// http://www.webdav.org/specs/rfc4918.html#xml.element.definitions
@ -32,7 +32,7 @@ import (
// In the long term, this package should use the standard library's version
// only, and the internal fork deleted, once
// https://github.com/golang/go/issues/13400 is resolved.
ixml "github.com/openziti/zrok/endpoints/drive/webdav/internal/xml"
ixml "github.com/openziti/zrok/endpoints/drive/driveServer/internal/xml"
)
// http://www.webdav.org/specs/rfc4918.html#ELEMENT_lockinfo

View File

@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package webdav
package driveServer
import (
"bytes"
@ -16,7 +16,7 @@ import (
"strings"
"testing"
ixml "github.com/openziti/zrok/endpoints/drive/webdav/internal/xml"
ixml "github.com/openziti/zrok/endpoints/drive/driveServer/internal/xml"
)
func TestReadLockInfo(t *testing.T) {

View File

@ -3,7 +3,7 @@ package sync
import (
"context"
"fmt"
"github.com/openziti/zrok/endpoints/drive/webdav"
"github.com/openziti/zrok/endpoints/drive/driveServer"
"io"
"io/fs"
"os"
@ -59,7 +59,7 @@ func (t *FilesystemTarget) recurse(path string, d fs.DirEntry, err error) error
return err
}
etag := ""
if v, ok := fi.(webdav.ETager); ok {
if v, ok := fi.(driveServer.ETager); ok {
etag, err = v.ETag(context.Background())
if err != nil {
return err