// Copyright (c) 2026 Probo Inc . // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE // SOFTWARE. package drivers import ( "context" "encoding/json" "fmt" "net/http" "go.probo.inc/probo/pkg/coredata" ) type NotionDriver struct { httpClient *http.Client } var _ Driver = (*NotionDriver)(nil) type notionUsersResponse struct { Results []struct { ID string `json:"id"` Type string `json:"type"` Name string `json:"name"` Person struct { Email string `json:"email"` } `json:"person"` Bot struct{} `json:"bot"` } `json:"results"` HasMore bool `json:"has_more"` NextCursor string `json:"next_cursor"` } const ( notionUsersEndpoint = "https://api.notion.com/v1/users" notionAPIVersion = "2022-06-28" ) func NewNotionDriver(httpClient *http.Client) *NotionDriver { return &NotionDriver{ httpClient: httpClient, } } func (d *NotionDriver) ListAccounts(ctx context.Context) ([]AccountRecord, error) { var ( records []AccountRecord startCursor *string ) for range maxPaginationPages { resp, err := d.queryUsers(ctx, startCursor) if err != nil { return nil, err } for _, u := range resp.Results { accountType := coredata.AccessReviewEntryAccountTypeUser if u.Type == "bot" { accountType = coredata.AccessReviewEntryAccountTypeServiceAccount } var email string if u.Type == "person" { email = u.Person.Email } record := AccountRecord{ Email: email, FullName: u.Name, Roles: []string{"Member"}, IsAdmin: false, ExternalID: u.ID, MFAStatus: coredata.MFAStatusUnknown, AuthMethod: coredata.AccessReviewEntryAuthMethodUnknown, AccountType: accountType, } if record.Email != "" || record.FullName != "" { records = append(records, record) } } if !resp.HasMore || resp.NextCursor == "" { return records, nil } nextCursor := resp.NextCursor startCursor = &nextCursor } return nil, fmt.Errorf("cannot list all notion accounts: %w", ErrPaginationLimitReached) } func (d *NotionDriver) queryUsers(ctx context.Context, startCursor *string) (*notionUsersResponse, error) { req, err := http.NewRequestWithContext(ctx, http.MethodGet, notionUsersEndpoint, nil) if err != nil { return nil, fmt.Errorf("cannot create notion users request: %w", err) } req.Header.Set("Notion-Version", notionAPIVersion) req.Header.Set("Accept", "application/json") q := req.URL.Query() q.Set("page_size", "100") if startCursor != nil { q.Set("start_cursor", *startCursor) } req.URL.RawQuery = q.Encode() httpResp, err := d.httpClient.Do(req) if err != nil { return nil, fmt.Errorf("cannot execute notion users request: %w", err) } defer func() { _ = httpResp.Body.Close() }() if httpResp.StatusCode < 200 || httpResp.StatusCode >= 300 { return nil, fmt.Errorf("cannot fetch notion users: unexpected status %d", httpResp.StatusCode) } var resp notionUsersResponse if err := json.NewDecoder(httpResp.Body).Decode(&resp); err != nil { return nil, fmt.Errorf("cannot decode notion users response: %w", err) } return &resp, nil }