Package org.jnode.fs.spi

Source Code of org.jnode.fs.spi.UnixFSAccessRights$Rights

/*
* $Id$
*
* Copyright (C) 2003-2014 JNode.org
*
* 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.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
package org.jnode.fs.spi;

import java.security.Principal;
import java.security.acl.Group;

import org.jnode.fs.FSAccessRights;
import org.jnode.fs.FileSystem;

import sun.security.acl.GroupImpl;

import com.sun.security.auth.UserPrincipal;

/**
*
* @author Fabien DUMINY (fduminy at jnode.org)
*
*/
public class UnixFSAccessRights implements FSAccessRights {
    private final FileSystem<?> filesystem;

    private Principal owner;
    private Group group;

    private final Rights ownerRights = new Rights(true, true, true);
    private final Rights groupRights = new Rights();
    private final Rights worldRights = new Rights();

    public UnixFSAccessRights(FileSystem<?> filesystem) {
        if (filesystem == null) {
            throw new NullPointerException("filesystem can't be null");
        }
        this.filesystem = filesystem;

        // TODO manages users & groups in JNode
        owner = new UserPrincipal("root");
        group = new GroupImpl("admins");
        group.addMember(owner);
    }

    private Principal getUser() {
        // TODO manages users & groups in JNode
        // we should find the user from the context
        return owner;
    }

    private Rights getUserRights() {
        Principal user = getUser();

        Rights rights = worldRights;
        if (owner.equals(user)) {
            rights = ownerRights;
        } else if (group.isMember(user)) {
            rights = groupRights;
        }

        return rights;
    }

    public boolean canExecute() {
        return getUserRights().isExecute();
    }

    public boolean canRead() {
        return getUserRights().isRead();
    }

    public boolean canWrite() {
        return getUserRights().isWrite();
    }

    public Principal getOwner() {
        return owner;
    }

    public boolean setExecutable(boolean enable, boolean owneronly) {
        if (!owner.equals(getUser())) {
            return false;
        }

        ownerRights.setExecute(enable);
        if (!owneronly) {
            groupRights.setExecute(enable);
            worldRights.setExecute(enable);
        }
        return true;
    }

    public boolean setReadable(boolean enable, boolean owneronly) {
        if (!owner.equals(getUser())) {
            return false;
        }

        ownerRights.setRead(enable);
        if (!owneronly) {
            groupRights.setRead(enable);
            worldRights.setRead(enable);
        }
        return true;
    }

    public boolean setWritable(boolean enable, boolean owneronly) {
        if (!owner.equals(getUser())) {
            return false;
        }

        ownerRights.setWrite(enable);
        if (!owneronly) {
            groupRights.setWrite(enable);
            worldRights.setWrite(enable);
        }
        return true;
    }

    public FileSystem<?> getFileSystem() {
        return filesystem;
    }

    public boolean isValid() {
        return true;
    }

    private static class Rights {
        private boolean read = false;
        private boolean write = false;
        private boolean execute = false;

        public Rights() {
            this(false, false, false);
        }

        public Rights(boolean read, boolean write, boolean execute) {
            this.read = read;
            this.write = write;
            this.execute = execute;
        }

        public boolean isRead() {
            return read;
        }

        public void setRead(boolean read) {
            this.read = read;
        }

        public boolean isWrite() {
            return write;
        }

        public void setWrite(boolean write) {
            this.write = write;
        }

        public boolean isExecute() {
            return execute;
        }

        public void setExecute(boolean execute) {
            this.execute = execute;
        }
    }
}
TOP

Related Classes of org.jnode.fs.spi.UnixFSAccessRights$Rights

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.