게시자 - 후크 및 이벤트
게시자 후크 및 이벤트
섹션 제목: “게시자 후크 및 이벤트”이벤트, 후크 및 플러그인을 사용하여 게시자 기능 확장에 대한 전체 가이드입니다.
이벤트 시스템 개요
섹션 제목: “이벤트 시스템 개요”이벤트란 무엇인가요?
섹션 제목: “이벤트란 무엇인가요?”이벤트를 사용하면 다른 모듈이 게시자 작업에 반응할 수 있습니다.
Publisher Action → Trigger Event → Other modules listen/react
Examples: - Article created → Send notification email - Article published → Update social media - Comment posted → Notify author - Category created → Update search index이벤트 흐름
섹션 제목: “이벤트 흐름”graph LR A[Action in Publisher] -->|Trigger| B[Event fired] B -->|Listeners notified| C[Other modules react] C -->|Execute callbacks| D[Plugins/Hooks run]이용 가능한 이벤트
섹션 제목: “이용 가능한 이벤트”아이템(기사) 이벤트
섹션 제목: “아이템(기사) 이벤트”게시자.항목.작성됨
섹션 제목: “게시자.항목.작성됨”새 기사가 생성되면 시작됩니다.
// Trigger point in Publisherxoops_events()->trigger('publisher.item.created', array( 'item' => $item, 'itemid' => $item->getVar('itemid'), 'title' => $item->getVar('title'), 'uid' => $item->getVar('uid')));예시 청취자:
// Listen for article creationxoops_events()->attach('publisher.item.created', 'onArticleCreated');
function onArticleCreated($item) { $itemId = $item['itemid']; $title = $item['title']; $uid = $item['uid'];
// Send email notification sendEmailNotification($uid, "New article: $title");
// Log activity logActivity('Article created', $itemId);
// Update search index updateSearchIndex($itemId);}게시자.항목.업데이트됨
섹션 제목: “게시자.항목.업데이트됨”기사가 업데이트되면 시작됩니다.
xoops_events()->trigger('publisher.item.updated', array( 'item' => $item, 'itemid' => $itemId, 'changes' => $changes));게시자.항목.삭제됨
섹션 제목: “게시자.항목.삭제됨”기사가 삭제되면 시작됩니다.
xoops_events()->trigger('publisher.item.deleted', array( 'itemid' => $itemId, 'title' => $title, 'categoryid' => $categoryId));게시자.항목.게시됨
섹션 제목: “게시자.항목.게시됨”기사 상태가 게시됨으로 변경되면 시작됩니다.
xoops_events()->trigger('publisher.item.published', array( 'item' => $item, 'itemid' => $itemId));게시자.항목.승인됨
섹션 제목: “게시자.항목.승인됨”보류 중인 기사가 승인되면 시작됩니다.
xoops_events()->trigger('publisher.item.approved', array( 'item' => $item, 'itemid' => $itemId, 'uid' => $uid));게시자.항목.거부됨
섹션 제목: “게시자.항목.거부됨”기사가 거부되면 시작됩니다.
xoops_events()->trigger('publisher.item.rejected', array( 'item' => $item, 'itemid' => $itemId, 'reason' => $reason));카테고리 이벤트
섹션 제목: “카테고리 이벤트”게시자.카테고리.생성됨
섹션 제목: “게시자.카테고리.생성됨”카테고리가 생성되면 시작됩니다.
xoops_events()->trigger('publisher.category.created', array( 'category' => $category, 'categoryid' => $categoryId, 'name' => $name));게시자.카테고리.업데이트됨
섹션 제목: “게시자.카테고리.업데이트됨”카테고리가 업데이트되면 시작됩니다.
xoops_events()->trigger('publisher.category.updated', array( 'category' => $category, 'categoryid' => $categoryId));게시자.카테고리.삭제됨
섹션 제목: “게시자.카테고리.삭제됨”카테고리가 삭제되면 시작됩니다.
xoops_events()->trigger('publisher.category.deleted', array( 'categoryid' => $categoryId, 'name' => $name, 'itemCount' => $itemCount));댓글 이벤트
섹션 제목: “댓글 이벤트”####Publisher.comment.created
댓글이 게시되면 시작됩니다.
xoops_events()->trigger('publisher.comment.created', array( 'comment' => $comment, 'commentid' => $commentId, 'itemid' => $itemId));게시자.comment.승인됨
섹션 제목: “게시자.comment.승인됨”댓글이 승인되면 시작됩니다.
xoops_events()->trigger('publisher.comment.approved', array( 'comment' => $comment, 'commentid' => $commentId));게시자.댓글.삭제됨
섹션 제목: “게시자.댓글.삭제됨”댓글이 삭제되면 시작됩니다.
xoops_events()->trigger('publisher.comment.deleted', array( 'commentid' => $commentId, 'itemid' => $itemId));이벤트 듣기
섹션 제목: “이벤트 듣기”이벤트 리스너 등록
섹션 제목: “이벤트 리스너 등록”모듈이나 플러그인에서:
<?php// Register listener in xoops_version.php or initialization filexoops_events()->attach( 'publisher.item.created', array('MyModuleListener', 'onPublisherItemCreated'));
// Or use function namexoops_events()->attach( 'publisher.item.created', 'my_module_on_item_created');?>리스너 클래스 메서드
섹션 제목: “리스너 클래스 메서드”<?phpclass MyModuleListener { public static function onPublisherItemCreated($data) { $itemId = $data['itemid']; $title = $data['title'];
// Perform action self::notifySubscribers($itemId, $title); }
protected static function notifySubscribers($itemId, $title) { // Implementation }}?>리스너 기능
섹션 제목: “리스너 기능”<?phpfunction my_module_on_item_created($data) { $itemId = $data['itemid']; $title = $data['title']; $uid = $data['uid'];
// Send notification notifyUser($uid, "Article created: $title");}?>이벤트 예시
섹션 제목: “이벤트 예시”예 1: 기사 작성 시 이메일 보내기
섹션 제목: “예 1: 기사 작성 시 이메일 보내기”<?php// Listen for article creationxoops_events()->attach( 'publisher.item.created', 'send_article_notification_email');
function send_article_notification_email($data) { $itemId = $data['itemid']; $title = $data['title']; $uid = $data['uid'];
// Get user object $userHandler = xoops_getHandler('user'); $user = $userHandler->get($uid);
if (!$user) { return; }
// Get admin emails $config = xoops_getModuleConfig(); $adminEmails = $config['admin_emails'];
// Prepare email $subject = "New Article: $title"; $message = "A new article has been created:\n\n"; $message .= "Title: $title\n"; $message .= "Author: " . $user->getVar('uname') . "\n"; $message .= "Date: " . date('Y-m-d H:i:s') . "\n"; $message .= "ID: $itemId\n\n"; $message .= "Link: " . XOOPS_URL . "/modules/publisher/?op=showitem&itemid=$itemId\n";
// Send to admins foreach (explode(',', $adminEmails) as $email) { xoops_mail($email, $subject, $message); }}?>예 2: 검색 색인 업데이트
섹션 제목: “예 2: 검색 색인 업데이트”<?php// Listen for article published eventxoops_events()->attach( 'publisher.item.published', 'update_search_index');
function update_search_index($data) { $itemId = $data['itemid']; $item = $data['item'];
// Update search index $searchHandler = xoops_getModuleHandler('Search'); $searchHandler->indexArticle($itemId, array( 'title' => $item->getVar('title'), 'content' => $item->getVar('body'), 'author' => $item->getVar('uname'), 'date' => $item->getVar('datesub') ));}?>예 3: 소셜 미디어에 자동 게시
섹션 제목: “예 3: 소셜 미디어에 자동 게시”<?php// Listen for article publicationxoops_events()->attach( 'publisher.item.published', 'post_to_social_media');
function post_to_social_media($data) { $item = $data['item']; $itemId = $data['itemid'];
// Get config $config = xoops_getModuleConfig();
if ($config['post_to_twitter']) { postToTwitter( $item->getVar('title'), XOOPS_URL . '/modules/publisher/?op=showitem&itemid=' . $itemId ); }
if ($config['post_to_facebook']) { postToFacebook( $item->getVar('title'), $item->getVar('description') ); }}
function postToTwitter($text, $url) { // Twitter API integration // Use Twitter OAuth library}
function postToFacebook($title, $description) { // Facebook API integration}?>예시 4: 외부 시스템과 동기화
섹션 제목: “예시 4: 외부 시스템과 동기화”<?php// Listen for article creation and updatexoops_events()->attach( 'publisher.item.created', 'sync_external_system');
xoops_events()->attach( 'publisher.item.updated', 'sync_external_system');
function sync_external_system($data) { $item = $data['item']; $itemId = $data['itemid'];
// Get external API config $config = xoops_getModuleConfig(); $apiUrl = $config['external_api_url']; $apiKey = $config['external_api_key'];
// Prepare payload $payload = json_encode(array( 'id' => $itemId, 'title' => $item->getVar('title'), 'content' => $item->getVar('body'), 'date' => date('c', $item->getVar('datesub')) ));
// Send to external system $ch = curl_init($apiUrl); curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_POSTFIELDS, $payload); curl_setopt($ch, CURLOPT_HTTPHEADER, array( 'Content-Type: application/json', 'Authorization: Bearer ' . $apiKey )); curl_exec($ch); curl_close($ch);}?>후크 시스템
섹션 제목: “후크 시스템”게시자 후크
섹션 제목: “게시자 후크”후크를 사용하면 게시자 동작을 수정할 수 있습니다.
게시자.view.article.start
섹션 제목: “게시자.view.article.start”기사가 렌더링되기 전에 호출됩니다.
xoops_events()->attach( 'publisher.view.article.start', 'modify_article_before_display');
function modify_article_before_display(&$item) { // Modify item before display $title = $item->getVar('title'); $item->setVar('title', '[FEATURED] ' . $title);}####Publisher.view.article.end
아티클이 렌더링된 후 호출됩니다.
xoops_events()->attach( 'publisher.view.article.end', 'append_to_article');
function append_to_article(&$article) { // Add content after article $article .= '<div class="related-articles">'; $article .= '<!-- Related articles content -->'; $article .= '</div>';}게시자.허가.체크
섹션 제목: “게시자.허가.체크”권한을 확인할 때 호출됩니다.
xoops_events()->attach( 'publisher.permission.check', 'custom_permission_logic');
function custom_permission_logic(&$allowed, $permission, $itemId) { // Custom permission logic if (custom_rule_applies($itemId)) { $allowed = true; }}플러그인 시스템
섹션 제목: “플러그인 시스템”플러그인 만들기
섹션 제목: “플러그인 만들기”플러그인은 게시자 기능을 확장합니다.
파일 구조:
modules/publisher/plugins/├── myplugin/│ ├── plugin.php (main file)│ ├── language/│ │ └── english.php│ ├── templates/│ └── css/플러그인.php:
<?php// Plugin informationdefine('MYPLUGIN_NAME', 'My Publisher Plugin');define('MYPLUGIN_VERSION', '1.0.0');define('MYPLUGIN_DESCRIPTION', 'Extends Publisher with custom features');
// Register hooks/eventsxoops_events()->attach( 'publisher.item.created', 'myplugin_on_item_created');
xoops_events()->attach( 'publisher.view.article.end', 'myplugin_append_content');
// Plugin functionsfunction myplugin_on_item_created($data) { // Handle item creation}
function myplugin_append_content(&$content) { // Append content to article $content .= '<div class="myplugin-content">Custom content</div>';}
// Plugin APIclass MyPublisherPlugin { public static function getArticles($limit = 10) { $itemHandler = xoops_getModuleHandler('Item', 'publisher'); return $itemHandler->getRecent($limit); }
public static function getCategoryTree() { $catHandler = xoops_getModuleHandler('Category', 'publisher'); return $catHandler->getRoots(); }}?>플러그인 로드
섹션 제목: “플러그인 로드”게시자 초기화에서:
<?php// Load plugin$pluginPath = XOOPS_ROOT_PATH . '/modules/publisher/plugins/myplugin/plugin.php';if (file_exists($pluginPath)) { include_once $pluginPath;}?>콘텐츠 필터
섹션 제목: “콘텐츠 필터”필터는 처리 전/후에 데이터를 수정합니다.
<?php// Filter article title$title = apply_filters('publisher_item_title', $title, $itemId);
// Filter article body$body = apply_filters('publisher_item_body', $body, $itemId);
// Filter article display$display = apply_filters('publisher_item_display', $display, $item);?>필터 등록
섹션 제목: “필터 등록”<?php// Add filteradd_filter('publisher_item_title', 'my_title_filter');
function my_title_filter($title, $itemId) { // Modify title return strtoupper($title);}
// Add filter with priorityadd_filter( 'publisher_item_body', 'my_body_filter', 10, // priority (lower = earlier) 2 // number of arguments);
function my_body_filter($body, $itemId) { // Add watermark to body return $body . '<p class="watermark">© ' . date('Y') . '</p>';}?>액션 후크
섹션 제목: “액션 후크”맞춤 작업
섹션 제목: “맞춤 작업”특정 지점에서 코드를 실행합니다.
<?php// Do actiondo_action('publisher_article_saved', $itemId, $item);
// Do action with argumentsdo_action('publisher_comment_approved', $commentId, $comment);
// Listen to actionadd_action('publisher_article_saved', 'my_action_handler');
function my_action_handler($itemId, $item) { // Execute code log_article_save($itemId); update_statistics();}?>플러그인으로 확장하기
섹션 제목: “플러그인으로 확장하기”플러그인 예시: 관련 기사
섹션 제목: “플러그인 예시: 관련 기사”<?phpclass RelatedArticlesPlugin { public static function init() { xoops_events()->attach( 'publisher.view.article.end', array(__CLASS__, 'displayRelated') ); }
public static function displayRelated(&$content) { // Get related articles $related = self::getRelatedArticles();
if (count($related) > 0) { $html = '<div class="related-articles">'; $html .= '<h3>Related Articles</h3>'; $html .= '<ul>';
foreach ($related as $article) { $html .= '<li>'; $html .= '<a href="' . $article->url() . '">'; $html .= $article->title(); $html .= '</a>'; $html .= '</li>'; }
$html .= '</ul>'; $html .= '</div>';
$content .= $html; } }
protected static function getRelatedArticles() { // Get current article global $itemId;
$itemHandler = xoops_getModuleHandler('Item', 'publisher'); $item = $itemHandler->get($itemId);
if (!$item) { return array(); }
// Get articles in same category $related = $itemHandler->getByCategory( $item->getVar('categoryid'), $limit = 5 );
// Remove current article $related = array_filter($related, function($article) { global $itemId; return $article->getVar('itemid') != $itemId; });
return array_slice($related, 0, 3); }}
// Initialize pluginRelatedArticlesPlugin::init();?>모범 사례
섹션 제목: “모범 사례”이벤트 리스너 지침
섹션 제목: “이벤트 리스너 지침”✓ Keep listeners performant - Don't do heavy processing in events - Cache results when possible
✓ Handle errors gracefully - Use try/catch - Log errors - Don't break main flow
✓ Use meaningful names - my_module_on_publisher_item_created - Instead of: process_event_1
✓ Document your events - Comment what trigger point is - List expected data - Show usage examples
✓ Unload listeners properly - Clean up on module uninstall - Remove hooks when no longer needed성능 팁
섹션 제목: “성능 팁”✗ Avoid database queries in listeners✗ Don't block execution with slow operations✗ Avoid modifying data unnecessarily
✓ Queue long-running tasks✓ Cache external API calls✓ Use lazy loading for dependencies✓ Batch database operations디버깅 이벤트
섹션 제목: “디버깅 이벤트”디버그 모드 활성화
섹션 제목: “디버그 모드 활성화”<?php// In module initializationif (defined('XOOPS_DEBUG')) { xoops_events()->attach( 'publisher.item.created', 'publisher_debug_event' );}
function publisher_debug_event($data) { error_log('Publisher Event: ' . print_r($data, true));}?>로그 이벤트
섹션 제목: “로그 이벤트”<?php// Log event dataxoops_events()->attach( 'publisher.item.created', 'log_publisher_events');
function log_publisher_events($data) { $log = XOOPS_ROOT_PATH . '/var/log/publisher.log'; $entry = date('Y-m-d H:i:s') . ' - '; $entry .= 'Event: publisher.item.created' . "\n"; $entry .= 'Data: ' . json_encode($data) . "\n\n"; file_put_contents($log, $entry, FILE_APPEND);}?>관련 문서
섹션 제목: “관련 문서”- API 참조
- 맞춤 템플릿
- 기사 작성
리소스
섹션 제목: “리소스”#publisher #hooks #events #plugins #extensions #customization #xoops