* Add workspace webhooks and drop the unused automation webhook node. Give workspaces HMAC-signed outgoing webhooks for the post lifecycle, with retry, auto-pause, replay, and live logs, and keep HTTP Request as the only outbound automation node. * Tighten webhook controller and validation after review. Drop the redundant workspace redirects, prune logs without counting, and validate events/status with Rule::enum. * Move leftover webhook UI copy behind i18n. HTTP status phrases, delete-cancel, and validation attribute names were still English literals. * Build the webhook-paused email through Maizzle. The hand-written Blade skipped the shared layout, header, and footer used by the other mail templates. * Cover real webhook dispatch paths and restyle the webhook pages. * Ask for the shared delete keyword when confirming a webhook delete. The endpoint URL is a poor confirm string; posts and assets already use the common "delete" keyword. * Fix webhook review blockers so CI can go green. Drop leftover French automation keys, stop mutating Inertia log props, and show delivered_at instead of created_at. * Close the remaining webhook review gaps. Keep Echo log updates across infinite scroll, align the channel with the policy, persist log ids across retries, and fail unknown automation nodes without throwing. * Stop webhook delivery after disable and record last sent only on success. Queued jobs now skip paused or disabled endpoints unless the user replays, and changing the URL re-pings it first. * Limit webhooks to owners and admins, and encrypt signing secrets. Members can no longer create or inspect outgoing integrations, and secrets stay encrypted at rest. * Cover webhook secret hiding, skip-ping, and failed-delivery edges. * Send the full post on webhooks after labels and platforms are saved. * Fix webhook payloads for integer media ids and type webhook status. * Split the webhook show page into focused components. * Reset live webhook logs when switching endpoints. * Keep the newest webhook logs at the top after live merges. * Cast media item ids to string without the extra scalar check. * Add post.unscheduled webhooks and put the log id on the envelope. Unscheduling is now a first-class event, and receivers can send the delivery id back so we can find the matching log. * Translate webhook event names in the UI. * Make the webhook show page full-width and stop stacking flash toasts. * Translate remaining webhook UI copy in every locale. * Sign webhook pings and drop author email from the payload. * Send signed webhook tests after create instead of pinging on save. Create and update only block private URLs so the receiver can copy the secret first. The show page then sends a signed webhook.test with an object data envelope. * Polish webhook test UX and always mint the dispatch log id in the job. Keep send-test in the actions menu (its own group) and drop the leftover constructor param so retries reuse the serialized id instead of a caller-supplied one.
139 lines
5.6 KiB
PHP
139 lines
5.6 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'title' => 'Webhooks',
|
|
'description' => 'Recibe notificaciones en tiempo real cuando se crean, programan, desprograman, publican o fallan los posts.',
|
|
'new' => 'Crear webhook',
|
|
'empty_title' => 'Aún no hay webhooks',
|
|
'empty_description' => 'Crea un webhook para recibir notificaciones de eventos en tiempo real.',
|
|
'table' => [
|
|
'endpoint' => 'Endpoint',
|
|
'events' => 'Escuchando',
|
|
'status' => 'Estado',
|
|
'last_sent' => 'Último envío',
|
|
],
|
|
'events_count' => '{1} :count evento|[2,*] :count eventos',
|
|
'never' => 'Nunca',
|
|
'status' => [
|
|
'enabled' => 'Activo',
|
|
'disabled' => 'Desactivado',
|
|
'paused' => 'Pausado',
|
|
],
|
|
'actions' => [
|
|
'view' => 'Ver detalles',
|
|
'copy_id' => 'Copiar ID del webhook',
|
|
'delete' => 'Eliminar',
|
|
'edit' => 'Editar endpoint',
|
|
'enable' => 'Activar endpoint',
|
|
'disable' => 'Desactivar endpoint',
|
|
'rotate' => 'Rotar secret de firma',
|
|
'send_test' => 'Enviar evento de prueba',
|
|
'replay' => 'Reenviar',
|
|
'reveal_secret' => 'Mostrar secret',
|
|
'hide_secret' => 'Ocultar secret',
|
|
'copy_secret' => 'Copiar secret',
|
|
],
|
|
'create' => [
|
|
'title' => 'Crear webhook',
|
|
'description' => 'Configura un endpoint para recibir notificaciones de webhook.',
|
|
'endpoint' => 'URL del endpoint',
|
|
'endpoint_placeholder' => 'https://example.com/webhooks',
|
|
'events' => 'Eventos',
|
|
'events_placeholder' => 'Seleccionar eventos...',
|
|
'events_selected' => '{1} :count evento seleccionado|[2,*] :count eventos seleccionados',
|
|
'search_events' => 'Buscar eventos...',
|
|
'no_events' => 'No se encontraron eventos',
|
|
'submit' => 'Crear webhook',
|
|
'cancel' => 'Cancelar',
|
|
],
|
|
'edit' => [
|
|
'title' => 'Editar endpoint',
|
|
'description' => 'Actualiza la URL del endpoint y los eventos a escuchar.',
|
|
'submit' => 'Guardar cambios',
|
|
'cancel' => 'Cancelar',
|
|
],
|
|
'delete' => [
|
|
'title' => 'Eliminar webhook',
|
|
'description' => '¿Seguro que quieres eliminar este webhook? Ya no recibirás notificaciones de eventos en este endpoint.',
|
|
'confirm' => 'Eliminar webhook',
|
|
'cancel' => 'Cancelar',
|
|
],
|
|
'rotate' => [
|
|
'title' => 'Rotar secret de firma',
|
|
'description' => 'Esto genera un nuevo secret de firma. El secret actual deja de funcionar de inmediato. Actualiza tu endpoint para usar el nuevo secret.',
|
|
'submit' => 'Rotar secret',
|
|
'cancel' => 'Cancelar',
|
|
],
|
|
'show' => [
|
|
'signing_secret' => 'Secret de firma',
|
|
'last_sent' => 'Último envío :time',
|
|
'listening_for' => 'Escuchando',
|
|
'http_status' => 'Estado HTTP',
|
|
'status_code' => ':code - :reason',
|
|
'attempts' => 'Intentos',
|
|
'delivered_at' => 'Entregado el',
|
|
'response_body' => 'Cuerpo de la respuesta',
|
|
'response' => 'Respuesta',
|
|
'no_response_body' => 'Sin cuerpo de respuesta',
|
|
'no_response' => 'Sin respuesta',
|
|
'payload' => 'Payload del mensaje',
|
|
'empty_title' => 'Aún no hay eventos',
|
|
'empty_description' => 'Cuando se creen, programen, desprogramen o publiquen posts, verás aquí los eventos del webhook.',
|
|
],
|
|
'events' => [
|
|
'group_posts' => 'Posts',
|
|
'post_created' => 'Post creado',
|
|
'post_scheduled' => 'Post programado',
|
|
'post_unscheduled' => 'Post desprogramado',
|
|
'post_published' => 'Post publicado',
|
|
'post_partially_published' => 'Post parcialmente publicado',
|
|
'post_failed' => 'Post fallido',
|
|
'post_deleted' => 'Post eliminado',
|
|
],
|
|
'http_reasons' => [
|
|
'unknown' => 'Desconocido',
|
|
'200' => 'OK',
|
|
'201' => 'Creado',
|
|
'202' => 'Aceptado',
|
|
'204' => 'Sin contenido',
|
|
'400' => 'Solicitud incorrecta',
|
|
'401' => 'No autorizado',
|
|
'403' => 'Prohibido',
|
|
'404' => 'No encontrado',
|
|
'408' => 'Tiempo de espera agotado',
|
|
'422' => 'Entidad no procesable',
|
|
'429' => 'Demasiadas solicitudes',
|
|
'500' => 'Error interno del servidor',
|
|
'502' => 'Puerta de enlace no válida',
|
|
'503' => 'Servicio no disponible',
|
|
'504' => 'Tiempo de espera de la puerta de enlace',
|
|
],
|
|
'copied' => [
|
|
'id' => 'ID del webhook copiado al portapapeles',
|
|
'secret' => 'Secret de firma copiado al portapapeles',
|
|
'response' => 'Cuerpo de la respuesta copiado',
|
|
'payload' => 'Payload copiado',
|
|
],
|
|
'errors' => [
|
|
'endpoint_not_allowed' => 'Este endpoint no está permitido.',
|
|
'endpoint_unreachable' => 'El endpoint no es accesible.',
|
|
'endpoint_http_status' => 'El endpoint devolvió HTTP :status.',
|
|
],
|
|
'flash' => [
|
|
'created' => 'Webhook creado.',
|
|
'updated' => 'Webhook actualizado.',
|
|
'deleted' => 'Webhook eliminado.',
|
|
'secret_rotated' => 'Secret de firma rotado.',
|
|
'replayed' => 'Evento del webhook reenviado.',
|
|
'tested' => 'Evento de prueba enviado.',
|
|
],
|
|
'mail' => [
|
|
'paused_subject' => 'Webhook pausado: :endpoint',
|
|
'paused_title' => 'Webhook pausado tras fallos repetidos',
|
|
'paused_preview' => 'Pausamos un webhook tras 5 fallos consecutivos de entrega.',
|
|
'paused_body' => 'Pausamos el webhook en :endpoint tras 5 fallos consecutivos de entrega. Revisa el endpoint y actívalo de nuevo en la página de detalles del webhook.',
|
|
'paused_cta' => 'Ver webhook',
|
|
],
|
|
];
|