⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 onlysubscribers.java

📁 基于Jabber协议的即时消息服务器
💻 JAVA
字号:
/** * $RCSfile: $ * $Revision: $ * $Date: $ * * Copyright (C) 2006 Jive Software. All rights reserved. * * This software is published under the terms of the GNU Public License (GPL), * a copy of which is included in this distribution. */package org.jivesoftware.wildfire.pubsub.models;import org.jivesoftware.wildfire.pubsub.Node;import org.jivesoftware.wildfire.pubsub.NodeAffiliate;import org.jivesoftware.wildfire.pubsub.NodeSubscription;import org.xmpp.packet.JID;/** * Subscribers, publishers and owners may publish items to the node. * * @author Matt Tucker */public class OnlySubscribers extends PublisherModel {    public boolean canPublish(Node node, JID entity) {        NodeAffiliate nodeAffiliate = node.getAffiliate(entity);        // Deny access if user does not have any relation with the node or is an outcast        if (nodeAffiliate == null ||                nodeAffiliate.getAffiliation() == NodeAffiliate.Affiliation.outcast) {            return false;        }        // Grant access if user is an owner of publisher        if (nodeAffiliate.getAffiliation() == NodeAffiliate.Affiliation.publisher ||                nodeAffiliate.getAffiliation() == NodeAffiliate.Affiliation.owner) {            return true;        }        // Grant access if at least one subscription of this user was approved        for (NodeSubscription subscription : nodeAffiliate.getSubscriptions()) {            if (subscription.isActive()) {                return true;            }        }        return false;    }    public String getName() {        return "subscribers";    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -