vtc-service 0.7.0

Service for Verifiable Trust Communities
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
// Policies plugin — list + view + activate + upload.
//
// Wraps the `/v1/policies` endpoint family. Each policy is a Rego
// source bound to a purpose (`join`, `removal`, `personhood`, etc.).
// The list view shows version + activation state per purpose;
// detail shows the source; activate flips the per-purpose active
// pointer; upload uploads a new revision (doesn't auto-activate).
//
// Skipped for MVP: the `/test` endpoint (needs a JSON-input editor
// + result rendering) — lands in a follow-up.

import { useState } from "react";
import {
  useMutation,
  useQuery,
  useQueryClient,
} from "@tanstack/react-query";
import { Link, Route, Routes, useNavigate, useParams } from "react-router-dom";
import { ArrowLeft, ArrowRight, Check, Plus, ScrollText, X } from "lucide-react";

import { getJson, postJson } from "@/lib/api";
import { useConfirm } from "@/components/ConfirmDialog";
import { formatIso as formatDate } from "@/lib/format";

// `policies/upload/1.0` is the only registered Trust-Task on the
// `/v1/policies` and `/v1/policies/{id}` mounts today —
// TrustTaskRouter doesn't support per-method selectors yet, so
// list/show/upload all travel under it.
const TRUST_TASK_UPLOAD =
  "https://trusttasks.org/openvtc/vtc/policies/upload/1.0";
const TRUST_TASK_ACTIVATE =
  "https://trusttasks.org/openvtc/vtc/policies/activate/1.0";

const PURPOSES = [
  "join",
  "removal",
  "personhood",
  "registry",
  "directory",
  "roleDefinitions",
  "crossCommunityRoles",
  "crossCommunityRelationships",
  "relationships",
] as const;

type Purpose = (typeof PURPOSES)[number];
type StatusFilter = "" | "active" | "archived";

interface PolicyRow {
  id: string;
  purpose: Purpose;
  regoSource: string;
  sha256: string;
  activatedAt: string | null;
  authorDid: string;
  createdAt: string;
  version: number;
  isActive: boolean;
}

interface PoliciesPage {
  items: PolicyRow[];
  next_cursor: string | null;
  total_estimate?: number;
}

async function fetchPolicies(params: {
  purpose: Purpose | "";
  status: StatusFilter;
  cursor: string | null;
  limit: number;
}): Promise<PoliciesPage> {
  const q = new URLSearchParams();
  if (params.purpose) q.set("purpose", params.purpose);
  if (params.status) q.set("status", params.status);
  if (params.cursor) q.set("cursor", params.cursor);
  q.set("limit", String(params.limit));
  return getJson<PoliciesPage>(`/v1/policies?${q.toString()}`, {
    trustTask: TRUST_TASK_UPLOAD,
  });
}

async function fetchPolicy(id: string): Promise<PolicyRow> {
  return getJson<PolicyRow>(`/v1/policies/${id}`, {
    trustTask: TRUST_TASK_UPLOAD,
  });
}

async function uploadPolicy(args: {
  purpose: Purpose;
  regoSource: string;
}): Promise<PolicyRow> {
  return postJson<PolicyRow>(
    "/v1/policies",
    { purpose: args.purpose, regoSource: args.regoSource },
    { trustTask: TRUST_TASK_UPLOAD },
  );
}

async function activatePolicy(id: string): Promise<unknown> {
  return postJson<unknown>(`/v1/policies/${id}/activate`, undefined, {
    trustTask: TRUST_TASK_ACTIVATE,
  });
}

export function Policies() {
  return (
    <Routes>
      <Route index element={<PoliciesList />} />
      <Route path=":id" element={<PolicyDetail />} />
    </Routes>
  );
}

function PoliciesList() {
  const [purpose, setPurpose] = useState<Purpose | "">("");
  const [status, setStatus] = useState<StatusFilter>("");
  const [cursor, setCursor] = useState<string | null>(null);
  const [showUpload, setShowUpload] = useState(false);
  const queryClient = useQueryClient();

  const query = useQuery({
    queryKey: ["policies", purpose, status, cursor],
    queryFn: () =>
      fetchPolicies({
        purpose,
        status,
        cursor,
        limit: 50,
      }),
    placeholderData: (prev) => prev,
  });

  return (
    <section className="page">
      <h2>Policies</h2>

      <section className="card">
        <div className="toolbar">
          <label className="field inline">
            <span className="field-label">Purpose</span>
            <select
              value={purpose}
              onChange={(e) => {
                setPurpose(e.target.value as Purpose | "");
                setCursor(null);
              }}
            >
              <option value="">All</option>
              {PURPOSES.map((p) => (
                <option key={p} value={p}>
                  {p}
                </option>
              ))}
            </select>
          </label>
          <label className="field inline">
            <span className="field-label">Status</span>
            <select
              value={status}
              onChange={(e) => {
                setStatus(e.target.value as StatusFilter);
                setCursor(null);
              }}
            >
              <option value="">All</option>
              <option value="active">Active only</option>
              <option value="archived">Archived</option>
            </select>
          </label>
          <div className="spacer" />
          <button
            type="button"
            className={showUpload ? "secondary" : "primary"}
            onClick={() => setShowUpload((v) => !v)}
          >
            {showUpload ? (
              <>
                <X size={14} aria-hidden="true" /> Cancel
              </>
            ) : (
              <>
                <Plus size={14} aria-hidden="true" /> Upload policy
              </>
            )}
          </button>
        </div>
      </section>

      {showUpload && (
        <UploadPolicyForm
          onSuccess={() => {
            setShowUpload(false);
            void queryClient.invalidateQueries({ queryKey: ["policies"] });
          }}
        />
      )}

      {query.error && (
        <section className="card error">
          <h3>Failed to load policies</h3>
          <p>{(query.error as Error).message}</p>
        </section>
      )}

      <section className="card">
        <table className="data-table">
          <thead>
            <tr>
              <th>Purpose</th>
              <th>Version</th>
              <th>SHA-256</th>
              <th>Author</th>
              <th>Created</th>
              <th>Status</th>
            </tr>
          </thead>
          <tbody>
            {query.isPending && (
              <tr>
                <td colSpan={6}>Loading…</td>
              </tr>
            )}
            {query.data?.items.length === 0 && (
              <tr>
                <td colSpan={6}>
                  <div className="empty-state">
                    <span className="empty-icon" aria-hidden="true">
                      <ScrollText />
                    </span>
                    <h4>No policies match this filter</h4>
                    <p>
                      Use <strong>Upload policy</strong> to add the
                      first revision for a purpose.
                    </p>
                  </div>
                </td>
              </tr>
            )}
            {query.data?.items.map((p) => (
              <tr key={p.id}>
                <td>
                  <Link to={p.id}>
                    <code>{p.purpose}</code>
                  </Link>
                </td>
                <td>v{p.version}</td>
                <td>
                  <code className="truncate" title={p.sha256}>
                    {p.sha256.slice(0, 12)}…
                  </code>
                </td>
                <td>
                  <code className="truncate" title={p.authorDid}>
                    {p.authorDid}
                  </code>
                </td>
                <td>{formatDate(p.createdAt)}</td>
                <td>
                  {p.isActive ? (
                    <span className="chip success">
                      <Check size={12} aria-hidden="true" /> active
                    </span>
                  ) : (
                    <span className="chip">archived</span>
                  )}
                </td>
              </tr>
            ))}
          </tbody>
        </table>

        <div className="pagination">
          <button
            type="button"
            className="secondary"
            disabled={cursor === null}
            onClick={() => setCursor(null)}
          >
            First page
          </button>
          <button
            type="button"
            className="secondary"
            disabled={!query.data?.next_cursor}
            onClick={() => setCursor(query.data?.next_cursor ?? null)}
          >
            Next page <ArrowRight size={12} aria-hidden="true" />
          </button>
        </div>
      </section>
    </section>
  );
}

function PolicyDetail() {
  const { id = "" } = useParams<{ id: string }>();
  const navigate = useNavigate();
  const queryClient = useQueryClient();
  const confirm = useConfirm();

  const query = useQuery({
    queryKey: ["policy", id],
    queryFn: () => fetchPolicy(id),
    enabled: id.length > 0,
  });

  const activate = useMutation({
    mutationFn: activatePolicy,
    onSuccess: () => {
      void queryClient.invalidateQueries({ queryKey: ["policies"] });
      void queryClient.invalidateQueries({ queryKey: ["policy", id] });
    },
  });

  return (
    <section className="page">
      <button type="button" className="link" onClick={() => navigate("..")}>
        <ArrowLeft size={14} aria-hidden="true" /> Back to policies
      </button>
      <h2>Policy detail</h2>

      {query.isPending && <p>Loading…</p>}
      {query.error && (
        <section className="card error">
          <h3>Failed to load policy</h3>
          <p>{(query.error as Error).message}</p>
        </section>
      )}

      {query.data && (
        <>
          <section className="card">
            <h3>Header</h3>
            <dl>
              <dt>Purpose</dt>
              <dd>
                <code>{query.data.purpose}</code>
              </dd>
              <dt>Version</dt>
              <dd>v{query.data.version}</dd>
              <dt>SHA-256</dt>
              <dd>
                <code>{query.data.sha256}</code>
              </dd>
              <dt>Author DID</dt>
              <dd>
                <code>{query.data.authorDid}</code>
              </dd>
              <dt>Created</dt>
              <dd>
                <code>{query.data.createdAt}</code>
              </dd>
              <dt>Activated</dt>
              <dd>
                {query.data.activatedAt ? (
                  <code>{query.data.activatedAt}</code>
                ) : (
                  <span className="muted">never</span>
                )}
              </dd>
              <dt>Status</dt>
              <dd>
                {query.data.isActive ? (
                  <span className="chip success">
                    <Check size={12} aria-hidden="true" /> active
                  </span>
                ) : (
                  <span className="chip">archived</span>
                )}
              </dd>
            </dl>

            {!query.data.isActive && (
              <div className="form-actions">
                {activate.error && (
                  <section className="card error">
                    <h3>Activate failed</h3>
                    <p>{(activate.error as Error).message}</p>
                  </section>
                )}
                <button
                  type="button"
                  className="primary"
                  disabled={activate.isPending}
                  onClick={async () => {
                    const ok = await confirm({
                      title: `Activate ${query.data.purpose} v${query.data.version}?`,
                      message: `The current active policy for "${query.data.purpose}" becomes archived. Switching back means activating its predecessor.`,
                      confirmLabel: "Activate",
                    });
                    if (ok) {
                      activate.mutate(id);
                    }
                  }}
                >
                  {activate.isPending ? "Activating…" : "Activate"}
                </button>
              </div>
            )}
          </section>

          <section className="card">
            <h3>Rego source</h3>
            <pre className="rego-source">{query.data.regoSource}</pre>
          </section>
        </>
      )}
    </section>
  );
}

function UploadPolicyForm({ onSuccess }: { onSuccess: () => void }) {
  const [purpose, setPurpose] = useState<Purpose>("join");
  const [source, setSource] = useState("");
  const mutation = useMutation({
    mutationFn: uploadPolicy,
    onSuccess,
  });

  const onSubmit = (e: React.FormEvent) => {
    e.preventDefault();
    mutation.mutate({ purpose, regoSource: source });
  };

  return (
    <form onSubmit={onSubmit} className="card form-stack">
      <h3>Upload policy revision</h3>
      <p className="lead">
        Uploading does not activate. You'll see the new revision in
        the list with <em>archived</em> status until you click
        Activate on its detail page.
      </p>
      <label className="field">
        <span className="field-label">Purpose</span>
        <select
          value={purpose}
          onChange={(e) => setPurpose(e.target.value as Purpose)}
          required
        >
          {PURPOSES.map((p) => (
            <option key={p} value={p}>
              {p}
            </option>
          ))}
        </select>
      </label>
      <label className="field">
        <span className="field-label">Rego source</span>
        <textarea
          rows={12}
          spellCheck={false}
          placeholder="package vtc.join&#10;&#10;default allow := false&#10;allow if { … }"
          value={source}
          onChange={(e) => setSource(e.target.value)}
          required
        />
      </label>
      {mutation.error && (
        <section className="card error">
          <h3>Upload failed</h3>
          <p>{(mutation.error as Error).message}</p>
        </section>
      )}
      <div className="form-actions">
        <button
          type="submit"
          className="primary"
          disabled={mutation.isPending || source.trim().length === 0}
        >
          {mutation.isPending ? "Compiling…" : "Upload"}
        </button>
      </div>
    </form>
  );
}