mraible commented on code in PR #164:
URL: https://github.com/apache/roller/pull/164#discussion_r3891399214
##########
app/src/main/java/org/apache/roller/weblogger/webservices/xmlrpc/BaseAPIHandler.java:
##########
@@ -102,97 +105,112 @@ public BaseAPIHandler() {
//------------------------------------------------------------------------
/**
- * Returns website, but only if user authenticates and is authorized to
edit.
- * @param blogid Blogid sent in request (used as website's handle)
- * @param username Username sent in request
- * @param password Password sent in request
+ * Returns a weblog only when the authenticated user has the requested
+ * permission and XML-RPC access is enabled for that weblog.
*/
- protected Weblog validate(String blogid, String username, String password)
- throws Exception {
- boolean authenticated = false;
- boolean userEnabled = false;
- boolean weblogEnabled = false;
- boolean apiEnabled = false;
- boolean weblogFound = false;
- Weblog website = null;
- try {
- UserManager userMgr =
WebloggerFactory.getWeblogger().getUserManager();
- WeblogManager weblogMgr =
WebloggerFactory.getWeblogger().getWeblogManager();
- User user = userMgr.getUserByUserName(username);
-
- website = weblogMgr.getWeblogByHandle(blogid);
- if (website != null) {
- weblogFound = true;
- weblogEnabled = website.getVisible();
- apiEnabled = website.getEnableBloggerApi()
- &&
WebloggerRuntimeConfig.getBooleanProperty("webservices.enableXmlRpc");
- }
-
- if (user != null) {
- userEnabled = user.getEnabled();
- authenticated =
RollerContext.getPasswordEncoder().matches(password, user.getPassword());
- }
- } catch (Exception e) {
- mLogger.error("ERROR internal error validating user", e);
- }
-
- if ( !authenticated ) {
- throw new
XmlRpcNotAuthorizedException(AUTHORIZATION_EXCEPTION_MSG);
- }
- if ( !userEnabled ) {
- throw new XmlRpcNotAuthorizedException(USER_DISABLED_MSG);
- }
- if ( !weblogEnabled ) {
+ protected Weblog validate(String blogid, String username, String password,
+ String requiredAction) throws Exception {
+ User user = validateUser(username, password);
+ return validateWeblog(blogid, user, requiredAction);
+ }
+
+ /**
+ * Validate a weblog for an already authenticated user.
+ */
+ protected Weblog validateWeblog(String blogid, User user,
+ String requiredAction) throws Exception {
+ WeblogManager weblogMgr =
WebloggerFactory.getWeblogger().getWeblogManager();
+ Weblog website = weblogMgr.getWeblogByHandle(blogid);
+
+ // Use one response for missing, unavailable, and inaccessible weblogs.
+ if (!isWeblogAvailable(website)
+ || !website.hasUserPermission(user, requiredAction)) {
throw new XmlRpcNotAuthorizedException(WEBLOG_DISABLED_MSG);
}
- if ( !weblogFound ) {
- throw new XmlRpcException(WEBLOG_NOT_FOUND, WEBLOG_NOT_FOUND_MSG);
- }
- if ( !apiEnabled ) {
+ if (!Boolean.TRUE.equals(website.getEnableBloggerApi())) {
throw new XmlRpcNotAuthorizedException(BLOGGERAPI_DISABLED_MSG);
}
return website;
}
//------------------------------------------------------------------------
/**
- * Returns true if username/password are valid and user is not disabled.
+ * Returns the authenticated user if username/password are valid and the
+ * user is not disabled.
* @param username Username sent in request
* @param password Password sent in request
*/
- protected boolean validateUser(String username, String password)
- throws Exception {
+ protected User validateUser(String username, String password)
+ throws Exception {
+ User user = null;
boolean authenticated = false;
- boolean enabled = false;
- boolean apiEnabled = false;
try {
-
UserManager userMgr =
WebloggerFactory.getWeblogger().getUserManager();
- User user = userMgr.getUserByUserName(username);
-
- if (user != null) {
- enabled = user.getEnabled();
- authenticated =
RollerContext.getPasswordEncoder().matches(password, user.getPassword());
-
- apiEnabled =
WebloggerRuntimeConfig.getBooleanProperty("webservices.enableXmlRpc");
+ user = userMgr.getUserByUserName(username);
+ if (user != null && RollerContext.getPasswordEncoder() != null) {
+ authenticated = RollerContext.getPasswordEncoder().matches(
+ password, user.getPassword());
}
} catch (Exception e) {
mLogger.error("ERROR internal error validating user", e);
}
-
- if ( !authenticated ) {
+
+ if (!authenticated) {
throw new
XmlRpcNotAuthorizedException(AUTHORIZATION_EXCEPTION_MSG);
}
-
- if ( !enabled ) {
+
+ if (!Boolean.TRUE.equals(user.getEnabled())) {
throw new XmlRpcNotAuthorizedException(USER_DISABLED_MSG);
}
-
- if ( !apiEnabled ) {
+
+ if
(!WebloggerRuntimeConfig.getBooleanProperty("webservices.enableXmlRpc")) {
throw new XmlRpcNotAuthorizedException(BLOGGERAPI_DISABLED_MSG);
- }
-
- return authenticated;
+ }
+
+ return user;
+ }
+
+ /**
+ * Returns an entry only when it belongs to an available XML-RPC weblog and
+ * the user may edit it. An optional additional weblog action can be
+ * required for transitions such as publishing.
+ */
+ protected WeblogEntry validateEntry(String postid, User user,
+ String additionalAction) throws Exception {
+ WeblogEntry entry = getEntryForWrite(postid, user, additionalAction);
+ if (entry == null) {
+ throw new XmlRpcException(INVALID_POSTID, INVALID_POSTID_MSG);
+ }
+ return entry;
+ }
+
+ /**
+ * Nullable form used by Blogger.deletePost(), whose public contract
+ * returns false when the entry is unavailable.
+ */
+ protected WeblogEntry getEntryForWrite(String postid, User user,
+ String additionalAction) throws Exception {
+ WeblogEntryManager entryMgr = WebloggerFactory.getWeblogger()
+ .getWeblogEntryManager();
+ WeblogEntry entry = entryMgr.getWeblogEntry(postid);
+ if (entry == null || !isWeblogAvailable(entry.getWebsite())
+ ||
!Boolean.TRUE.equals(entry.getWebsite().getEnableBloggerApi())
+ || !entry.getWebsite().hasUserPermission(
+ user, WeblogPermission.EDIT_DRAFT)
+ || !entry.hasWritePermissions(user)) {
+ return null;
+ }
+ if (additionalAction != null
+ && !entry.getWebsite().hasUserPermission(user,
additionalAction)) {
+ return null;
+ }
+ return entry;
+ }
+
+ private boolean isWeblogAvailable(Weblog website) {
+ return website != null
+ && Boolean.TRUE.equals(website.getVisible())
+ && Boolean.TRUE.equals(website.getActive());
Review Comment:
Weblog.active isn't a disabled flag: per its javadoc (and ROL-485) it's the
user-settable "include in front page / planet listings" toggle, and the web UI
never blocks editing an inactive weblog. Gating here means an owner who unticks
Active in Weblog Settings to hide the blog from the front page loses every
XML-RPC call for it (newPost, editPost, getRecentPosts, and via
getEntryForWrite even deletePost by id) with "not found or disabled". The
pre-PR check was visible only, which is the flag that means what this code
wants.
##########
app/src/main/java/org/apache/roller/weblogger/webservices/xmlrpc/BloggerAPIHandler.java:
##########
@@ -463,21 +468,35 @@ public Object getRecentPosts(String appkey, String
blogid, String userid,
mLogger.debug(" UserId: " + userid);
mLogger.debug(" Number: " + numposts);
- Weblog weblog = validate(blogid, userid,password);
+ User user = validateUser(userid, password);
+ Weblog weblog = validateWeblog(blogid, user,
+ WeblogPermission.EDIT_DRAFT);
try {
Vector<Object> results = new Vector<>();
+ if (numposts <= 0) {
Review Comment:
Intended? The old Blogger getRecentPosts ignored numposts and returned
everything; this returns an empty list for numposts <= 0 and truncates
otherwise. Honoring numposts is arguably the correct behavior, but it's a
silent contract change for Blogger 1.0 clients and export scripts that relied
on the old one, so it deserves a line in the description at least. Returning
everything for numposts <= 0 (rather than nothing) would keep the old tooling
working.
##########
app/src/main/java/org/apache/roller/weblogger/webservices/xmlrpc/BaseAPIHandler.java:
##########
@@ -102,97 +105,112 @@ public BaseAPIHandler() {
//------------------------------------------------------------------------
/**
- * Returns website, but only if user authenticates and is authorized to
edit.
- * @param blogid Blogid sent in request (used as website's handle)
- * @param username Username sent in request
- * @param password Password sent in request
+ * Returns a weblog only when the authenticated user has the requested
+ * permission and XML-RPC access is enabled for that weblog.
*/
- protected Weblog validate(String blogid, String username, String password)
- throws Exception {
- boolean authenticated = false;
- boolean userEnabled = false;
- boolean weblogEnabled = false;
- boolean apiEnabled = false;
- boolean weblogFound = false;
- Weblog website = null;
- try {
- UserManager userMgr =
WebloggerFactory.getWeblogger().getUserManager();
- WeblogManager weblogMgr =
WebloggerFactory.getWeblogger().getWeblogManager();
- User user = userMgr.getUserByUserName(username);
-
- website = weblogMgr.getWeblogByHandle(blogid);
- if (website != null) {
- weblogFound = true;
- weblogEnabled = website.getVisible();
- apiEnabled = website.getEnableBloggerApi()
- &&
WebloggerRuntimeConfig.getBooleanProperty("webservices.enableXmlRpc");
- }
-
- if (user != null) {
- userEnabled = user.getEnabled();
- authenticated =
RollerContext.getPasswordEncoder().matches(password, user.getPassword());
- }
- } catch (Exception e) {
- mLogger.error("ERROR internal error validating user", e);
- }
-
- if ( !authenticated ) {
- throw new
XmlRpcNotAuthorizedException(AUTHORIZATION_EXCEPTION_MSG);
- }
- if ( !userEnabled ) {
- throw new XmlRpcNotAuthorizedException(USER_DISABLED_MSG);
- }
- if ( !weblogEnabled ) {
+ protected Weblog validate(String blogid, String username, String password,
+ String requiredAction) throws Exception {
+ User user = validateUser(username, password);
+ return validateWeblog(blogid, user, requiredAction);
+ }
+
+ /**
+ * Validate a weblog for an already authenticated user.
+ */
+ protected Weblog validateWeblog(String blogid, User user,
+ String requiredAction) throws Exception {
+ WeblogManager weblogMgr =
WebloggerFactory.getWeblogger().getWeblogManager();
+ Weblog website = weblogMgr.getWeblogByHandle(blogid);
Review Comment:
The deleted validate() wrapped the user and weblog lookups in a try/catch
that logged and converted backend failures into an authorization fault. Here
getWeblogByHandle runs outside any try, so a WebloggerException (transient DB
trouble, say) escapes as a raw exception and the XML-RPC servlet returns a
generic server fault carrying the internal message. Easy to trigger in tests
with a hyphenated blogid. Worth restoring the wrap.
##########
app/src/main/java/org/apache/roller/weblogger/webservices/xmlrpc/MetaWeblogAPIHandler.java:
##########
@@ -330,14 +333,8 @@ public Object getPost(String postid, String userid, String
password)
mLogger.debug(" PostId: " + postid);
mLogger.debug(" UserId: " + userid);
- Weblogger roller = WebloggerFactory.getWeblogger();
- WeblogEntryManager weblogMgr = roller.getWeblogEntryManager();
- WeblogEntry entry = weblogMgr.getWeblogEntry(postid);
-
- if (entry == null) {
- throw new XmlRpcException(INVALID_POSTID, INVALID_POSTID_MSG);
- }
- validate(entry.getWebsite().getHandle(), userid, password);
+ User user = validateUser(userid, password);
+ WeblogEntry entry = validateEntry(postid, user, null);
Review Comment:
Intended? getPost used to require only weblog membership;
validateEntry(postid, user, null) now requires entry.hasWritePermissions(user),
which is false for EDIT_DRAFT members on published entries. So a limited member
can no longer read, via the API, a published entry that the site serves
publicly, and their client reports the post as missing. The new test at
XMLRPCWeblogPermissionTest.java:282 locks this in, so if it's not deliberate
it's worth catching before it becomes the contract.
##########
app/src/main/java/org/apache/roller/weblogger/webservices/xmlrpc/MetaWeblogAPIHandler.java:
##########
@@ -82,7 +83,8 @@ public Object getCategories(String blogid, String userid,
String password)
mLogger.debug(" BlogId: " + blogid);
Review Comment:
Consistency note rather than a defect: XML-RPC now grants EDIT_DRAFT members
read access (getCategories, getRecentPosts, getPost) while
RollerAtomHandler.canView/canEdit requires POST on the same weblog. Whichever
is right, the two remote APIs probably want the same answer, and the Atom one
is the older reference.
##########
app/src/main/java/org/apache/roller/weblogger/webservices/xmlrpc/BaseAPIHandler.java:
##########
@@ -102,97 +105,112 @@ public BaseAPIHandler() {
//------------------------------------------------------------------------
/**
- * Returns website, but only if user authenticates and is authorized to
edit.
- * @param blogid Blogid sent in request (used as website's handle)
- * @param username Username sent in request
- * @param password Password sent in request
+ * Returns a weblog only when the authenticated user has the requested
+ * permission and XML-RPC access is enabled for that weblog.
*/
- protected Weblog validate(String blogid, String username, String password)
- throws Exception {
- boolean authenticated = false;
- boolean userEnabled = false;
- boolean weblogEnabled = false;
- boolean apiEnabled = false;
- boolean weblogFound = false;
- Weblog website = null;
- try {
- UserManager userMgr =
WebloggerFactory.getWeblogger().getUserManager();
- WeblogManager weblogMgr =
WebloggerFactory.getWeblogger().getWeblogManager();
- User user = userMgr.getUserByUserName(username);
-
- website = weblogMgr.getWeblogByHandle(blogid);
- if (website != null) {
- weblogFound = true;
- weblogEnabled = website.getVisible();
- apiEnabled = website.getEnableBloggerApi()
- &&
WebloggerRuntimeConfig.getBooleanProperty("webservices.enableXmlRpc");
- }
-
- if (user != null) {
- userEnabled = user.getEnabled();
- authenticated =
RollerContext.getPasswordEncoder().matches(password, user.getPassword());
- }
- } catch (Exception e) {
- mLogger.error("ERROR internal error validating user", e);
- }
-
- if ( !authenticated ) {
- throw new
XmlRpcNotAuthorizedException(AUTHORIZATION_EXCEPTION_MSG);
- }
- if ( !userEnabled ) {
- throw new XmlRpcNotAuthorizedException(USER_DISABLED_MSG);
- }
- if ( !weblogEnabled ) {
+ protected Weblog validate(String blogid, String username, String password,
+ String requiredAction) throws Exception {
+ User user = validateUser(username, password);
+ return validateWeblog(blogid, user, requiredAction);
+ }
+
+ /**
+ * Validate a weblog for an already authenticated user.
+ */
+ protected Weblog validateWeblog(String blogid, User user,
+ String requiredAction) throws Exception {
+ WeblogManager weblogMgr =
WebloggerFactory.getWeblogger().getWeblogManager();
+ Weblog website = weblogMgr.getWeblogByHandle(blogid);
+
+ // Use one response for missing, unavailable, and inaccessible weblogs.
+ if (!isWeblogAvailable(website)
+ || !website.hasUserPermission(user, requiredAction)) {
throw new XmlRpcNotAuthorizedException(WEBLOG_DISABLED_MSG);
}
- if ( !weblogFound ) {
- throw new XmlRpcException(WEBLOG_NOT_FOUND, WEBLOG_NOT_FOUND_MSG);
- }
- if ( !apiEnabled ) {
+ if (!Boolean.TRUE.equals(website.getEnableBloggerApi())) {
throw new XmlRpcNotAuthorizedException(BLOGGERAPI_DISABLED_MSG);
}
return website;
}
//------------------------------------------------------------------------
/**
- * Returns true if username/password are valid and user is not disabled.
+ * Returns the authenticated user if username/password are valid and the
+ * user is not disabled.
* @param username Username sent in request
* @param password Password sent in request
*/
- protected boolean validateUser(String username, String password)
- throws Exception {
+ protected User validateUser(String username, String password)
+ throws Exception {
+ User user = null;
boolean authenticated = false;
- boolean enabled = false;
- boolean apiEnabled = false;
try {
-
UserManager userMgr =
WebloggerFactory.getWeblogger().getUserManager();
- User user = userMgr.getUserByUserName(username);
-
- if (user != null) {
- enabled = user.getEnabled();
- authenticated =
RollerContext.getPasswordEncoder().matches(password, user.getPassword());
-
- apiEnabled =
WebloggerRuntimeConfig.getBooleanProperty("webservices.enableXmlRpc");
+ user = userMgr.getUserByUserName(username);
+ if (user != null && RollerContext.getPasswordEncoder() != null) {
+ authenticated = RollerContext.getPasswordEncoder().matches(
+ password, user.getPassword());
}
} catch (Exception e) {
mLogger.error("ERROR internal error validating user", e);
}
-
- if ( !authenticated ) {
+
+ if (!authenticated) {
throw new
XmlRpcNotAuthorizedException(AUTHORIZATION_EXCEPTION_MSG);
}
-
- if ( !enabled ) {
+
+ if (!Boolean.TRUE.equals(user.getEnabled())) {
throw new XmlRpcNotAuthorizedException(USER_DISABLED_MSG);
}
-
- if ( !apiEnabled ) {
+
+ if
(!WebloggerRuntimeConfig.getBooleanProperty("webservices.enableXmlRpc")) {
throw new XmlRpcNotAuthorizedException(BLOGGERAPI_DISABLED_MSG);
- }
-
- return authenticated;
+ }
+
+ return user;
+ }
+
+ /**
+ * Returns an entry only when it belongs to an available XML-RPC weblog and
+ * the user may edit it. An optional additional weblog action can be
+ * required for transitions such as publishing.
+ */
+ protected WeblogEntry validateEntry(String postid, User user,
+ String additionalAction) throws Exception {
+ WeblogEntry entry = getEntryForWrite(postid, user, additionalAction);
+ if (entry == null) {
+ throw new XmlRpcException(INVALID_POSTID, INVALID_POSTID_MSG);
Review Comment:
I read the description's "foreign and unknown identifiers produce the same
fault" as deliberate anti-enumeration, which makes sense for entries the caller
can't see. This also covers the case where the caller can see and edit the
entry and only lacks POST: a limited member who just saved a draft with
publish=false retries with publish=true and gets INVALID_POSTID for the id that
worked seconds ago. Clients that treat that fault as "deleted on the server"
will drop or re-create the post. For an entry the caller already has access to,
a not-authorized fault leaks nothing and is far kinder.
##########
app/src/main/java/org/apache/roller/weblogger/webservices/xmlrpc/BloggerAPIHandler.java:
##########
@@ -463,21 +468,35 @@ public Object getRecentPosts(String appkey, String
blogid, String userid,
mLogger.debug(" UserId: " + userid);
mLogger.debug(" Number: " + numposts);
- Weblog weblog = validate(blogid, userid,password);
+ User user = validateUser(userid, password);
+ Weblog weblog = validateWeblog(blogid, user,
+ WeblogPermission.EDIT_DRAFT);
try {
Vector<Object> results = new Vector<>();
+ if (numposts <= 0) {
+ return results;
+ }
Weblogger roller = WebloggerFactory.getWeblogger();
WeblogEntryManager weblogMgr = roller.getWeblogEntryManager();
if (weblog != null) {
WeblogEntrySearchCriteria wesc = new
WeblogEntrySearchCriteria();
wesc.setWeblog(weblog);
wesc.setEndDate(new Date());
+ if (weblog.hasUserPermission(user, WeblogPermission.POST)) {
+ wesc.setMaxResults(numposts);
+ } else {
+ wesc.setMaxResults(Math.max(numposts, DRAFT_SCAN_CAP));
Review Comment:
Math.max(numposts, DRAFT_SCAN_CAP) makes the cap a floor, not a ceiling:
numposts=1000000 scans a million rows, and for a normal numposts a limited
member only ever sees drafts that fall within the 200 most recent entries. With
more than 200 published entries newer than their draft, getRecentPosts returns
an empty list even though getPost on the draft's id succeeds. Same shape at
MetaWeblogAPIHandler.java:445. Math.min is what the javadoc describes, and the
drafts case probably needs a status-aware query rather than a scan of
everything.
##########
app/src/main/java/org/apache/roller/weblogger/webservices/xmlrpc/BaseAPIHandler.java:
##########
@@ -102,97 +105,112 @@ public BaseAPIHandler() {
//------------------------------------------------------------------------
/**
- * Returns website, but only if user authenticates and is authorized to
edit.
- * @param blogid Blogid sent in request (used as website's handle)
- * @param username Username sent in request
- * @param password Password sent in request
+ * Returns a weblog only when the authenticated user has the requested
+ * permission and XML-RPC access is enabled for that weblog.
*/
- protected Weblog validate(String blogid, String username, String password)
- throws Exception {
- boolean authenticated = false;
- boolean userEnabled = false;
- boolean weblogEnabled = false;
- boolean apiEnabled = false;
- boolean weblogFound = false;
- Weblog website = null;
- try {
- UserManager userMgr =
WebloggerFactory.getWeblogger().getUserManager();
- WeblogManager weblogMgr =
WebloggerFactory.getWeblogger().getWeblogManager();
- User user = userMgr.getUserByUserName(username);
-
- website = weblogMgr.getWeblogByHandle(blogid);
- if (website != null) {
- weblogFound = true;
- weblogEnabled = website.getVisible();
- apiEnabled = website.getEnableBloggerApi()
- &&
WebloggerRuntimeConfig.getBooleanProperty("webservices.enableXmlRpc");
- }
-
- if (user != null) {
- userEnabled = user.getEnabled();
- authenticated =
RollerContext.getPasswordEncoder().matches(password, user.getPassword());
- }
- } catch (Exception e) {
- mLogger.error("ERROR internal error validating user", e);
- }
-
- if ( !authenticated ) {
- throw new
XmlRpcNotAuthorizedException(AUTHORIZATION_EXCEPTION_MSG);
- }
- if ( !userEnabled ) {
- throw new XmlRpcNotAuthorizedException(USER_DISABLED_MSG);
- }
- if ( !weblogEnabled ) {
+ protected Weblog validate(String blogid, String username, String password,
+ String requiredAction) throws Exception {
+ User user = validateUser(username, password);
+ return validateWeblog(blogid, user, requiredAction);
+ }
+
+ /**
+ * Validate a weblog for an already authenticated user.
+ */
+ protected Weblog validateWeblog(String blogid, User user,
+ String requiredAction) throws Exception {
+ WeblogManager weblogMgr =
WebloggerFactory.getWeblogger().getWeblogManager();
+ Weblog website = weblogMgr.getWeblogByHandle(blogid);
+
+ // Use one response for missing, unavailable, and inaccessible weblogs.
+ if (!isWeblogAvailable(website)
+ || !website.hasUserPermission(user, requiredAction)) {
throw new XmlRpcNotAuthorizedException(WEBLOG_DISABLED_MSG);
}
- if ( !weblogFound ) {
- throw new XmlRpcException(WEBLOG_NOT_FOUND, WEBLOG_NOT_FOUND_MSG);
- }
- if ( !apiEnabled ) {
+ if (!Boolean.TRUE.equals(website.getEnableBloggerApi())) {
Review Comment:
Small one: the enableBloggerApi check lives here and again in
getEntryForWrite (line 197), and the two paths report it differently
(BLOGGERAPI_DISABLED here, collapsed into INVALID_POSTID there). Doing it once
in isWeblogAvailable would keep the faults consistent.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]