X bills a post containing a URL at a much higher rate than a plain post, and its algorithm demotes link posts. The X version of a post now rewrites every URL non-clickable (https://example.com/post becomes example(.)com/post): scheme and www. dropped, every dot of the host replaced with (.). Leaving a single dot intact would still leave a resolvable domain for X to detect, so all of them are broken. A scheme or www. proves a token is a URL on its own; a bare host only counts when its last label is a delegated TLD, which is the one thing telling acme.com apart from Node.js. That check runs against App\Support\LinkTlds, generated from the whole IANA root zone in every form a TLD can appear in a post -- ASCII, punycode and the Unicode it decodes to -- because whatever X links is what X bills, so a hand-picked subset would leave us paying for its gaps. If the regex engine bails out on pathological input the original content is returned instead of crashing the publisher. The transform lives in the Platform::X arm of ContentSanitizer, so it reaches publishing and the app/API/MCP previews from one place and cannot touch any other network. Off by default; opt in with X_DEFUSE_LINKS. The editor counts characters and renders its preview client-side and cannot ask the server on every keystroke, so the rewrite is mirrored in TypeScript. PHP stays the source of truth: a parity test fails if the two TLD sets drift, and a browser test drives the real editor so the mirror is covered rather than assumed. Without it the composer promised text the network never receives. Character limits now measure the text a reader will see: sanitized, then with markup resolved away. Measuring the raw draft blocked saving posts that publish fine and let through posts the network rejects, and counted the editor's HTML toward the limit. Measuring the sanitized form alone would have counted Telegram's escaped entities, rejecting messages Telegram accepts. Empty content is handled once inside the sanitizer instead of by a guard repeated at every call site.
73 lines
2.3 KiB
PHP
73 lines
2.3 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Services\Post;
|
|
|
|
use App\Models\Post;
|
|
use App\Models\PostPlatform;
|
|
use App\Services\Social\ContentSanitizer;
|
|
use Illuminate\Support\Collection;
|
|
|
|
/**
|
|
* Renders per-platform previews of a post — applies the platform-specific
|
|
* `ContentSanitizer` rules without publishing. Used by the REST API
|
|
* preview endpoint and the MCP `PreviewPostTool` so the rendering rules
|
|
* stay in one place.
|
|
*/
|
|
class PostPreviewer
|
|
{
|
|
public function __construct(private readonly ContentSanitizer $sanitizer) {}
|
|
|
|
/**
|
|
* @return array{
|
|
* post_id: string,
|
|
* original_content: string,
|
|
* original_length: int,
|
|
* platforms: array<int, array{
|
|
* post_platform_id: string,
|
|
* platform: string,
|
|
* content_type: ?string,
|
|
* sanitized_content: string,
|
|
* sanitized_length: int,
|
|
* max_content_length: int,
|
|
* truncated: bool
|
|
* }>
|
|
* }
|
|
*/
|
|
public function forPost(Post $post): array
|
|
{
|
|
$original = (string) $post->content;
|
|
|
|
return [
|
|
'post_id' => $post->id,
|
|
'original_content' => $original,
|
|
'original_length' => mb_strlen($original),
|
|
'platforms' => $this->platformPreviews($post, $original)->all(),
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @return Collection<int, array<string, mixed>>
|
|
*/
|
|
private function platformPreviews(Post $post, string $original): Collection
|
|
{
|
|
return $post->postPlatforms
|
|
->where('enabled', true)
|
|
->values()
|
|
->map(function (PostPlatform $pp) use ($original) {
|
|
$platform = $pp->socialAccount?->platform ?? $pp->platform;
|
|
$sanitized = $this->sanitizer->sanitize($original, $platform);
|
|
|
|
return [
|
|
'post_platform_id' => $pp->id,
|
|
'platform' => $platform->value,
|
|
'content_type' => $pp->content_type?->value,
|
|
'sanitized_content' => $sanitized,
|
|
'sanitized_length' => mb_strlen($sanitized),
|
|
'max_content_length' => $platform->maxContentLength(),
|
|
'truncated' => mb_strlen($sanitized) < mb_strlen($original),
|
|
];
|
|
});
|
|
}
|
|
}
|