jonnybarnes/indieweb

IndieWeb helper functions

v0.3 2020-11-29 11:13 UTC

This package is auto-updated.

Last update: 2024-03-29 02:50:23 UTC


README

#IndieWeb helpers These tools should help with things like POSSE-ing. Currently I'm only working with Twitter but adding other services is in the pipeline.

##Installing Super simple with composer:

composer require jonnybarnes/indieweb

##Numbers The Numbers class allows you to convert between decimal and either NewBase60 or NewBase64, and vice versa.

$numbers = new Numbers();
$nb60id = $numbers->b60tunum($realId);

##NotePrep The NotePrep class is for use when preparing a note that you want to POSSE to another site, such as Twitter. With a provided note the createNote method will add a link to the original copy, truncating the note if necessary.

$noteprep = new NotePrep();
$originalNote = 'A lovely note.';
$posseCopy = $noteprep->createNote($note, 'https://abc.de/n/id', 140, true);
echo $posseCopy;// 'A lovely note. (https://abc.de/n/id)'

##License As a library intended for use in the IndieWeb this is Licensed under the Creative Commons Zero license.