golded-dev/laravel-ftn-hudson

FTN Hudson message-base reader.

Maintainers

Package info

github.com/golded-dev/laravel-ftn-hudson

pkg:composer/golded-dev/laravel-ftn-hudson

Statistics

Installs: 8

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

v1.0.0 2026-04-25 17:20 UTC

This package is auto-updated.

Last update: 2026-04-25 17:31:31 UTC


README

FTN/FidoNet Hudson message-base reader for PHP 8.4.

This package reads Hudson MSGIDX.BBS, MSGHDR.BBS, and MSGTXT.BBS files and returns normalized ParsedMessage objects from golded-dev/laravel-ftn.

It does not write Hudson files, repair broken message bases, parse packet files, read .MSG, JAM, Squish, or add Laravel framework bootstrapping. The package name says Laravel because it belongs to the GoldED.dev Laravel package family. The runtime code is plain PHP.

Installation

composer require golded-dev/laravel-ftn-hudson:^1.0

Requires PHP 8.4+.

Reading A Message Base

Pass the directory that contains the Hudson files:

<?php

declare(strict_types=1);

use Golded\Ftn\Hudson\HudsonReader;

$reader = new HudsonReader();

foreach ($reader->read('/path/to/messages/HUDSON') as $message) {
    echo $message->msgno.PHP_EOL;
    echo $message->fromName.' -> '.$message->toName.PHP_EOL;
    echo $message->subject.PHP_EOL;
    echo $message->bodyText.PHP_EOL;
}

HudsonReader::read() looks for MSGIDX.BBS, MSGHDR.BBS, and MSGTXT.BBS, with lower-case filename fallback. Missing or unreadable files produce an empty result.

Reader Options

use Golded\Ftn\Hudson\HudsonReader;
use Golded\Ftn\ReaderOptions;

$messages = new HudsonReader()->read(
    path: '/path/to/messages/HUDSON',
    options: new ReaderOptions(fallbackCharset: 'CP437'),
);

The fallback charset is used when the message body does not declare a usable FTN charset control line. The default comes from golded-dev/laravel-ftn.

What Gets Parsed

The reader extracts:

  • message number from the Hudson header
  • board number from the Hudson index
  • from name
  • to name
  • subject
  • body text converted to UTF-8
  • raw attribute bitfield
  • posted date when the Hudson date and time fields can be parsed
  • reply-to message number
  • first reply message number
  • board-derived area code, area name, sort order, and metadata key

Hudson stores areas as board numbers, so the reader exposes area fields as BOARD{number} and hudson:{number}. It is blunt, but stable. Downstream importers can map those board numbers to prettier names.

What You Do Not Get

  • No Hudson writer or repair tool.
  • No packet parsing.
  • No .MSG, JAM, Squish, or other message-base readers.
  • No external area-name discovery.
  • No Laravel service provider.
  • No database models.
  • No queues, commands, config publishing, or framework bootstrapping.

Pair this package with your own source locator or import pipeline.

Development

Install dependencies:

composer install

Run tests:

composer test

Run static analysis:

composer test:types

Run Rector dry-run:

composer test:refactor

Run everything:

composer test:all

Versioning

This package starts at 1.0.0 and uses semantic versioning.

Versions come from Git tags. Do not add a version field to composer.json.

Breaking changes include:

  • changing HudsonReader::read() behavior in a way that drops messages previously yielded
  • changing parsed field semantics
  • changing charset fallback behavior
  • changing the required PHP version
  • changing the golded-dev/laravel-ftn public contract this reader returns

Adding support for more Hudson header fields is usually a minor release when existing fields keep their meaning.

Contributing

Contributions are welcome when they make Hudson parsing more correct without turning this into a framework package. See CONTRIBUTING.md.

Security

Do not report security issues in public tickets. See SECURITY.md.

Code Of Conduct

Be direct, useful, and not a pain on purpose. See CODE_OF_CONDUCT.md.

Changelog

See CHANGELOG.md.

License

Released under the MIT License. See LICENSE.