io.surati.gap.admin.module.web.pages.TkAccessRightAdd Maven / Gradle / Ivy
/**
MIT License
Copyright (c) 2021 Surati
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
package io.surati.gap.admin.module.web.pages;
import io.surati.gap.admin.module.web.server.RsPage;
import javax.sql.DataSource;
import java.util.Collection;
import java.util.LinkedList;
import io.surati.gap.admin.base.db.DbProfiles;
import io.surati.gap.admin.base.api.Access;
import io.surati.gap.admin.base.api.Profile;
import io.surati.gap.web.base.xe.XeAccesses;
import org.cactoos.iterable.Sticky;
import org.takes.Request;
import org.takes.Response;
import org.takes.Take;
import org.takes.rq.RqHref;
import org.takes.rs.xe.XeAppend;
import org.takes.rs.xe.XeChain;
import org.takes.rs.xe.XeSource;
/**
* Take that adds an access right.
*
* The class is immutable and thread-safe.
*
* @since 0.1
*/
public class TkAccessRightAdd implements Take {
/**
* DataSource
*/
private final DataSource source;
/**
* Ctor.
* @param source DataSource
*/
public TkAccessRightAdd(final DataSource source) {
this.source = source;
}
@Override
public Response act(Request req) throws Exception {
final Long profile_id = Long.parseLong(new RqHref.Smart(req).single("profile"));
final XeSource src;
final Collection accesses = new LinkedList<>();
final Profile profile = new DbProfiles(this.source).get(profile_id);
for (Access access : Access.VALUES) {
if(!profile.accesses().has(access)) {
accesses.add(access);
}
}
src = new XeChain(
new XeAppend("profile_id", profile_id.toString()),
new XeAppend("profile_name", profile.name()),
new XeAccesses(accesses)
);
return new RsPage(
"/io/surati/gap/admin/module/xsl/access_right_profile/add.xsl",
req,
this.source,
() -> new Sticky<>(
new XeAppend("menu", "profile"),
src
)
);
}
}