Files
newznab-tmux/resources/views/admin/regexes/collection-edit.blade.php
T
2026-08-09 14:37:39 +02:00

163 lines
9.1 KiB
PHP

@extends('layouts.admin')
@section('content')
<div class="space-y-6">
<x-admin.card>
<!-- Header -->
<div class="px-6 py-4 border-b border-gray-200 dark:border-gray-700">
<div class="flex justify-between items-center">
<h1 class="text-2xl font-semibold text-gray-800 dark:text-gray-100">
<i class="fas fa-edit mr-2"></i>{{ $title ?? 'Collection Regex Edit' }}
</h1>
<a href="{{ url('/admin/collection_regexes-list') }}" class="px-4 py-2 bg-gray-100 dark:bg-gray-700 text-gray-700 dark:text-gray-300 rounded-lg hover:bg-gray-200 dark:hover:bg-gray-600">
<i class="fas fa-arrow-left mr-2"></i>Back to List
</a>
</div>
</div>
<!-- Form -->
<form action="{{ url('/admin/collection_regexes-edit?action=submit') }}" method="POST" id="regexForm" class="px-6 py-6">
@csrf
<input type="hidden" name="id" value="{{ $regex->id ?? '' }}"/>
<!-- Error Message -->
@if($error)
<div class="mb-6 p-4 bg-red-50 dark:bg-red-900/20 border border-red-200 dark:border-red-800 rounded-lg">
<div class="flex">
<i class="fas fa-exclamation-triangle text-red-500 dark:text-red-400 mr-3"></i>
<p class="text-red-800 dark:text-red-300">{{ $error }}</p>
</div>
</div>
@endif
<!-- Group -->
<div class="mb-6">
<label for="group_regex" class="block text-sm font-medium text-gray-700 dark:text-gray-300 mb-2">
Group: <span class="text-red-500">*</span>
</label>
<div class="relative">
<div class="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none">
<i class="fas fa-users text-gray-400"></i>
</div>
<input type="text"
id="group_regex"
name="group_regex"
class="pl-10 w-full px-4 py-2 border border-gray-300 dark:border-gray-600 dark:bg-gray-700 dark:text-gray-100 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500"
value="{{ $regex->group_regex ?? '' }}"
required>
</div>
<p class="mt-2 text-sm text-gray-500 dark:text-gray-400">
Regex to match against a group or multiple groups. Delimiters are already added, and PCRE_CASELESS is added after for case insensitivity.<br>
Example of matching a single group: <code class="bg-gray-100 dark:bg-gray-700 text-gray-800 dark:text-gray-200 px-2 py-1 rounded">alt\.binaries\.example</code><br>
Example of matching multiple groups: <code class="bg-gray-100 dark:bg-gray-700 text-gray-800 dark:text-gray-200 px-2 py-1 rounded">alt\.binaries.*</code>
</p>
</div>
<!-- Regex -->
<div class="mb-6">
<label for="regex" class="block text-sm font-medium text-gray-700 dark:text-gray-300 mb-2">
Regex: <span class="text-red-500">*</span>
</label>
<div class="relative">
<div class="absolute top-3 left-3 pointer-events-none">
<i class="fas fa-code text-gray-400"></i>
</div>
<textarea id="regex"
name="regex"
class="pl-10 w-full px-4 py-2 border border-gray-300 dark:border-gray-600 dark:bg-gray-700 dark:text-gray-100 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500 font-mono text-sm"
rows="4"
required>{{ regex_display_value($regex->regex ?? '') }}</textarea>
</div>
<p class="mt-2 text-sm text-gray-500 dark:text-gray-400">
Regex to use when grouping binaries into collections.<br>
The regex delimiters are not added, you MUST add them. See <a href="http://php.net/manual/en/regexp.reference.delimiters" target="_blank" class="text-blue-600 dark:text-blue-400 hover:text-blue-800 dark:hover:text-blue-300">this</a> page.<br>
To make the regex case insensitive, add <code class="bg-gray-100 dark:bg-gray-700 text-gray-800 dark:text-gray-200 px-2 py-1 rounded">i</code> after the last delimiter.
</p>
</div>
<!-- Description -->
<div class="mb-6">
<label for="description" class="block text-sm font-medium text-gray-700 dark:text-gray-300 mb-2">
Description:
</label>
<div class="relative">
<div class="absolute top-3 left-3 pointer-events-none">
<i class="fas fa-align-left text-gray-400"></i>
</div>
<textarea id="description"
name="description"
class="pl-10 w-full px-4 py-2 border border-gray-300 dark:border-gray-600 dark:bg-gray-700 dark:text-gray-100 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500"
rows="3">{{ $regex->description ?? '' }}</textarea>
</div>
<p class="mt-2 text-sm text-gray-500 dark:text-gray-400">
Description for this regex. You can include an example usenet subject this regex would match on.
</p>
</div>
<!-- Ordinal -->
<div class="mb-6">
<label for="ordinal" class="block text-sm font-medium text-gray-700 dark:text-gray-300 mb-2">
Ordinal: <span class="text-red-500">*</span>
</label>
<div class="relative">
<div class="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none">
<i class="fas fa-sort-numeric-asc text-gray-400"></i>
</div>
<input type="number"
id="ordinal"
name="ordinal"
class="pl-10 w-full px-4 py-2 border border-gray-300 dark:border-gray-600 dark:bg-gray-700 dark:text-gray-100 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500"
value="{{ $regex->ordinal ?? 0 }}"
min="0"
required>
</div>
<p class="mt-2 text-sm text-gray-500 dark:text-gray-400">
The order to run this regex in. Must be a number, 0 or higher.<br>
If multiple regex have the same ordinal, MySQL will randomly sort them.
</p>
</div>
<!-- Active Status -->
<div class="mb-6">
<label class="block text-sm font-medium text-gray-700 dark:text-gray-300 mb-2">
Active:
</label>
<div class="bg-gray-50 dark:bg-gray-900 border border-gray-200 dark:border-gray-700 rounded-lg p-4">
@foreach($status_ids as $k => $id)
<div class="flex items-center {{ $loop->last ? '' : 'mb-3' }}">
<input type="radio"
name="status"
id="status{{ $id }}"
value="{{ $id }}"
class="w-4 h-4 text-blue-600 dark:text-blue-400 border-gray-300 dark:border-gray-600 focus:ring-blue-500"
{{ ($regex->status ?? 1) == $id ? 'checked' : '' }}>
<label for="status{{ $id }}" class="ml-3 text-sm text-gray-700 dark:text-gray-300">
{{ $status_names[$k] }}
</label>
</div>
@endforeach
</div>
<p class="mt-2 text-sm text-gray-500 dark:text-gray-400">
Only active regex are used during the collection matching process.
</p>
</div>
</form>
<!-- Footer -->
<div class="px-6 py-4 border-t border-gray-200 dark:border-gray-700 bg-gray-50 dark:bg-gray-900">
<div class="flex justify-between">
<a href="{{ url('/admin/collection_regexes-list') }}" class="px-4 py-2 bg-gray-200 dark:bg-gray-700 text-gray-700 dark:text-gray-300 rounded-lg hover:bg-gray-300 dark:hover:bg-gray-600">
<i class="fas fa-times mr-2"></i>Cancel
</a>
<button type="submit" form="regexForm" class="px-4 py-2 bg-green-600 dark:bg-green-700 text-white rounded-lg hover:bg-green-700 dark:hover:bg-green-800">
<i class="fas fa-save mr-2"></i>Save Changes
</button>
</div>
</div>
</x-admin.card>
</div>
{{-- Scripts moved to resources/js/csp-safe.js --}}
@endsection