liopoos/apple-device-mapper
Composer 安装命令:
composer require liopoos/apple-device-mapper
包简介
A PHP library for bidirectional mapping between Apple device model identifiers and device names
README 文档
README
A PHP library for bidirectional mapping between Apple device model identifiers and device names.
Overview
Apple Device Mapper provides an efficient way to convert between Apple device model identifiers (like iphone10,1) and human-readable device names (like iPhone 8 (Global)).
Installation
composer require liopoos/apple-device-mapper
Requirements
- PHP >= 7.3
Quick Start
<?php require 'vendor/autoload.php'; use Liopoos\AppleDeviceMapper\AppleDeviceMapper; use Liopoos\AppleDeviceMapper\Entity\DeviceCategory; $mapper = new AppleDeviceMapper(); // Get device entity $device = $mapper->getDeviceByModel('iphone10,1'); echo $device->getName(); // "iPhone 8 (Global)" echo $device->getCategory(); // "iPhone" // Get devices by name (returns Collection) $devices = $mapper->getDevicesByName('iPhone 8 (Global)'); // Get devices by category $iPhones = $mapper->getDevicesByCategory(DeviceCategory::IPHONE); // Check existence if ($mapper->hasModel('iphone14,2')) { echo "Model exists"; }
API Reference
Core Methods
getDeviceByModel(string $model): AppleDevice
Get device entity by model identifier.
$device = $mapper->getDeviceByModel('iphone10,1'); echo $device->getModel(); // "iphone10,1" echo $device->getName(); // "iPhone 8 (Global)" echo $device->getCategory(); // "iPhone"
getDevicesByName(string $deviceName): Collection<AppleDevice>
Get all devices for a device name as a Collection.
$devices = $mapper->getDevicesByName('iPhone 8 (Global)'); $devices->each(function($device) { echo $device->getModel(); });
getFirstDeviceByName(string $deviceName): AppleDevice
Get the first device for a device name.
$device = $mapper->getFirstDeviceByName('iPhone 8 (Global)');
getAllDevices(): Collection<AppleDevice>
Get all devices as a Collection.
$devices = $mapper->getAllDevices(); $iPhones = $devices->filter(fn($d) => $d->getCategory() === 'iPhone');
getDevicesByCategory(string $category): Collection<AppleDevice>
Get devices by category.
use Liopoos\AppleDeviceMapper\Entity\DeviceCategory; $iPhones = $mapper->getDevicesByCategory(DeviceCategory::IPHONE); $iPads = $mapper->getDevicesByCategory(DeviceCategory::IPAD);
Query Methods
hasModel(string $model): bool
Check if a model identifier exists.
if ($mapper->hasModel('iphone10,1')) { // Model exists }
hasDeviceName(string $deviceName): bool
Check if a device name exists.
if ($mapper->hasDeviceName('iPhone 8 (Global)')) { // Device name exists }
getAllDeviceNames(): array<string>
Get all unique device names.
getAllModels(): array<string>
Get all model identifiers.
getStatistics(): array
Get statistics about the device mapping.
$stats = $mapper->getStatistics(); // ['total_models' => 265, 'total_device_names' => 256, ...]
Device Categories
Available device categories:
DeviceCategory::IPHONE- iPhone devicesDeviceCategory::IPAD- iPad devicesDeviceCategory::IPOD- iPod devicesDeviceCategory::WATCH- Apple Watch devicesDeviceCategory::APPLE_TV- Apple TV devicesDeviceCategory::MAC- Mac devicesDeviceCategory::HOMEPOD- HomePod devicesDeviceCategory::VISION_PRO- Apple Vision ProDeviceCategory::IBRIDGE- iBridge devicesDeviceCategory::OTHER- Other devices
Updating Device Data
Device data is stored in resources/devices.json and automatically compiled during installation.
To update:
- Update
resources/devices.jsonwith latest data - Run the build script:
php build.php
The build script generates category-specific data files in src/Data/ directory.
Development
Running Tests
vendor/bin/phpunit
Project Structure
src/
├── AppleDeviceMapper.php # Main mapper class
├── Data/
│ ├── DataLoader.php # Lazy loader with iterator pattern
│ ├── iPhoneData.php # iPhone device data
│ ├── iPadData.php # iPad device data
│ ├── MacData.php # Mac device data
│ └── ... # Other category data files
└── Entity/
├── AppleDevice.php # Device entity class
└── DeviceCategory.php # Category constants
Acknowledgments
Device data sourced from IPSW.me API
License
MIT License
liopoos/apple-device-mapper 适用场景与选型建议
liopoos/apple-device-mapper 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 0 次下载、GitHub Stars 达 0, 最近一次更新时间为 2025 年 12 月 31 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 liopoos/apple-device-mapper 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 liopoos/apple-device-mapper 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 0
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 22
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2025-12-31