summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/yaegashi/msgraph.go/beta/extensions.go
blob: 627143de498b28b76a7d8c9bcb5cecf68fb8876c (plain) (blame)
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
// Code generated by msgraph.go/gen DO NOT EDIT.

package msgraph

import (
	"context"
	"fmt"
	"net/url"
	"strings"
)

// ItemWithPath returns DriveItemRequestBuilder addressed by relative path
func (b *DriveItemRequestBuilder) ItemWithPath(path string) *DriveItemRequestBuilder {
	bb := &DriveItemRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	if len(path) == 0 || path[0] != '/' {
		path = "/" + path
	}
	bb.baseURL += ":" + path + ":"
	return bb
}

// GetByPath returns SiteRequestBuilder addressed by hostname and path
func (b *GraphServiceSitesCollectionRequestBuilder) GetByPath(hostname, path string) *SiteRequestBuilder {
	bb := &SiteRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
	if len(path) == 0 || path[0] != '/' {
		path = "/" + path
	}
	bb.baseURL += "/" + hostname + ":" + path + ":"
	return bb
}

// GetDriveItemByURL returns DriveItemRequestBuilder addressed by URL
func (b *GraphServiceRequestBuilder) GetDriveItemByURL(ctx context.Context, itemURL string) (*DriveItemRequestBuilder, error) {
	u, err := url.Parse(itemURL)
	if err != nil {
		return nil, err
	}
	u.RawQuery = ""
	itemURL = u.String()
	var site *Site
	segments := strings.Split(u.Path, "/")
	for i := 3; i <= len(segments); i++ {
		site, err = b.Sites().GetByPath(u.Hostname(), strings.Join(segments[:i], "/")).Request().Get(ctx)
		if err == nil {
			break
		}
	}
	if site == nil {
		return nil, fmt.Errorf("Site for %s not found", itemURL)
	}
	drives, err := b.Sites().ID(*site.ID).Drives().Request().Get(ctx)
	if err != nil {
		return nil, err
	}
	for _, drive := range drives {
		if strings.HasPrefix(itemURL, *drive.WebURL) {
			path := itemURL[len(*drive.WebURL):]
			return b.Drives().ID(*drive.ID).Root().ItemWithPath(path), nil
		}
	}
	return nil, fmt.Errorf("DriveItem for %s not found", itemURL)
}