endpoints/drive/driveServer -> drives/davServer (#511)

This commit is contained in:
Michael Quigley 2024-01-10 11:57:21 -05:00
parent 34acc81822
commit 999b65fc6c
No known key found for this signature in database
GPG Key ID: 9B60314A9DD20A62
25 changed files with 21 additions and 21 deletions

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 driveServer
package davServer
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 driveServer
package davServer
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 driveServer
package davServer
// 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 driveServer
package davServer
import (
"reflect"

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 driveServer
package davServer
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 driveServer
package davServer
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 driveServer
package davServer
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 driveServer
package davServer
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 driveServer provides a WebDAV server implementation.
package driveServer
// Package davServer provides a WebDAV server implementation.
package davServer
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 driveServer
package davServer
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 driveServer
package davServer
// 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/driveServer/internal/xml"
ixml "github.com/openziti/zrok/drives/davServer/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 driveServer
package davServer
import (
"bytes"
@ -16,7 +16,7 @@ import (
"strings"
"testing"
ixml "github.com/openziti/zrok/endpoints/drive/driveServer/internal/xml"
ixml "github.com/openziti/zrok/drives/davServer/internal/xml"
)
func TestReadLockInfo(t *testing.T) {

View File

@ -4,8 +4,8 @@ import (
"fmt"
"github.com/openziti/sdk-golang/ziti"
"github.com/openziti/sdk-golang/ziti/edge"
"github.com/openziti/zrok/drives/davServer"
"github.com/openziti/zrok/endpoints"
"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 := &driveServer.Handler{
FileSystem: driveServer.Dir(cfg.DriveRoot),
LockSystem: driveServer.NewMemLS(),
handler := &davServer.Handler{
FileSystem: davServer.Dir(cfg.DriveRoot),
LockSystem: davServer.NewMemLS(),
Logger: func(r *http.Request, err error) {
if cfg.Requests != nil {
cfg.Requests <- &endpoints.Request{

View File

@ -3,7 +3,7 @@ package sync
import (
"context"
"fmt"
"github.com/openziti/zrok/endpoints/drive/driveServer"
"github.com/openziti/zrok/drives/davServer"
"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.(driveServer.ETager); ok {
if v, ok := fi.(davServer.ETager); ok {
etag, err = v.ETag(context.Background())
if err != nil {
return err