2024-05-24 23:08:24 +02:00
|
|
|
// Copyright 2024, Command Line Inc.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
package clientservice
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
|
|
|
"time"
|
|
|
|
|
2024-06-20 04:10:53 +02:00
|
|
|
"github.com/wavetermdev/thenextwave/pkg/util/utilfn"
|
2024-05-24 23:08:24 +02:00
|
|
|
"github.com/wavetermdev/thenextwave/pkg/wstore"
|
|
|
|
)
|
|
|
|
|
|
|
|
type ClientService struct{}
|
|
|
|
|
|
|
|
const DefaultTimeout = 2 * time.Second
|
|
|
|
|
|
|
|
func (cs *ClientService) GetClientData() (*wstore.Client, error) {
|
|
|
|
ctx, cancelFn := context.WithTimeout(context.Background(), DefaultTimeout)
|
|
|
|
defer cancelFn()
|
2024-05-26 20:59:14 +02:00
|
|
|
clientData, err := wstore.DBGetSingleton[*wstore.Client](ctx)
|
2024-05-24 23:08:24 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("error getting client data: %w", err)
|
|
|
|
}
|
|
|
|
return clientData, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cs *ClientService) GetWorkspace(workspaceId string) (*wstore.Workspace, error) {
|
|
|
|
ctx, cancelFn := context.WithTimeout(context.Background(), DefaultTimeout)
|
|
|
|
defer cancelFn()
|
2024-05-26 20:59:14 +02:00
|
|
|
ws, err := wstore.DBGet[*wstore.Workspace](ctx, workspaceId)
|
2024-05-24 23:08:24 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("error getting workspace: %w", err)
|
|
|
|
}
|
|
|
|
return ws, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cs *ClientService) GetTab(tabId string) (*wstore.Tab, error) {
|
|
|
|
ctx, cancelFn := context.WithTimeout(context.Background(), DefaultTimeout)
|
|
|
|
defer cancelFn()
|
2024-05-26 20:59:14 +02:00
|
|
|
tab, err := wstore.DBGet[*wstore.Tab](ctx, tabId)
|
2024-05-24 23:08:24 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("error getting tab: %w", err)
|
|
|
|
}
|
|
|
|
return tab, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cs *ClientService) GetWindow(windowId string) (*wstore.Window, error) {
|
|
|
|
ctx, cancelFn := context.WithTimeout(context.Background(), DefaultTimeout)
|
|
|
|
defer cancelFn()
|
2024-05-26 20:59:14 +02:00
|
|
|
window, err := wstore.DBGet[*wstore.Window](ctx, windowId)
|
2024-05-24 23:08:24 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("error getting window: %w", err)
|
|
|
|
}
|
|
|
|
return window, nil
|
|
|
|
}
|
2024-06-20 04:10:53 +02:00
|
|
|
|
|
|
|
func (cs *ClientService) MakeWindow(ctx context.Context) (*wstore.Window, error) {
|
|
|
|
return wstore.CreateWindow(ctx)
|
|
|
|
}
|
|
|
|
|
|
|
|
// moves the window to the front of the windowId stack
|
|
|
|
func (cs *ClientService) FocusWindow(ctx context.Context, windowId string) error {
|
|
|
|
client, err := cs.GetClientData()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
winIdx := utilfn.SliceIdx(client.WindowIds, windowId)
|
|
|
|
if winIdx == -1 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
client.WindowIds = utilfn.MoveSliceIdxToFront(client.WindowIds, winIdx)
|
|
|
|
return wstore.DBUpdate(ctx, client)
|
|
|
|
}
|
2024-07-30 20:44:19 +02:00
|
|
|
|
|
|
|
func (cs *ClientService) AgreeTos(ctx context.Context) (wstore.UpdatesRtnType, error) {
|
|
|
|
ctx = wstore.ContextWithUpdates(ctx)
|
|
|
|
clientData, err := wstore.DBGetSingleton[*wstore.Client](ctx)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("error getting client data: %w", err)
|
|
|
|
}
|
|
|
|
timestamp := time.Now().UnixMilli()
|
|
|
|
clientData.TosAgreed = timestamp
|
|
|
|
err = wstore.DBUpdate(ctx, clientData)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("error updating client data: %w", err)
|
|
|
|
}
|
|
|
|
return wstore.ContextGetUpdatesRtn(ctx), nil
|
|
|
|
}
|