gpt4 book ai didi

com.xpn.xwiki.user.api.XWikiRightService类的使用及代码示例

转载 作者:知者 更新时间:2024-03-26 05:27:05 26 4
gpt4 key购买 nike

本文整理了Java中com.xpn.xwiki.user.api.XWikiRightService类的一些代码示例,展示了XWikiRightService类的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。XWikiRightService类的具体详情如下:
包路径:com.xpn.xwiki.user.api.XWikiRightService
类名称: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;
  }
}

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com