Add Google Analytics, Dotfile, Segment and Square access-review connectors

Two OAuth2 and two API-key connectors:

- Google Analytics (GA4): OAuth2 with both analytics.readonly and
  analytics.manage.users.readonly (readonly alone 403s on the accounts
  list); v1alpha accessBindings enumerated at account and property level
  and merged by email; manual account picker (Pattern 1) with a
  per-connection probe and name resolver; distinct from Google Workspace.
- Dotfile: API key in the X-DOTFILE-API-KEY header (Pattern 3); GET
  /v1/users (owner/admin, suspended_at) with a static probe.
- Segment (Twilio): Public API token as Bearer with a required Region
  setting (US or EU) mapped to the regional host; GET /users plus per-user
  GET /users/{id} for roles and /invites for pending members; per-connection
  BuildProbeURL.
- Square: OAuth2 (EMPLOYEES_READ) or a personal access token (Pattern 3);
  POST /v2/team-members/search returns email/status/is_owner directly, so no
  role resolution; custom probe and name resolver.

Google Analytics and Square are confidential OAuth clients, wired into the
bootstrap OAuth provider list and .env.example. Segment carries a required
extra setting, so the console add-source dialog maps region onto its
segmentRegion API-key input; without that mapping the value is silently
dropped and the create is rejected.

Cassette-backed driver tests plus unit tests for the Segment probe URL and
the bootstrap OAuth provider list.

Signed-off-by: Aurélien Sibiril <81782+aureliensibiril@users.noreply.github.com>
This commit is contained in:
Aurélien Sibiril
2026-07-11 23:15:03 +02:00
parent 724c169876
commit 60628645ae
31 changed files with 2124 additions and 28 deletions

View File

@@ -0,0 +1,320 @@
// Copyright (c) 2026 Probo Inc <hello@probo.com>.
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
// copyright notice and this permission notice appear in all copies.
//
// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
// REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
// AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
// INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
// LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
// OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
// PERFORMANCE OF THIS SOFTWARE.
package drivers
import (
"context"
"encoding/json"
"fmt"
"net/http"
"net/url"
"sort"
"strconv"
"strings"
"go.probo.inc/probo/pkg/coredata"
)
const (
segmentPageSize = 200
// segmentWorkspaceOwnerRole is the only Segment role that grants
// workspace-wide administrative access; the resource-scoped *Admin roles
// (Source Admin, Warehouse Admin, …) administer a single resource, not the
// workspace.
segmentWorkspaceOwnerRole = "Workspace Owner"
)
// SegmentDriver lists the members of a single Twilio Segment workspace. The
// Public API token (sent as Authorization: Bearer by the connection transport)
// is bound to one workspace on one regional host. GET /users returns members
// without their roles, so each member's roles are fetched with a follow-up GET
// /users/{id} (an unavoidable N+1); GET /invites adds pending invitations as
// inactive members.
type SegmentDriver struct {
httpClient *http.Client
baseURL string
}
var _ Driver = (*SegmentDriver)(nil)
type segmentUser struct {
ID string `json:"id"`
Name string `json:"name"`
Email string `json:"email"`
}
type segmentPermission struct {
RoleName string `json:"roleName"`
}
type segmentPaginationOut struct {
// Next is absent (nil) on the last page.
Next *string `json:"next"`
}
type segmentUsersResponse struct {
Data struct {
Users []segmentUser `json:"users"`
Pagination segmentPaginationOut `json:"pagination"`
} `json:"data"`
}
type segmentUserResponse struct {
Data struct {
User struct {
Permissions []segmentPermission `json:"permissions"`
} `json:"user"`
} `json:"data"`
}
type segmentInvitesResponse struct {
Data struct {
Invites []string `json:"invites"`
Pagination segmentPaginationOut `json:"pagination"`
} `json:"data"`
}
func NewSegmentDriver(httpClient *http.Client, baseURL string) *SegmentDriver {
return &SegmentDriver{
httpClient: &http.Client{
Transport: &retryRoundTripper{
next: httpClient.Transport,
maxRetries: 3,
},
},
baseURL: baseURL,
}
}
func (d *SegmentDriver) ListAccounts(ctx context.Context) ([]AccountRecord, error) {
base, err := url.Parse(d.baseURL)
if err != nil {
return nil, fmt.Errorf("cannot parse segment base URL: %w", err)
}
users, err := d.listUsers(ctx, base)
if err != nil {
return nil, err
}
records := make([]AccountRecord, 0, len(users))
for _, u := range users {
email := strings.TrimSpace(u.Email)
if email == "" {
continue
}
perms, err := d.userPermissions(ctx, base, u.ID)
if err != nil {
return nil, err
}
roles, isAdmin := segmentRolesAndAdmin(perms)
active := true
records = append(records, AccountRecord{
Email: email,
FullName: segmentFullName(u.Name, email),
Roles: roles,
Active: &active,
IsAdmin: isAdmin,
MFAStatus: coredata.MFAStatusUnknown,
AuthMethod: coredata.AccessReviewEntryAuthMethodUnknown,
AccountType: coredata.AccessReviewEntryAccountTypeUser,
ExternalID: u.ID,
})
}
invites, err := d.listInvites(ctx, base)
if err != nil {
return nil, err
}
for _, email := range invites {
email = strings.TrimSpace(email)
if email == "" {
continue
}
// A pending invite carries no role and no stable id at the workspace
// level, so it is surfaced as an inactive member keyed by email.
inactive := false
records = append(records, AccountRecord{
Email: email,
FullName: email,
Roles: []string{},
Active: &inactive,
MFAStatus: coredata.MFAStatusUnknown,
AuthMethod: coredata.AccessReviewEntryAuthMethodUnknown,
AccountType: coredata.AccessReviewEntryAccountTypeUser,
ExternalID: email,
})
}
return records, nil
}
func (d *SegmentDriver) listUsers(ctx context.Context, base *url.URL) ([]segmentUser, error) {
var users []segmentUser
cursor := ""
for range maxPaginationPages {
endpoint := *base
endpoint.Path = "/users"
q := url.Values{}
q.Set("pagination.count", strconv.Itoa(segmentPageSize))
if cursor != "" {
q.Set("pagination.cursor", cursor)
}
endpoint.RawQuery = q.Encode()
var resp segmentUsersResponse
if err := d.getJSON(ctx, endpoint.String(), &resp); err != nil {
return nil, err
}
users = append(users, resp.Data.Users...)
if resp.Data.Pagination.Next == nil || *resp.Data.Pagination.Next == "" {
return users, nil
}
cursor = *resp.Data.Pagination.Next
}
return nil, fmt.Errorf("cannot list all segment users: %w", ErrPaginationLimitReached)
}
func (d *SegmentDriver) userPermissions(ctx context.Context, base *url.URL, userID string) ([]segmentPermission, error) {
endpoint := *base
// Path holds the decoded value; endpoint.String() escapes the id once.
endpoint.Path = "/users/" + userID
var resp segmentUserResponse
if err := d.getJSON(ctx, endpoint.String(), &resp); err != nil {
return nil, err
}
return resp.Data.User.Permissions, nil
}
func (d *SegmentDriver) listInvites(ctx context.Context, base *url.URL) ([]string, error) {
var invites []string
cursor := ""
for range maxPaginationPages {
endpoint := *base
endpoint.Path = "/invites"
q := url.Values{}
q.Set("pagination.count", strconv.Itoa(segmentPageSize))
if cursor != "" {
q.Set("pagination.cursor", cursor)
}
endpoint.RawQuery = q.Encode()
var resp segmentInvitesResponse
if err := d.getJSON(ctx, endpoint.String(), &resp); err != nil {
return nil, err
}
invites = append(invites, resp.Data.Invites...)
if resp.Data.Pagination.Next == nil || *resp.Data.Pagination.Next == "" {
return invites, nil
}
cursor = *resp.Data.Pagination.Next
}
return nil, fmt.Errorf("cannot list all segment invites: %w", ErrPaginationLimitReached)
}
func (d *SegmentDriver) getJSON(ctx context.Context, endpoint string, out any) error {
req, err := http.NewRequestWithContext(ctx, http.MethodGet, endpoint, nil)
if err != nil {
return fmt.Errorf("cannot create segment request: %w", err)
}
req.Header.Set("Accept", "application/json")
httpResp, err := d.httpClient.Do(req)
if err != nil {
return fmt.Errorf("cannot execute segment request: %w", err)
}
defer func() {
_ = httpResp.Body.Close()
}()
if httpResp.StatusCode < 200 || httpResp.StatusCode >= 300 {
return fmt.Errorf("cannot fetch segment resource: unexpected status %d", httpResp.StatusCode)
}
if err := json.NewDecoder(httpResp.Body).Decode(out); err != nil {
return fmt.Errorf("cannot decode segment response: %w", err)
}
return nil
}
// segmentFullName returns the member's name, falling back to the email when
// Segment stores an empty name.
func segmentFullName(name, email string) string {
if n := strings.TrimSpace(name); n != "" {
return n
}
return email
}
// segmentRolesAndAdmin collapses a member's permission entries into a
// de-duplicated, sorted set of role names and reports whether any of them is
// the workspace-level Workspace Owner role.
func segmentRolesAndAdmin(perms []segmentPermission) ([]string, bool) {
seen := make(map[string]struct{})
isAdmin := false
for _, p := range perms {
name := strings.TrimSpace(p.RoleName)
if name == "" {
continue
}
seen[name] = struct{}{}
if strings.EqualFold(name, segmentWorkspaceOwnerRole) {
isAdmin = true
}
}
roles := make([]string, 0, len(seen))
for name := range seen {
roles = append(roles, name)
}
sort.Strings(roles)
return roles, isAdmin
}