
com.threerings.crowd.server.CrowdObjectAccess Maven / Gradle / Ivy
//
// $Id: CrowdObjectAccess.java 6533 2011-03-15 18:17:09Z mdb $
//
// Narya library - tools for developing networked games
// Copyright (C) 2002-2011 Three Rings Design, Inc., All Rights Reserved
// http://code.google.com/p/narya/
//
// This library is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License as published
// by the Free Software Foundation; either version 2.1 of the License, or
// (at your option) any later version.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
package com.threerings.crowd.server;
import com.threerings.presents.data.ClientObject;
import com.threerings.presents.dobj.AccessController;
import com.threerings.presents.dobj.DEvent;
import com.threerings.presents.dobj.DObject;
import com.threerings.presents.dobj.ProxySubscriber;
import com.threerings.presents.dobj.Subscriber;
import com.threerings.presents.server.PresentsObjectAccess;
import com.threerings.bureau.data.BureauClientObject;
import com.threerings.crowd.data.PlaceObject;
import com.google.inject.Inject;
import com.google.inject.Singleton;
/**
* Defines the various object access controllers used by the Crowd server.
*/
public class CrowdObjectAccess
{
/**
* Provides access control for place objects. The default behavior is to allow place occupants
* to subscribe to the place object and to use the {@link PresentsObjectAccess#DEFAULT}
* modification policy.
*/
@Singleton
public static class PlaceAccessController implements AccessController
{
public boolean allowSubscribe (DObject object, Subscriber> sub)
{
if (sub instanceof ProxySubscriber) {
ClientObject co = ((ProxySubscriber)sub).getClientObject();
return ((PlaceObject)object).occupants.contains(_locator.forClient(co).getOid());
}
return true;
}
public boolean allowDispatch (DObject object, DEvent event)
{
return PresentsObjectAccess.DEFAULT.allowDispatch(object, event);
}
@Inject protected BodyLocator _locator;
};
/**
* Extends the access control in {@link PlaceAccessController} to allow Bureau clients to
* subscribe.
*/
@Singleton
public static class BureauAccessController extends PlaceAccessController
{
@Override
public boolean allowSubscribe (DObject object, Subscriber> sub) {
if (sub instanceof ProxySubscriber) {
ClientObject co = ((ProxySubscriber)sub).getClientObject();
if (co instanceof BureauClientObject) {
return true;
}
}
return super.allowSubscribe(object, sub);
}
@Override
public boolean allowDispatch (DObject object, DEvent event) {
return super.allowDispatch(object, event);
}
};
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy