Esempio n. 1
0
                                <div class="tab-pane" id="tab-twitter">
                                    <div class="title">
                                        Invite Twitter friends
                                    </div>
                                    <div class="invite-twitter">
                                        Click the button below to write a tweet to invite your twitter followers.
                                    </div>
                                    <a href="https://twitter.com/share" class="twitter-share-button" data-lang="en" data-text="Talk with me on Sunrise." data-hashtags="SunriseVC">Tweet</a>
                                </div>
                                <div class="tab-pane" id="tab-url">
                                    <div class="title">
                                        Copy the URL below and share it with your friends
                                    </div>
                                    <div class="invite-url">
                                        <?php 
echo sr_current_url();
?>
                                    </div>
                                </div>            
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </div>

        <div class="modal fade" id="open-status-modal">
            <div class="modal-dialog">
                <div class="modal-content">
                    <div class="modal-header">
                        <button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
Esempio n. 2
0
function room()
{
    global $sr_root;
    global $sr_channel_server_uri;
    global $sr_room_ui_title;
    global $sr_join_anonymous;
    global $sr_join_non_authorized;
    global $sr_default_chat_name;
    $db = sr_pdo();
    $browser = room_get_browser();
    if ($browser['name'] != 'Mozilla Firefox' && $browser['name'] != 'Google Chrome') {
        sr_redirect('/d/room/message/browser/');
    }
    if (isset($_GET['name']) && strlen($_GET['name']) > 0) {
        try {
            $context = array();
            // check if the room with the specified name exists
            $stmt = $db->prepare('SELECT * FROM room WHERE name = :name');
            $stmt->bindParam(':name', $_GET['name']);
            $stmt->setFetchMode(PDO::FETCH_CLASS, 'Room');
            $stmt->execute();
            $room = $stmt->fetch();
            if ($room === False) {
                // Room doesn't exist. Create a room using the requested name
                $room = new Room();
                $room->name = $_GET['name'];
                $room->title = '';
                $room->description = '';
                $room->password = '';
                $room->is_open = 1;
                $room->open($db);
            } else {
                $room->title = stripslashes($room->title);
                $room->description = stripslashes($room->description);
            }
        } catch (PDOException $e) {
            sr_response_error(500);
        }
        $context['sunrise_main'] = $sr_root;
        $context['channel_server'] = $sr_channel_server_uri;
        $context['room'] = $room;
        $context['room_link'] = sr_current_url();
        $context['room_api'] = $sr_root;
        $context['room_ui_title'] = $sr_room_ui_title;
        //IF he is registered user
        if (sr_is_signed_in()) {
            //IF server allow non-authorized user to join
            if ($sr_join_non_authorized) {
                $context['user_id'] = $_SESSION['user_id'];
                $context['is_registered_user'] = '******';
                //IF server allow only authorized user to join
            } else {
                //IF he is authorized user
                if (sr_is_authorized()) {
                    $context['user_id'] = $_SESSION['user_id'];
                    $context['is_registered_user'] = '******';
                    //IF he is non-authorized user
                } else {
                    sr_redirect('/d/room/message/auth/');
                }
            }
            //IF he is anonymous user
        } else {
            //IF server allow anonymous user to join
            if ($sr_join_anonymous) {
                $context['user_id'] = 0;
                $context['is_registered_user'] = '******';
                //IF server not allow anonymous user to join
            } else {
                $_SESSION['next_page'] = 1;
                $_SESSION['room_name'] = $_GET['name'];
                $context['info'] = 'Only registered users can join the room.';
                sr_response('views/main/signin.php', $context);
            }
        }
        $context['user_name'] = $_SESSION['user_name'];
        $context['chat_name'] = $_SESSION['chat_name'];
        if ($_SESSION['chat_name']) {
            $context['chat_name'] = $_SESSION['chat_name'];
        } else {
            if ($_SESSION['user_name']) {
                $context['chat_name'] = $_SESSION['user_name'];
                $_SESSION['chat_name'] = $_SESSION['user_name'];
            } else {
                $context['chat_name'] = $sr_default_chat_name;
                $_SESSION['chat_name'] = $sr_default_chat_name;
            }
        }
        if ($room->is_open == 1) {
            sr_response('views/room/room.php', $context);
            //IF locked room
        } else {
            if (isset($_SESSION['is_checked_password']) && $_SESSION['is_checked_password'] == $_SESSION['room_name']) {
                unset($_SESSION['is_checked_password']);
                unset($_SESSION['room_name']);
                sr_response('views/room/room.php', $context);
            } else {
                $_SESSION['room_name'] = $_GET['name'];
                sr_redirect('/d/room/message/pswd/');
            }
        }
    } else {
        sr_response_error(400);
    }
}