承接 spiral/writeaway 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

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

spiral/writeaway

Composer 安装命令:

composer require spiral/writeaway

包简介

PHP API server for Writeaway editor

README 文档

README

License:

MIT License (MIT). Please see LICENSE for more information. Maintained by Spiral Scout.

TODO

  • add tests for public services

Usage

  • Register WriteawayBootloader in the App

Note that it must be registered and after RouterBootloader.

  • Implement MetaProviderInterface
  • WriteawayCommandBootloader can be added if you want to have a reset command.

Note that it uses TokenizerBootloader so it must be registered before CommandsBootloader.

  • WriteawayViewsBootloader can be added if you want use ready views bundle.

API Endpoints:

List Images

GET or POST writeaway:images:list to fetch a full list of available images.

Example response:

{
  "status": 200,
  "data": [
    {
      "id": "unique-id",
      "src": "image1.png"
    },
    {
      "id": "unique-id",
      "thumbnailSrc": "image2-th.png",
      "src": "image2.png"
    }
  ]
}

Possible image fields:

Field Type Required Description
id string Required Image id
src string Required Image source URL
thumbnailSrc string Optional Image thumbnail URL
height number Optional Image height to display
width number Optional Image width to display

Upload Image

POST writeaway:images:upload to upload an image file.

Example request:

image - FormData file

Example response:

{
  "status": 200,
  "data": [
    {
      "id": "unique-id",
      "src": "image1.png"
    }
  ]
}

For possible image fields see the previous endpoint.

Delete Image

POST or DELETE writeaway:images:delete to delete a particular image

Example request:

{
  "id": "unique-id"
}

Example response:

{
  "status": 200
}

Get Piece

GET or POST writeaway:pieces:get to fetch a particular piece by its id and type.

Example request:

{
  "id": "unique-id",
  "type": "piece-type"
}

If no pieces found, a new one wil be created. id is a unique value across all pieces.

Example response:

{
  "status": 200,
  "data": {
    "id": "unique-id",
    "type": "piece-type",
    "data": {
      "key": "value",
      "key...": "value..."
    }
  }
}

In case if validation errors the example response will be:

{
  "status": 400,
  "errors": {
    "field-name": "error-message",
    "field-name...": "error-message..."
  }
}

Get Pieces in bulk

GET or POST writeaway:pieces:bulk to fetch a particular pieces by theirs id and type.

Example request:

{
  "pieces": [
    {
      "id": "unique-id",
      "type": "piece-type"
    },
    {
      "id": "unique-id",
      "type": "piece-type"
    }
  ]
}

Example response:

{
  "status": 200,
  "data": [
    {
      "id": "unique-id",
      "type": "piece-type",
      "data": {
        "key": "value",
        "key...": "value..."
      }
    },
    {
      "id": "unique-id",
      "type": "piece-type",
      "data": {
        "key": "value",
        "key...": "value..."
      }
    }
  ]
}

Not found pieces will be ignored.

In case if validation errors the example response will be:

{
  "status": 400,
  "errors": {
    "field-name": "error-message",
    "field-name...": "error-message..."
  }
}

Save Piece

POST writeaway:pieces:save to save a particular piece by its id and type.

Example request:

{
  "id": "unique-id",
  "type": "piece-type",
  "data": {
    "key": "value",
    "key...": "value..."
  }
}

If no pieces found, a new one wil be created. id is a unique value across all pieces.

Example response:

{
  "status": 200,
  "data": {
    "id": "unique-id",
    "type": "piece-type",
    "data": {
      "key": "value",
      "key...": "value..."
    }
  }
}

In case if validation errors the example response will be:

{
  "status": 400,
  "errors": {
    "field-name": "error-message",
    "field-name...": "error-message..."
  }
}

Components

Meta

Meta is a structure designed to represent current piece editor. While this package knows nothing about real app actors, \Spiral\Writeaway\Service\Meta\ProviderInterface is given - a developer can bind it to a more rich implementation, so the meta will contain the real user's id, label and time. Example:

{
  "id": "some user id",
  "label": "some user label, such as name",
  "time": "current date time string"
}

spiral/writeaway 适用场景与选型建议

spiral/writeaway 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 15.07k 次下载、GitHub Stars 达 1, 最近一次更新时间为 2020 年 11 月 11 日, 在 PHP 生态内属于活跃度较高的组件。

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

围绕 spiral/writeaway 我们能提供哪些服务?
定制开发 / 二次开发

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

BUG 修复 & 性能优化

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

项目外包 & 长期维护

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

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

统计信息

  • 总下载量: 15.07k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 16
  • 依赖项目数: 1
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 5
  • Forks: 2
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2020-11-11