| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- {% extends 'layout.twig' %}
- {% block title %}{{ consumer.name }} — Consumer — IRDB{% endblock %}
- {% block content %}
- <div class="mx-auto max-w-3xl">
- <a href="/app/consumers" class="text-sm text-slate-500 hover:underline dark:text-slate-400">← Back to consumers</a>
- <h1 class="mt-3 text-2xl font-semibold tracking-tight font-mono">{{ consumer.name }}</h1>
- <form method="post" action="/app/consumers/{{ consumer.id }}" class="mt-6 rounded-2xl border border-slate-200 bg-white p-5 shadow-sm dark:border-slate-800 dark:bg-slate-900">
- <input type="hidden" name="csrf_token" value="{{ csrf_token }}">
- <div class="grid grid-cols-1 gap-3 md:grid-cols-2 text-sm">
- <div>
- <label for="c-name" class="block text-xs font-medium text-slate-600 dark:text-slate-400">Name</label>
- <input type="text" id="c-name" name="name" value="{{ consumer.name }}" {% if not can_write %}readonly{% endif %}
- class="mt-1 w-full rounded-md border border-slate-300 bg-white px-2 py-1.5 font-mono dark:border-slate-700 dark:bg-slate-950">
- </div>
- <div>
- <label for="c-policy" class="block text-xs font-medium text-slate-600 dark:text-slate-400">Policy</label>
- <select id="c-policy" name="policy_id" {% if not can_write %}disabled{% endif %}
- class="mt-1 w-full rounded-md border border-slate-300 bg-white px-2 py-1.5 dark:border-slate-700 dark:bg-slate-950">
- {% for p in policies %}
- <option value="{{ p.id }}" {% if consumer.policy_id == p.id %}selected{% endif %}>{{ p.name }}</option>
- {% endfor %}
- </select>
- </div>
- <div class="md:col-span-2">
- <label for="c-desc" class="block text-xs font-medium text-slate-600 dark:text-slate-400">Description</label>
- <input type="text" id="c-desc" name="description" value="{{ consumer.description|default('') }}" {% if not can_write %}readonly{% endif %}
- class="mt-1 w-full rounded-md border border-slate-300 bg-white px-2 py-1.5 dark:border-slate-700 dark:bg-slate-950">
- </div>
- <div class="md:col-span-2">
- <label class="flex items-center gap-2 text-xs text-slate-600 dark:text-slate-400">
- <input type="checkbox" name="is_active" value="1" {% if consumer.is_active %}checked{% endif %} {% if not can_write %}disabled{% endif %}>
- active
- </label>
- </div>
- <div class="md:col-span-2">
- {# Hidden 0 sent first so an unchecked box still posts a value; PHP's parser keeps the last occurrence. #}
- <input type="hidden" name="audit_enabled" value="0">
- <label class="flex items-start gap-2 text-xs text-slate-600 dark:text-slate-400">
- <input type="checkbox" name="audit_enabled" value="1" class="mt-0.5"
- {% if consumer.audit_enabled %}checked{% endif %} {% if not can_write %}disabled{% endif %}>
- <span>
- <span class="font-medium text-slate-700 dark:text-slate-200">Audit log: write a <code>blocklist.requested</code> entry per pull</span>
- <span class="block text-[0.7rem] text-slate-500 dark:text-slate-400">Off silences this consumer even when the global toggle is on (Settings → Audit toggles).</span>
- </span>
- </label>
- </div>
- </div>
- {% if can_write %}
- <div class="mt-4 flex justify-end">
- <button type="submit" class="rounded-md bg-indigo-600 px-3 py-1.5 text-sm font-medium text-white hover:bg-indigo-500">Save</button>
- </div>
- {% endif %}
- </form>
- <section class="mt-8 overflow-hidden rounded-2xl border border-slate-200 bg-white shadow-sm dark:border-slate-800 dark:bg-slate-900">
- <header class="flex items-center justify-between gap-3 border-b border-slate-200 px-5 py-3 dark:border-slate-800">
- <div>
- <h2 class="text-sm font-semibold tracking-tight">Last activity</h2>
- <p class="text-xs text-slate-500 dark:text-slate-400">10 most recent audit entries for this consumer.</p>
- </div>
- <a href="/app/audit?entity_type=consumer&entity_id={{ consumer.id }}" class="whitespace-nowrap text-xs font-medium text-indigo-600 hover:underline dark:text-indigo-400">View all in audit log →</a>
- </header>
- {% if audit_items|default([])|length > 0 %}
- <div x-data="{ open: null }">
- <table class="w-full text-sm">
- <thead class="border-b border-slate-200 bg-slate-50 text-left text-xs uppercase tracking-wider text-slate-500 dark:border-slate-800 dark:bg-slate-950 dark:text-slate-400">
- <tr>
- <th class="px-5 py-2 font-medium">When</th>
- <th class="px-5 py-2 font-medium">Actor</th>
- <th class="px-5 py-2 font-medium">Action</th>
- <th class="px-5 py-2 text-right font-medium">Payload</th>
- </tr>
- </thead>
- <tbody class="divide-y divide-slate-100 dark:divide-slate-800">
- {% for ev in audit_items %}
- <tr>
- <td class="px-5 py-2 align-top"><time class="irdb-dt font-mono text-xs text-slate-600 dark:text-slate-300" datetime="{{ ev.occurred_at }}" title="{{ ev.occurred_at }}">{{ ev.occurred_at }}</time></td>
- <td class="px-5 py-2 align-top text-xs">
- <span class="rounded bg-slate-100 px-1.5 py-0.5 font-mono uppercase tracking-tight text-slate-700 dark:bg-slate-800 dark:text-slate-300">{{ ev.actor_kind }}</span>
- {% if ev.actor_id %}<span class="ml-1 font-mono text-slate-500">#{{ ev.actor_id }}</span>{% endif %}
- </td>
- <td class="px-5 py-2 align-top">
- <span class="inline-block rounded bg-cyan-100 px-2 py-0.5 font-mono text-[0.7rem] uppercase tracking-tight text-cyan-900 dark:bg-cyan-900 dark:text-cyan-100">{{ ev.action }}</span>
- </td>
- <td class="px-5 py-2 align-top text-right">
- {% if ev.details %}
- <button type="button" x-on:click="open = (open === {{ ev.id }} ? null : {{ ev.id }})" class="rounded border border-slate-300 px-2 py-0.5 text-xs hover:bg-slate-50 dark:border-slate-700 dark:hover:bg-slate-800">View</button>
- {% else %}
- <span class="text-xs text-slate-400">—</span>
- {% endif %}
- </td>
- </tr>
- {% if ev.details %}
- <tr x-show="open === {{ ev.id }}" x-cloak>
- <td colspan="4" class="bg-slate-50 px-5 py-3 dark:bg-slate-950">
- {% if ev.details.changes is defined and ev.details.changes is iterable and ev.details.changes|length > 0 %}
- <div class="mb-2 text-[0.7rem] font-semibold uppercase tracking-wider text-slate-500 dark:text-slate-400">Changes</div>
- <table class="w-full text-xs">
- <thead class="text-left text-[0.7rem] uppercase text-slate-500 dark:text-slate-400">
- <tr>
- <th class="px-2 py-1 font-medium">Field</th>
- <th class="px-2 py-1 font-medium">Before</th>
- <th class="px-2 py-1 font-medium">After</th>
- </tr>
- </thead>
- <tbody class="divide-y divide-slate-200 bg-white dark:divide-slate-800 dark:bg-slate-900">
- {% for field, change in ev.details.changes %}
- <tr>
- <td class="px-2 py-1 font-mono text-slate-700 dark:text-slate-200">{{ field }}</td>
- <td class="px-2 py-1 align-top">
- {% if change.from is null %}
- <span class="text-slate-400">∅</span>
- {% elseif change.from is iterable %}
- <pre class="overflow-x-auto rounded bg-rose-50 px-2 py-1 font-mono text-[0.7rem] text-rose-900 dark:bg-rose-950 dark:text-rose-200">{{ change.from|json_encode(constant('JSON_PRETTY_PRINT')) }}</pre>
- {% else %}
- <span class="rounded bg-rose-50 px-1.5 py-0.5 font-mono text-rose-900 dark:bg-rose-950 dark:text-rose-200">{{ change.from }}</span>
- {% endif %}
- </td>
- <td class="px-2 py-1 align-top">
- {% if change.to is null %}
- <span class="text-slate-400">∅</span>
- {% elseif change.to is iterable %}
- <pre class="overflow-x-auto rounded bg-emerald-50 px-2 py-1 font-mono text-[0.7rem] text-emerald-900 dark:bg-emerald-950 dark:text-emerald-200">{{ change.to|json_encode(constant('JSON_PRETTY_PRINT')) }}</pre>
- {% else %}
- <span class="rounded bg-emerald-50 px-1.5 py-0.5 font-mono text-emerald-900 dark:bg-emerald-950 dark:text-emerald-200">{{ change.to }}</span>
- {% endif %}
- </td>
- </tr>
- {% endfor %}
- </tbody>
- </table>
- {% else %}
- <pre class="overflow-x-auto rounded bg-white p-3 text-xs dark:bg-slate-900">{{ ev.details|json_encode(constant('JSON_PRETTY_PRINT')) }}</pre>
- {% endif %}
- </td>
- </tr>
- {% endif %}
- {% endfor %}
- </tbody>
- </table>
- </div>
- {% else %}
- <p class="px-5 py-6 text-center text-sm text-slate-400">No activity yet.</p>
- {% endif %}
- </section>
- </div>
- {% endblock %}
|