onlysubscribers.java

来自「基于Jabber协议的即时消息服务器」· Java 代码 · 共 51 行

JAVA
51
字号
/** * $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 + =
减小字号Ctrl + -
显示快捷键?