golded-dev/laravel-ftn-msg 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

golded-dev/laravel-ftn-msg

Composer 安装命令:

composer require golded-dev/laravel-ftn-msg

包简介

FTN .MSG message-base reader.

README 文档

README

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

This package reads classic .MSG message directories and returns normalized ParsedMessage objects from golded-dev/laravel-ftn.

It does not read Squish, JAM, Hudson, or packet files. It does not add Laravel service providers, config files, models, commands, queues, or 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-msg:^1.0

Requires PHP 8.4+.

Reading A Message Area

<?php

declare(strict_types=1);

use Golded\Ftn\Msg\MsgReader;

$reader = new MsgReader();

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

MsgReader::read() accepts a directory path and reads files ending in .msg or .MSG.

Files are sorted naturally by filename. Non-numeric filenames and message numbers below 1 are skipped.

Reader Options

use Golded\Ftn\Msg\MsgReader;
use Golded\Ftn\ReaderOptions;

$messages = new MsgReader()->read(
    path: '/path/to/messages/MSG/NETMAIL',
    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 .MSG filename
  • from name
  • to name
  • subject
  • body text converted to UTF-8
  • raw attribute bitfield
  • posted date when the header date can be parsed
  • external ID from MSGID when present

When a message has no MSGID, the reader creates a stable synthetic ID from the parsed message fields. Old message bases are rarely polite. This keeps downstream imports sane anyway.

What You Do Not Get

  • No area discovery.
  • No packet parsing.
  • No Squish, JAM, Hudson, or other message-base readers.
  • 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.

Breaking changes include:

  • changing MsgReader::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 .MSG header fields is usually a minor release when existing fields keep their meaning.

Contributing

Contributions are welcome when they make .MSG 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.

golded-dev/laravel-ftn-msg 适用场景与选型建议

golded-dev/laravel-ftn-msg 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 29 次下载、GitHub Stars 达 0, 最近一次更新时间为 2026 年 04 月 25 日, 在 PHP 生态内属于活跃度较高的组件。

它主要适用于以下技术方向: 「parser」 「msg」 「fidonet」 「ftn」 「golded」 「message-base」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。

我们在过去多个企业项目中使用过 golded-dev/laravel-ftn-msg 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 golded-dev/laravel-ftn-msg 我们能提供哪些服务?
定制开发 / 二次开发

基于 golded-dev/laravel-ftn-msg 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 29
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 35
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2026-04-25