potibm / phluesky
An small PHP library for posting messages to the bluesky social network using the AT Protocol.
Installs: 2 989
Dependents: 0
Suggesters: 0
Security: 0
Stars: 24
Watchers: 2
Forks: 3
Open Issues: 2
Requires
- php: ^8.2
- ext-fileinfo: *
- php-http/discovery: ^1.19
- psr/http-client: ^1.0
- psr/http-client-implementation: *
- psr/http-factory: ^1.0
- psr/http-factory-implementation: *
- psr/http-message: ^2.0
- psr/http-message-implementation: *
Requires (Dev)
- nyholm/psr7: ^1.8
- phpunit/phpunit: ^10
- psalm/plugin-phpunit: ^0.18.4
- symfony/http-client: ^6.3
- symplify/easy-coding-standard: ^12.0.8
- vimeo/psalm: ^5.15
README
An small PHP library for Bluesky social using the AT Protocol.
Usage
Install
Installing using composer is suggested
composer require potibm/phluesky
You will need a PSR-7, PSR-17 and PSR-18 client or adapter from this list. For development symfony/http-client and nyholm/psr7 are used.
The HTTP service discovery will do the magic. In most cases no additional steps are required.
Setup and posting a simple message
$api = new BlueskyApi('nick.bsky.social', 'abcd-efgh-ijkl-mnop');
$postService = new \potibm\Bluesky\BlueskyPostService($api);
$post = \potibm\Bluesky\Feed\Post::create('β¨ example mentioning @atproto.com to share the URL π¨ββ€οΈβπ¨ https://en.wikipedia.org/wiki/CBOR.');
$response = $api->createRecord($post);
Adding mentions and links from post text
$post = \potibm\Bluesky\Feed\Post::create('β¨ example mentioning @atproto.com to share the URL π¨ββ€οΈβπ¨ https://en.wikipedia.org/wiki/CBOR.');
$post = $postService->addFacetsFromMentionsAndLinks($post);
Adding mentions and links and tags from post text
$post = \potibm\Bluesky\Feed\Post::create('β¨ example mentioning @atproto.com to share the URL π¨ββ€οΈβπ¨ https://en.wikipedia.org/wiki/CBOR. and #HashtagFun');
$post = $postService->addFacetsFromMentionsAndLinksAndTags($post);
Adding images
https://atproto.com/blog/create-post#images-embeds
$post = \potibm\Bluesky\Feed\Post::create('example post with image attached');
$post = $postService->addImage(
$post,
'image.jpg',
'alt text'
);
Adding website card embeds
https://atproto.com/blog/create-post#website-card-embeds
$post = \potibm\Bluesky\Feed\Post::create('post which embeds an external URL as a card');
$post = $postService->addWebsiteCard(
$post,
'https://example.com',
'Example website',
'Example website description',
'optionalimage.jpg'
);
Reply to a post
https://atproto.com/blog/create-post#replies
$post = \potibm\Bluesky\Feed\Post::create('example of a reply');
$post = $postService->addReply(
$post,
'at://did:plc:u5cwb2mwiv2bfq53cjufe6yn/app.bsky.feed.post/3k43tv4rft22g'
);
Quote a post
https://atproto.com/blog/create-post#quote-posts
$post = \potibm\Bluesky\Feed\Post::create('example of a quote-post');
$post = $postService->addQuote(
$post,
'at://did:plc:u5cwb2mwiv2bfq53cjufe6yn/app.bsky.feed.post/3k44deefqdk2g'
);
License
The MIT License (MIT). Please see License File for more information.