# ========= Copyright 2026 @ Strukto.AI All Rights Reserved. ========= # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ========= Copyright 2026 @ Strukto.AI All Rights Reserved. ========= from mirage.accessor.gdocs import GDocsAccessor from mirage.core.gdocs.glob import resolve_glob as _resolve_glob from mirage.core.google._client import TokenManager from mirage.resource.base import BaseResource from mirage.resource.gdocs.config import GDocsConfig from mirage.resource.gdocs.prompt import PROMPT, WRITE_PROMPT from mirage.types import ResourceName class GDocsResource(BaseResource): name: str = ResourceName.GDOCS caches_reads: bool = True PROMPT: str = PROMPT WRITE_PROMPT: str = WRITE_PROMPT def __init__(self, config: GDocsConfig) -> None: super().__init__() self.config = config self._token_manager = TokenManager(config) self.accessor = GDocsAccessor(self.config, self._token_manager) from mirage.commands.builtin.gdocs import COMMANDS from mirage.ops.gdocs import OPS as GDOCS_VFS_OPS for fn in COMMANDS: self.register(fn) for fn in GDOCS_VFS_OPS: self.register_op(fn) async def resolve_glob(self, paths, prefix: str = ""): return await _resolve_glob(self.accessor, paths, index=self._index) async def fingerprint(self, path: str) -> str | None: lookup = await self._index.get(path) return lookup.entry.remote_time if lookup.entry else None def get_state(self) -> dict: return self.config_state(self.config) def load_state(self, state: dict) -> None: pass