Service edit sidebar now shows a contextual "Setup Guide" button when
a service type is selected. Links to the matching KB article on the
live site (e.g., /kb/mokojoomcross/service-twitter-mokojoomcross).
All 34 service types mapped.
Authored-by: Moko Consulting
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
All 13 plugins had copy-paste stub code with literal placeholder URLs
(e.g. '{site_url}/api/endpoint') that were never substituted with
actual credential values. Each plugin now has correct:
- URL construction from credentials
- Auth method (Basic Auth for WP, JWT for Ghost, GraphQL for Hashnode)
- API payload format per platform spec
- Credential validation with live API checks
Fixed: ActivityPub, Blogger, Ghost, Google Business, Hashnode, Matrix,
Medium, Nostr (stub), RSS Feed, Threads, Tumblr, WhatsApp, WordPress.
Authored-by: Moko Consulting
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Dashboard link buttons in Logs, Posts, Services, Template, and
Templates views used Toolbar::getInstance() and Route::_ without
importing the classes — causing fatal errors on page load.
Authored-by: Moko Consulting
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Fix Twitter posting by replacing Bearer token (app-only, read-only)
with OAuth 1.0a HMAC-SHA1 signing using all 4 keys. Add credential
fields for 19 previously missing services and optional fields for
7 existing services. Add Developer Guide wiki page.
Authored-by: Moko Consulting
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Replaced raw JSON credentials textarea with individual form fields
per service type using Joomla showon directives. Each service now
has labeled inputs with help descriptions:
- Telegram: Chat ID + Bot Token (custom mode only)
- Discord/Slack/Teams/Google Chat: Webhook URL
- Facebook: Page ID + Page Access Token
- Twitter: Bearer Token + API Key + API Secret
- LinkedIn: Access Token + Organization ID
- Mastodon: Instance URL + Access Token
- Bluesky: Handle + App Password
- WhatsApp: Access Token + Phone Number ID + Recipient
- Mailchimp/SendGrid: API Key + List ID
- WordPress: Site URL + Username + App Password
- Webhook: URL + HTTP Method
- Matrix: Homeserver + Token + Room ID
- Ntfy: Server + Topic + Token
- Reddit: Client ID + Secret + Username + Subreddit
- Medium/Dev.to/Ghost/Blogger: API keys/tokens
Default/Custom mode selector for services with MokoWaaS bot support.
Authorize button for OAuth services (Facebook, LinkedIn, Twitter,
Threads) — visible after first save.
Dashboard button added to toolbar on ALL views (Services, Posts,
Templates, Logs, Service edit, Template edit).
Help panel sidebar in service edit with setup steps.
90+ new language strings for credential fields and help text.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
- Added View/Service/HtmlView.php and tmpl/service/edit.php for the
service edit form (was causing 404 "View not found" error)
- Added credential hint panel in service edit sidebar
- Added 16 more default templates (telegram, discord, slack, facebook,
linkedin, bluesky, threads, teams, medium, wordpress, webhook,
sendgrid, brevo, ntfy, reddit, pinterest) — total 20 default templates
- Added credential hint language strings
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Fixes three issues found during dev site testing:
1. All 4 list views (Services, Posts, Logs, Templates) missing
filterForm and activeFilters properties. Joomla searchtools
layout calls getGroup() on null filterForm. Added get('FilterForm')
and get('ActiveFilters') to all list HtmlView classes.
2. Content plugin onContentPrepareForm typed as Form but Joomla 5/6
passes PrepareFormEvent. Now accepts both: extracts Form from
PrepareFormEvent when available, falls back to legacy Form type.
3. WebServices API routes expanded: added templates and logs CRUD
endpoints alongside posts and services.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
MySQL strict mode does not allow default values on TEXT/BLOB columns.
Removes DEFAULT '' from error_message in #__mokojoomcross_posts.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
#19 Per-article cross-posting: Content plugin injects "Cross-Posting"
fieldset into article editor via onContentPrepareForm. Dynamic
checkbox list of all enabled services. Skip toggle. System plugin
reads article attribs for mokojoomcross_services (array of service
IDs) and mokojoomcross_skip (boolean). Unchecked = post to all.
#20 Analytics dashboard: Posts-by-service breakdown table with
success rate column (color-coded). Top cross-posted articles
list. DashboardModel methods: getServiceBreakdown(),
getDailyTrend(), getTopArticles().
#21 OAuth flows: OAuthHelper with authorize URL generation (Facebook,
LinkedIn, Twitter), PKCE for Twitter, code→token exchange, token
storage in service credentials. OauthController with authorize
and callback actions. Reads client ID/secret from plugin params.
#22 Wiki documentation: Services guide (all 9 platforms, default vs
custom mode), REST API reference, Message Templates guide with
examples per platform, Troubleshooting guide.
Authored-by: Moko Consulting
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
#12 LinkedIn: plugin config form (OAuth client ID/secret, redirect URI)
#13 Mastodon: plugin config (default instance, visibility, hashtags)
#14 Bluesky: plugin config (default PDS URL, auto link cards)
#15 Mailchimp: plugin config (sender name/email, auto-send toggle)
#17 Template management: full CRUD with TemplatesController,
TemplateController, TemplatesModel, TemplateModel, TemplateTable.
List view with service type badges and body preview. Edit view
with placeholder reference panel showing all 8 placeholders.
Filter form with search, published, service_type filters.
Added Templates submenu item and dashboard quick link.
#18 Logs: added filter form with level and search filters.
#16 WebServices: implementation already in place from scaffold,
routes registered for posts and services CRUD.
Admin component now has 5 submenu items: Dashboard, Post Queue,
Services, Templates, Activity Logs.
Authored-by: Moko Consulting
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>