Laravel pusher.js - 计算用户会话

时间:2017-07-23 14:13:55

标签: php laravel session pusher

我已经开始使用Laravel + Pusher并使用了演示应用程序 Pusher blog。这里在source code中描述了如何计算用户连接。但我正在努力将用户的会话计算为附加值。

示例:Jane和John connect我得到2 usersEditing.length 。如果Jane从两个浏览器连接,我得到1 usersEditing.length

<script>
export default {
    props: [
        'note',
    ],

    data() {
        return {
            title: this.note.title,
            body: this.note.body,
            usersEditing: [],
            status: ''
        }
    },

    mounted() {
        Echo.join(`note.${this.note.slug}`)
            .here(users => {
                this.usersEditing = users;
            })
            .joining(user => {
                this.usersEditing.push(user);
            })
            .leaving(user => {
                this.usersEditing = this.usersEditing.filter(u => u != user);
            })
            .listenForWhisper('editing', (e) => {
                this.title = e.title;
                this.body = e.body;
            })
            .listenForWhisper('saved', (e) => {
                this.status = e.status;

                // clear is status after 1s
                setTimeout(() => {
                    this.status = '';
                }, 1000);
            });
    },

    methods: {
        editingNote() {
            let channel = Echo.join(`note.${this.note.slug}`);

            // show changes after 1s
            setTimeout(() => {
                channel.whisper('editing', {
                    title: this.title,
                    body: this.body
                });
            }, 1000);
        },

        updateNote() {
            let note = {
                title: this.title, 
                body:  this.body
            };

            // persist to database
            axios.patch(`/edit/${this.note.slug}`, note)
                .then(response => {
                    // show saved status
                    this.status = response.data;

                    // clear is status after 1s
                    setTimeout(() => {
                        this.status = '';
                    }, 1000);

                    // show saved status to others
                    Echo.join(`note.${this.note.slug}`)
                        .whisper('saved', {
                            status: response.data
                        });
                });
        }
    }
}

我需要一个每个用户的附加值会话。所以我可以按用户和总计显示连接数。

愿有人在这里帮助我。

提前, 戴夫

1 个答案:

答案 0 :(得分:0)

  

Jane和John connect usersEditing.length获得2分。如果Jane从两个浏览器连接,我会usersEditing.length获得1。

这是因为推送者的状态通道基于唯一用户而非连接。如果您希望保持总连接数或会话数,则需要自己实施。

有很多方法可以做到这一点。推送器http api中的/channels endpoint允许您检索subscription_count以及user_count

您可以在服务器上配置一个端点,该端点从pusher api检索此数据,并向包含subscription_count的通道广播更新。如果每次订阅成功时从客户端调用此端点。然后,您可以在每个客户端维护订户数。

var channel = pusher.subscribe('presence-meeting-11');

channel.bind('pusher:subscription_succeeded', function(members) {
  // call your new endpoint
});