- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中com.xpn.xwiki.user.api.XWikiRightService
类的一些代码示例,展示了XWikiRightService
类的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。XWikiRightService
类的具体详情如下:
包路径:com.xpn.xwiki.user.api.XWikiRightService
类名称:XWikiRightService
暂无
代码示例来源:origin: com.xpn.xwiki.platform/xwiki-core
/**
* Check if the current document has programming rights, meaning that it was last saved by a user with the
* programming right globally granted.
*
* @return <tt>true</tt> if the current document has the Programming right or <tt>false</tt> otherwise.
*/
public boolean hasProgrammingRights()
{
com.xpn.xwiki.XWiki xwiki = this.context.getWiki();
return xwiki.getRightService().hasProgrammingRights(this.context);
}
代码示例来源:origin: com.xpn.xwiki.platform/xwiki-core
/**
* API to check rights on a document for a given user
*
* @param level right to check (view, edit, comment, delete)
* @param user user for which to check the right
* @param docname document on which to check the rights
* @return true if right is granted/false if not
*/
public boolean hasAccessLevel(String level, String user, String docname)
{
try {
return this.xwiki.getRightService().hasAccessLevel(level, user, docname, getXWikiContext());
} catch (Exception e) {
return false;
}
}
代码示例来源:origin: com.xpn.xwiki.platform/xwiki-core
/**
* Check if the current user has administration rights on the current wiki.
*
* @return <code>true</code> if the current user has the <code>admin</code> right or <code>false</code> otherwise.
*/
public boolean hasAdminRights()
{
com.xpn.xwiki.XWiki xwiki = this.context.getWiki();
return xwiki.getRightService().hasAdminRights(this.context);
}
代码示例来源:origin: com.xpn.xwiki.platform/xwiki-core
public boolean checkAccess(String action, XWikiDocument doc, XWikiContext context) throws XWikiException
{
if (action.equals("skin") && (doc.getSpace().equals("skins") || doc.getSpace().equals("resources"))) {
// We still need to call checkAuth to set the proper user.
XWikiUser user = checkAuth(context);
if (user != null) {
context.setUser(user.getUser());
}
return true;
}
return getRightService().checkAccess(action, doc, context);
}
代码示例来源:origin: com.xpn.xwiki.platform/xwiki-core
@Override
public List<String> getList(XWikiContext context)
{
List<String> list;
try {
list = context.getWiki().getRightService().listAllLevels(context);
} catch (XWikiException e) {
// TODO add log exception
list = new ArrayList<String>();
}
XWikiRequest req = context.getRequest();
if (("editrights".equals(req.get("xpage")) || "rights".equals(req.get("editor")))
&& (!"1".equals(req.get("global")))) {
list.remove("admin");
list.remove("programming");
list.remove("delete");
list.remove("register");
}
return list;
}
代码示例来源:origin: com.xpn.xwiki.platform/xwiki-core
try {
XWikiDocument doc = context.getWiki().getDocument((String) obj[1], context);
if (context.getWiki().getRightService().checkAccess("view", doc, context)) {
BaseObject bObj = doc.getObject("XWiki.FeedEntryClass", ((Integer) obj[0]).intValue());
com.xpn.xwiki.api.Object apiObj = new com.xpn.xwiki.api.Object(bObj, context);
代码示例来源:origin: org.xwiki.platform/xwiki-platform-gwt-api
private List searchDocuments(String sql, int nb, int start, XWikiContext context) throws XWikiGWTException
{
List newlist = new ArrayList();
try {
List list = context.getWiki().getStore().searchDocumentsNames(sql, nb, start, context);
if (list == null || list.isEmpty()) {
return newlist;
}
for (int i = 0; i < list.size(); i++) {
if (context.getWiki().getRightService()
.hasAccessLevel("view", context.getUser(), (String) list.get(i), context) == true)
newlist.add(list.get(i));
}
return newlist;
} catch (Exception e) {
throw getXWikiGWTException(e);
}
}
代码示例来源:origin: com.xpn.xwiki.platform/xwiki-rest-server
@GET
public SearchResults search(@PathParam("wikiName") String wikiName, @PathParam("spaceName") String spaceName,
@QueryParam("q") String keywords, @QueryParam("scope") List<String> searchScopeStrings,
@QueryParam("number") @DefaultValue("-1") Integer number) throws QueryException, XWikiException
{
SearchResults searchResults = objectFactory.createSearchResults();
searchResults.setTemplate(String.format("%s?%s",
UriBuilder.fromUri(uriInfo.getBaseUri()).path(SpaceSearchResource.class).build(wikiName, spaceName)
.toString(), SEARCH_TEMPLATE_INFO));
List<SearchScope> searchScopes = parseSearchScopeStrings(searchScopeStrings);
searchResults.getSearchResults().addAll(
search(searchScopes, keywords, wikiName, spaceName, Utils.getXWiki(componentManager).getRightService()
.hasProgrammingRights(Utils.getXWikiContext(componentManager)), number));
return searchResults;
}
}
代码示例来源:origin: com.xpn.xwiki.platform/xwiki-core
/**
* Indicate of the user has amin rights on the farm, i.e. that he has admin rights on the main wiki.
*
* @param context the XWiki context
* @return true if the current user is farm admin
*/
private boolean isFarmAdmin(XWikiContext context)
{
String wiki = context.getDatabase();
try {
context.setDatabase(context.getMainXWiki());
return context.getWiki().getRightService().hasAdminRights(context);
} finally {
context.setDatabase(wiki);
}
}
代码示例来源:origin: com.xpn.xwiki.platform/xwiki-core
doc.setFullName(getFullName(), this.context);
if (!hasAdminRights()
&& !getXWikiContext().getWiki().getRightService().checkAccess("delete", doc, this.context)) {
return false;
代码示例来源:origin: com.xpn.xwiki.platform/xwiki-core
/**
* Check if the current user has an access level on a given document.
*
* @param right The name of the right to verify (eg "programming", "admin", "register", etc).
* @param docname The document for which to verify the right.
* @return <tt>true</tt> if the current user has the specified right, <tt>false</tt> otherwise.
* @exception XWikiException In case of an error finding the document or accessing groups information.
*/
public boolean hasAccessLevel(String right, String docname) throws XWikiException
{
com.xpn.xwiki.XWiki xwiki = this.context.getWiki();
return xwiki.getRightService().hasAccessLevel(right, this.context.getUser(), docname, this.context);
}
代码示例来源:origin: com.xpn.xwiki.platform/xwiki-core
/**
* {@inheritDoc}
*
* @see org.xwiki.bridge.DocumentAccessBridge#hasProgrammingRights()
*/
public boolean hasProgrammingRights()
{
XWikiContext xcontext = getContext();
return xcontext.getWiki().getRightService().hasProgrammingRights(xcontext);
}
代码示例来源:origin: org.xwiki.platform/xwiki-platform-gwt-api
protected User newUser(User user, XWikiDocument xdoc, XWikiContext context) throws XWikiGWTException
{
newDocument(user, xdoc, context);
user.setFirstName(xdoc.getStringValue("XWiki.XWikiUsers", "first_name"));
user.setLastName(xdoc.getStringValue("XWiki.XWikiUsers", "last_name"));
user.setEmail(xdoc.getStringValue("XWiki.XWikiUsers", "email"));
XWiki xwiki = context.getWiki();
user.setAdmin(xwiki.getRightService().hasAdminRights(context));
return user;
}
代码示例来源:origin: com.xpn.xwiki.platform/xwiki-core
doc.setFullName(getDocName(), this.context);
if (!hasAdminRights()
&& !getXWikiContext().getWiki().getRightService().checkAccess("delete", doc, this.context)) {
return false;
代码示例来源:origin: org.xwiki.platform/xwiki-platform-gwt-api
@Override
public Boolean hasAccessLevel(String level, String docName) throws XWikiGWTException
{
XWikiContext context = getXWikiContext();
try {
return Boolean.valueOf(context.getWiki().getRightService()
.hasAccessLevel(level, context.getUser(), docName, context));
} catch (XWikiException e) {
throw getXWikiGWTException(e);
}
}
代码示例来源:origin: com.xpn.xwiki.platform/xwiki-rest-server
@GET
public SearchResults search(@PathParam("wikiName") String wikiName, @QueryParam("q") String keywords,
@QueryParam("scope") List<String> searchScopeStrings, @QueryParam("number") @DefaultValue("-1") Integer number)
throws QueryException, XWikiException
{
SearchResults searchResults = objectFactory.createSearchResults();
searchResults.setTemplate(String.format("%s?%s",
UriBuilder.fromUri(uriInfo.getBaseUri()).path(WikiSearchResource.class).build(wikiName).toString(),
SEARCH_TEMPLATE_INFO));
Utils.getXWikiContext(componentManager).setDatabase(wikiName);
List<SearchScope> searchScopes = parseSearchScopeStrings(searchScopeStrings);
searchResults.getSearchResults().addAll(
search(searchScopes, keywords, wikiName, null, Utils.getXWiki(componentManager).getRightService()
.hasProgrammingRights(Utils.getXWikiContext(componentManager)), number));
return searchResults;
}
}
代码示例来源:origin: com.avane.xwiki.products/xwiki-plugin-chronopolys
public boolean isAdmin(XWikiContext context) throws XWikiException
{
return context.getWiki().getUser(context.getLocalUser(), context)
.isUserInGroup("ChronoAdmin.AdminGroup") ||
context.getWiki().getUser(context.getLocalUser(), context)
.isUserInGroup(context.getDatabase() + ":ChronoAdmin.AdminGroup") ||
context.getWiki().getRightService().hasAdminRights(context);
}
代码示例来源:origin: com.xpn.xwiki.platform/xwiki-core
XWikiDocument doc = new XWikiDocument(new DocumentReference(context.getDatabase(), (String) result[0], (String) result[1]));
if (checkRight) {
if (context.getWiki().getRightService().checkAccess("view", doc, context) == false) {
continue;
代码示例来源:origin: org.xwiki.platform/xwiki-platform-gwt-api
@Override
public Boolean hasAccessLevel(String level, String username, String docName) throws XWikiGWTException
{
try {
return Boolean.valueOf(getXWikiContext().getWiki().getRightService()
.hasAccessLevel(level, username, docName, getXWikiContext()));
} catch (XWikiException e) {
throw getXWikiGWTException(e);
}
}
}
代码示例来源:origin: com.xpn.xwiki.platform/xwiki-core
public XWikiAuthService getAuthService(XWikiContext context)
{
String authservicepage = getParam("groovy_pagename", context);
if ((authservicepage == null) || authservicepage.trim().equals("")) {
if (log.isErrorEnabled())
log.error("No page specified for auth service implementation");
return null;
}
try {
XWikiDocument doc = context.getWiki().getDocument(authservicepage, context);
if (context.getWiki().getRightService().hasProgrammingRights(doc, context))
return (XWikiAuthService) context.getWiki().parseGroovyFromString(doc.getContent(), context);
else {
if (log.isErrorEnabled())
log.error("Auth service implementation page " + authservicepage
+ " missing programming rights, requires ownership by authorized user.");
return null;
}
} catch (XWikiException e) {
if (log.isErrorEnabled())
log.error("Exception while parsing groovy authentication service code", e);
return null;
}
}
本文整理了Java中com.xpn.xwiki.api.XWiki类的一些代码示例,展示了XWiki类的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从
本文整理了Java中com.xpn.xwiki.web.XWikiURLFactoryService类的一些代码示例,展示了XWikiURLFactoryService类的具体用法。这些代码示例主要来
本文整理了Java中com.xpn.xwiki.plugin.XWikiDefaultPlugin类的一些代码示例,展示了XWikiDefaultPlugin类的具体用法。这些代码示例主要来源于Git
本文整理了Java中com.xpn.xwiki.user.api.XWikiRightService类的一些代码示例,展示了XWikiRightService类的具体用法。这些代码示例主要来源于Git
本文整理了Java中com.xpn.xwiki.user.api.XWikiUser类的一些代码示例,展示了XWikiUser类的具体用法。这些代码示例主要来源于Github/Stackoverflo
本文整理了Java中com.xpn.xwiki.user.api.XWikiGroupService类的一些代码示例,展示了XWikiGroupService类的具体用法。这些代码示例主要来源于Git
本文整理了Java中com.xpn.xwiki.user.api.XWikiAuthService类的一些代码示例,展示了XWikiAuthService类的具体用法。这些代码示例主要来源于Githu
本文整理了Java中com.xpn.xwiki.plugin.zipexplorer.ZipExplorerPluginAPI类的一些代码示例,展示了ZipExplorerPluginAPI类的具体用
本文整理了Java中com.xpn.xwiki.plugin.zipexplorer.ZipExplorerPlugin类的一些代码示例,展示了ZipExplorerPlugin类的具体用法。这些代码
本文整理了Java中com.xpn.xwiki.api.XWiki.getClass()方法的一些代码示例,展示了XWiki.getClass()的具体用法。这些代码示例主要来源于Github/Sta
本文整理了Java中com.xpn.xwiki.api.XWiki.exists()方法的一些代码示例,展示了XWiki.exists()的具体用法。这些代码示例主要来源于Github/Stackov
本文整理了Java中com.xpn.xwiki.api.XWiki.getClassList()方法的一些代码示例,展示了XWiki.getClassList()的具体用法。这些代码示例主要来源于Gi
本文整理了Java中com.xpn.xwiki.api.XWiki.getDocument()方法的一些代码示例,展示了XWiki.getDocument()的具体用法。这些代码示例主要来源于Gith
本文整理了Java中com.xpn.xwiki.api.XWiki.hasAdminRights()方法的一些代码示例,展示了XWiki.hasAdminRights()的具体用法。这些代码示例主要来
本文整理了Java中com.xpn.xwiki.api.XWiki.()方法的一些代码示例,展示了XWiki.()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven
本文整理了Java中com.xpn.xwiki.api.XWiki.hasAccessLevel()方法的一些代码示例,展示了XWiki.hasAccessLevel()的具体用法。这些代码示例主要来
本文整理了Java中com.xpn.xwiki.web.XWikiURLFactoryService.createURLFactory()方法的一些代码示例,展示了XWikiURLFactorySer
本文整理了Java中com.xpn.xwiki.plugin.XWikiDefaultPlugin.virtualInit()方法的一些代码示例,展示了XWikiDefaultPlugin.virtu
本文整理了Java中com.xpn.xwiki.plugin.XWikiDefaultPlugin.init()方法的一些代码示例,展示了XWikiDefaultPlugin.init()的具体用法。
本文整理了Java中com.xpn.xwiki.user.api.XWikiRightService.hasAdminRights()方法的一些代码示例,展示了XWikiRightService.ha
我是一名优秀的程序员,十分优秀!