Пример #1
0
/**
 * Implementation of module_admin()
 */
function sailing_admin()
{
    global $ssc_database;
    // Work out what we want to do
    $action = array_shift($_GET['param']);
    switch ($action) {
        case 'edit':
            // Edit existing series
            $out = ssc_generate_form('sailing_series');
            break;
        case 'page':
            // Allow for paging
            array_unshift($_GET['param'], 'page');
        case 'download':
            $id = array_shift($_GET['param']);
            $csv = _ssc_sailing_get_csv($id);
            if ($csv) {
                ssc_custom_data("text/csv", $csv, "series-{$id}.csv");
            } else {
                ssc_not_found();
            }
            break;
        case '':
            $out = ssc_admin_table(t('Regattas/Series'), "SELECT s.id, name, description, path FROM #__sailing_series s \n\t\t\tLEFT JOIN #__handler h ON h.id = s.id ORDER BY path ASC", null, array('perpage' => 10, 'pagelink' => '/admin/sailing/page/', 'link' => 'name', 'linkpath' => '/admin/sailing/edit/', 'customheads' => array('Download CSV'), 'customcols' => array('Download' => '/admin/sailing/download/')));
            $out .= l(t('New series'), '/admin/sailing/edit/0');
            break;
        default:
            ssc_not_found();
            $out = '';
    }
    return $out;
}
Пример #2
0
/**
 * Implementation of module_admin()
 */
function static_admin()
{
    // Work out what we want to do
    $action = array_shift($_GET['param']);
    switch ($action) {
        case 'edit':
            $out = '';
            if (!empty($_POST['form-id']) && $_POST['form-id'] == 'static_form' && !empty($_POST['body'])) {
                if (!ssc_load_library('sscText')) {
                    ssc_add_message(SSC_MSG_WARN, t('Unable to show page preview'));
                } else {
                    $out = sscText::convert($_POST['body']);
                }
            }
            $out .= ssc_generate_form('static_form');
            break;
        case 'page':
            // Allow for paging
            array_unshift($_GET['param'], 'page');
        case '':
            $out = ssc_admin_table(t('Simple pages'), "SELECT s.id, title, path FROM #__static s \n\t\t\tLEFT JOIN #__handler h ON h.id = s.id ORDER BY path ASC", null, array('perpage' => 10, 'link' => 'title', 'linkpath' => '/admin/static/edit/'));
            $out .= l(t('New page'), '/admin/static/edit/0');
            break;
        default:
            ssc_not_found();
            $out = '';
    }
    return $out;
}
Пример #3
0
/**
 * Implementation of module_admin()
 */
function gallery_admin()
{
    global $ssc_database;
    // What aspect of admin?
    $action = array_shift($_GET['param']);
    switch ($action) {
        case 'edit':
            $out = ssc_generate_form('gallery_form');
            break;
        case 'page':
            // Cater for page calls
            array_unshift($_GET['param'], 'page');
        case '':
            // "Main" admin page - show galleries
            $out = ssc_admin_table(t('Current galleries'), "SELECT g.id, title, description, COUNT(c.id) items, if (visible, 'Yes', 'No') Visible FROM \n\t\t\t#__gallery g LEFT JOIN #__gallery_content c ON g.id = gallery_id GROUP BY gallery_id\n\t\t\tORDER BY visible DESC, title asc", null, array('perpage' => 10, 'link' => 'title', 'linkpath' => "/admin/gallery/edit/"));
            $out .= l(t('New gallery'), "/admin/gallery/edit/0");
    }
    return $out;
}
Пример #4
0
/**
 * Implementation of module_admin()
 */
function nav_admin()
{
    $out = '';
    $action = array_shift($_GET['param']);
    switch ($action) {
        case 'link':
            $out = ssc_generate_form('nav_edit_link');
            break;
        case 'widget':
            $out = ssc_generate_form('nav_edit_widget');
            break;
        case '':
            // Base page
            global $ssc_database;
            ssc_set_title('Navigation widgets');
            $result = $ssc_database->query("SELECT args FROM #__sidebar WHERE module = 2 ORDER BY args ASC");
            if ($result && $ssc_database->number_rows() > 0) {
                while ($data = $ssc_database->fetch_assoc($result)) {
                    $data = explode(',', $data['args']);
                    // For each block
                    $out .= _nav_edit_table($data[0]);
                    /*$out .= ssc_admin_table($data[1], "SELECT n.id, p.title parent, n.title, n.desc description, n.url, COUNT(n.id) FROM
                    		#__navigation n, #__navigation p WHERE n.l BETWEEN p.l AND p.r
                    		AND p.bid = %d AND n.bid = %d GROUP BY n.id ORDER BY n.l", array($data[0], $data[0]),
                    		array('link' => 'title', 'linkpath' => '/admin/nav/link/'));/**/
                    $out .= ssc_generate_form('nav_add_link', $data[0]);
                }
            } else {
                ssc_add_message(SSC_MSG_INFO, t('No navigation widgets exist yet.') . $ssc_database->error());
                $out = l(t('Create widget'), '/admin/nav/widget');
            }
            break;
        default:
            ssc_not_found();
            break;
    }
    return $out;
}
Пример #5
0
/**
 * Implementation of module_admin
 */
function events_admin()
{
    global $ssc_database;
    // Check what we're doing
    $action = array_shift($_GET['param']);
    switch ($action) {
        case 'edit':
            // Editing a particular event
            $out = ssc_generate_form('events_edit');
            break;
        case 'page':
            // Allow for paging
            array_unshift($_GET['param'], 'page');
        case '':
            $out = ssc_admin_table(t('Event list'), "SELECT id, title, date, description, uri FROM #__events ORDER BY date DESC", null, array('perpage' => 20, 'pagelink' => '/admin/events/page/', 'link' => 'title', 'linkpath' => '/admin/events/edit/'));
            $out .= l(t('New event'), '/admin/events/edit/0');
            break;
        default:
            ssc_not_found();
            $out = '';
    }
    return $out;
}
Пример #6
0
/**
 * Implements module_widget
 */
function login_widget($type)
{
    global $ssc_user;
    if ($_GET['q'] == 'user/login') {
        return;
    }
    if ($ssc_user->gid == SSC_USER_GUEST) {
        // Do we show the login box?
        if (!ssc_var_get('login_show_login', true)) {
            return;
        }
        $menu[] = array('t' => t('Forgotten password'), 'p' => '/user/forgot', 'h' => t('Reset the password on an account'));
        if (ssc_var_get('login_user_create', true)) {
            $menu[] = array('t' => t('Create new account'), 'p' => '/user/register');
        }
        $links = nav_widget($menu);
        return array('title' => t('User login'), 'body' => ssc_generate_form('login_form') . $links['body']);
    } else {
        $menu = array();
        $menu[] = array('t' => t('Edit profile'), 'p' => '/user/profile');
        $menu[] = array('t' => t('Log out'), 'p' => '/user/logout');
        $links = nav_widget($menu);
        return array('title' => 'Profile', 'body' => t('Welcome, !name', array('!name' => $ssc_user->fullname)) . $links['body']);
    }
}
Пример #7
0
/**
 * Implementation of module_content()
 * 
 * Blog content and parameters can be interpreted in several different methods
 * 
 *   - /
 *     No parameters.  Should show (paged) all posts in the blog.
 * 
 *   - /tag/xxx 
 *     Responds with paged posts relating to that tag.
 * 
 *   - /yyyy/mm/dd/post-name
 *     Retrieve the post based on the url safe-name
 * 
 *   - /id/123
 *     Used as permalink.  Perma-redirect to current /yyyy/mm/dd/post-name url
 * 
 *   - /yyyy
 *     Archival retrieval of posts (no content) in the specified year
 *     
 *   - /atom
 *     Atom style feed for the current blog
 */
function blog_content()
{
    global $ssc_database, $ssc_site_path;
    $result = $ssc_database->query("SELECT name, comments, page FROM #__blog WHERE id = %d LIMIT 1", $_GET['path-id']);
    if ($result && ($data = $ssc_database->fetch_assoc($result))) {
        // Load display library
        if (!ssc_load_library('sscText')) {
            ssc_not_found();
            return;
        }
        // Get blog settings
        ssc_set_title($data['name']);
        $_GET['param'] = explode("/", $_GET['param']);
        $_GET['blog_comments'] = (bool) $data['comments'];
        $action = array_shift($_GET['param']);
        if ($action == '' || $action == 'page') {
            // Show paged posts
            array_unshift($_GET['param'], 'page');
            if (count($_GET['param']) > 2) {
                ssc_not_found();
            }
            return _blog_gen_post($data['page'], $_GET['path'] . '/page/', "SELECT p.id, p.title, p.created, p.urltext, u.displayname author, count(c.post_id) count, p.body, p.commentsdisabled FROM\n\t\t\t\t#__blog_post p LEFT JOIN #__user u ON u.id = p.author_id LEFT JOIN #__blog_comment c ON (post_id = p.id AND (status & %d = 0))\n\t\t\t\tWHERE blog_id = %d AND p.is_draft = 0 GROUP BY p.id ORDER BY p.created DESC", SSC_BLOG_COMMENT_SPAM, $_GET['path-id']);
        } elseif ($action == 'tag') {
            // Show posts for the tag
            if (count($_GET['param']) == 2 || count($_GET['param']) > 3) {
                ssc_not_found();
            }
            $tag = array_shift($_GET['param']);
            if (empty($tag)) {
                ssc_not_found();
            }
            // If to parameter for the tag, die gracefully
            return _blog_gen_post($data['page'], $_GET['path'] . '/tag/' . $tag . '/page/', "SELECT p.id, p.title, p.created, p.urltext, u.displayname author, count(c.post_id) count, p.body, p.commentsdisabled FROM \n\t\t\t\t#__blog_post p LEFT JOIN #__user u ON u.id = p.author_id LEFT JOIN #__blog_comment c ON (post_id = p.id AND (status & %d = 0))\n\t\t\t\tLEFT JOIN #__blog_relation r ON r.post_id = p.id LEFT JOIN #__blog_tag t ON t.id = r.tag_id WHERE blog_id = %d AND p.is_draft = 0 AND t.tag = '%s'\n\t\t\t\tGROUP BY p.id ORDER BY p.created DESC", SSC_BLOG_COMMENT_SPAM, $_GET['path-id'], $tag);
        } elseif ($action == 'id') {
            // Redirect as needed
            if (count($_GET['param']) != 1) {
                ssc_not_found();
            }
            // Extra parameters
            $result = $ssc_database->query("SELECT created, urltext FROM #__blog_post WHERE id = %d AND is_draft = 0 LIMIT 1", (int) array_shift($_GET['param']));
            if ($data = $ssc_database->fetch_object($result)) {
                ssc_redirect($_GET['path'] . date("/Y/m/d/", $data->created) . $data->urltext, 301);
                return;
            }
            // Post ID doesn't exist - kill
            ssc_not_found();
        } elseif ($action == 'feed') {
            // Internal redirect to atom feed
            $feedPath = $ssc_site_path . '/modules/blog/atom-' . $_GET['path-id'] . '.xml';
            // Check if feed exists yet
            if (!file_exists($feedPath)) {
                ssc_not_found();
            }
            // Try and read it
            $rss = file_get_contents($feedPath);
            // See if read success?
            if ($rss === FALSE) {
                ssc_not_found();
            }
            // Guess not - die gracefully
            // Output rss
            header("Content-Type: application/xml", true);
            echo $rss;
            // And now quit ...
            ssc_close();
            // ... fully
            exit(0);
        } elseif ($action == 'atom') {
            if (count($_GET['param']) > 1) {
                ssc_not_found();
            }
            header("Content-Type: application/atom+xml", true);
            include $ssc_site_path . '/modules/blog/rss.inline.php';
            ssc_close();
            exit(0);
        } else {
            // Not those - is int?
            $action = (int) $action;
            // Check for bad first param
            if ($action == 0) {
                ssc_not_found();
                return;
            }
            // Check if the post name exists?
            if (!empty($_GET['param'][2])) {
                // Retrieve post
                $result = $ssc_database->query("SELECT p.id, p.title, p.created, p.urltext, p.commentsdisabled, u.displayname author, p.body FROM #__blog_post p \n\t\t\t\t\tLEFT JOIN #__user u ON u.id = p.author_id WHERE blog_id = %d AND p.is_draft = 0 AND p.urltext = '%s' \n\t\t\t\t\tLIMIT 1", $_GET['path-id'], $_GET['param'][2]);
                if (!($data = $ssc_database->fetch_object($result))) {
                    // No post with name - kill output
                    ssc_not_found();
                    return;
                }
                // Don't allow any further params
                if (!empty($_GET['param'][3])) {
                    // Unless admin, and the param is 'mark'
                    if (login_check_auth("blog") && $_GET['param'][3] == 'mark') {
                        if ($ssc_database->query("UPDATE #__blog_comment SET status = status | %d WHERE post_id = %d", SSC_BLOG_COMMENT_READ, $data->id)) {
                            ssc_add_message(SSC_MSG_INFO, t('Marked the comments as read'));
                        }
                    } else {
                        ssc_not_found();
                        return;
                    }
                }
                // Comments disabled flag
                $comments_disabled = $data->commentsdisabled;
                // Post id number
                $pid = $data->id;
                $out = "\n<h3>{$data->title}</h3>\n";
                $out .= t("Posted !date at !time by !author\n", array('!date' => date(ssc_var_get('date_med', SSC_DATE_MED), $data->created), '!time' => date(ssc_var_get('time_short', SSC_TIME_SHORT), $data->created), '!author' => $data->author)) . '<br />';
                $result = $ssc_database->query("SELECT tag FROM #__blog_relation r, #__blog_tag t WHERE r.tag_id = t.id AND r.post_id = %d ORDER BY tag ASC", $data->id);
                // Retrieve list of tags for the post
                if ($ssc_database->number_rows()) {
                    $out .= "Tagged: ";
                    $txt = '';
                    while ($dat = $ssc_database->fetch_object($result)) {
                        $txt .= ', ' . l($dat->tag, $_GET['path'] . '/tag/' . $dat->tag);
                    }
                    $txt = substr($txt, 2);
                    $out .= $txt . '<br />';
                }
                $out .= sscText::convert($data->body);
                if ($_GET['blog_comments']) {
                    // Retrieve comments
                    $out .= '<div class="clear"></div><h3 id="comments">Comments</h3>';
                    // Are we admin?
                    $is_admin = login_check_auth("blog");
                    if ($is_admin) {
                        $result = $ssc_database->query("SELECT id, author, email, site, created, status, body FROM #__blog_comment \n\t\t\t\t\t\tWHERE post_id = %d ORDER BY created ASC", $data->id, SSC_BLOG_COMMENT_SPAM, SSC_BLOG_COMMENT_SPAM);
                        // Start spam/ham/commentstate form
                        $out .= '<form action="" method="post"><div><input type="hidden" name="form-id" value="blog_spam_ham" />';
                        // Show (dis-)enable comments button on posts with or without comments
                        if ($comments_disabled == 0) {
                            $sub_disable_comments = array('#value' => 'Disable Comments', '#type' => 'submit', '#name' => "disable_comments[{$pid}]");
                        } else {
                            $sub_disable_comments = array('#value' => 'Enable Comments', '#type' => 'submit', '#name' => "enable_comments[{$pid}]");
                        }
                        // Render button
                        $out .= theme_render_input($sub_disable_comments);
                    } else {
                        $result = $ssc_database->query("SELECT author, email, site, created, body FROM #__blog_comment \n\t\t\t\t\t\tWHERE post_id = %d AND status & %d = 0 ORDER BY created ASC", $data->id, SSC_BLOG_COMMENT_SPAM);
                    }
                    if (!$result || $ssc_database->number_rows($result) == 0) {
                        // Bad SQL
                        $out .= t('There are no comments posted yet.');
                    } else {
                        // Admin user - show spam/ham/commentstate options
                        if ($is_admin) {
                            // For each comment, show it, it's visible state, and possible options
                            while ($data = $ssc_database->fetch_object($result)) {
                                $status = $data->status;
                                $out .= "<div class='" . ($status & SSC_BLOG_COMMENT_SPAM ? "blog-spam-icon" : "blog-notspam-icon") . "'><p>" . nl2br(check_plain($data->body)) . "</p><p>";
                                $out .= t("Posted !date at !time by !author\n", array('!date' => date(ssc_var_get('date_med', SSC_DATE_MED), $data->created), '!time' => date(ssc_var_get('time_short', SSC_TIME_SHORT), $data->created), '!author' => empty($data->site) ? check_plain($data->author) : l(check_plain($data->author), $data->site))) . '</p>';
                                $sub_hide = array('#value' => 'Hide comment', '#type' => 'submit');
                                $sub_show = array('#value' => 'Show comment', '#type' => 'submit');
                                $sub_spam = array('#value' => 'Mark spam', '#type' => 'submit');
                                $sub_ham = array('#value' => 'Unmark spam', '#type' => 'submit');
                                // If tree for actions
                                if ($status & SSC_BLOG_COMMENT_CAN_SPAM) {
                                    // Hasn't been re-submitted yet
                                    if ($status & SSC_BLOG_COMMENT_SPAM) {
                                        // Was marked as spam
                                        $sub_ham['#name'] = "ham[{$data->id}]";
                                        $out .= theme_render_input($sub_ham);
                                        $sub_show['#name'] = "show[{$data->id}]";
                                        $out .= theme_render_input($sub_show);
                                    } else {
                                        // Was not marked spam
                                        $sub_spam['#name'] = "spam[{$data->id}]";
                                        $out .= theme_render_input($sub_spam);
                                        $sub_hide['#name'] = "hide[{$data->id}]";
                                        $out .= theme_render_input($sub_hide);
                                    }
                                } else {
                                    // Has already been resubmitted
                                    if ($status & SSC_BLOG_COMMENT_SPAM) {
                                        // Currently spam/hidden
                                        $sub_show['#name'] = "show[{$data->id}]";
                                        $out .= theme_render_input($sub_show);
                                    } else {
                                        // Marked as normal currently
                                        $sub_hide['#name'] = "hide[{$data->id}]";
                                        $out .= theme_render_input($sub_hide);
                                    }
                                }
                                $out .= '</div><hr />';
                            }
                        } else {
                            // Just show comments
                            while ($data = $ssc_database->fetch_object($result)) {
                                //$out .= "<div class='gravatar' style='background-image: url(\""._blog_gravatar_get_url($data->email)."\");'>";
                                $out .= '<p>' . nl2br(check_plain($data->body)) . '</p><p>';
                                $out .= t("Posted !date at !time by !author\n", array('!date' => date(ssc_var_get('date_med', SSC_DATE_MED), $data->created), '!time' => date(ssc_var_get('time_short', SSC_TIME_SHORT), $data->created), '!author' => empty($data->site) ? $data->author : l($data->author, $data->site))) . '</p><hr />';
                                //'</p></div><hr />';
                            }
                        }
                    }
                    // End admin form
                    if ($is_admin) {
                        $out .= '</div></form>';
                    }
                    if ($comments_disabled == 0 || $is_admin) {
                        $out .= ssc_generate_form('blog_guest_comment', $pid);
                    } else {
                        $out .= '<br />' . t("Sorry, commenting has been closed on this post.");
                    }
                }
                return $out;
            } elseif (isset($_GET['param'][0])) {
                // First param set not expecting anything - kill page
                ssc_not_found();
                return;
            } else {
                // Yearly archive
                return _blog_gen_post(10000, $_GET['path'] . '/page/', "SELECT p.id, p.title, p.created, p.urltext, u.displayname author, count(c.post_id) count, p.commentsdisabled FROM \n\t\t\t\t\t#__blog_post p LEFT JOIN #__blog_comment c ON (post_id = p.id AND (c.status & %d = 0)) LEFT JOIN #__user u ON u.id = p.author_id \n\t\t\t\t\tWHERE blog_id = %d AND p.created >= %d AND p.created < %d AND p.is_draft = 0 GROUP BY p.id ORDER BY p.created DESC", SSC_BLOG_COMMENT_SPAM, $_GET['path-id'], mktime(0, 0, 0, 1, 1, $action), mktime(0, 0, 0, 1, 0, $action + 1));
            }
        }
    }
    // Find content
    ssc_not_found();
}