Fixed bug that was allowing to like posts even if the user had the session expired.
git-svn-id: http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/portlets/user/news-feed@98805 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
c77bcc84e1
commit
9b2ca36a5d
|
@ -1,4 +1,8 @@
|
|||
<ReleaseNotes>
|
||||
<Changeset component="org.gcube.portlets.user.NewsFeed.1-7-1"
|
||||
date="2014-06-04">
|
||||
Fixed bug that was allowing to like posts even if the user had the session expired.
|
||||
</Changeset>
|
||||
<Changeset component="org.gcube.portlets.user.NewsFeed.1-7-0"
|
||||
date="2014-06-04">
|
||||
Fixed bug loosing session when messaging user from the news feed
|
||||
|
|
|
@ -766,7 +766,11 @@ public class NewsFeedPanel extends Composite {
|
|||
@Override
|
||||
public void onFailure(Throwable caught) {}
|
||||
@Override
|
||||
public void onSuccess(Boolean result) { }
|
||||
public void onSuccess(Boolean result) {
|
||||
if (!result) {
|
||||
doShowSessionExpired();
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
|
@ -775,7 +779,11 @@ public class NewsFeedPanel extends Composite {
|
|||
@Override
|
||||
public void onFailure(Throwable caught) {}
|
||||
@Override
|
||||
public void onSuccess(Boolean result) { }
|
||||
public void onSuccess(Boolean result) {
|
||||
if (!result) {
|
||||
doShowSessionExpired();
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
}
|
||||
|
|
|
@ -459,6 +459,11 @@ public class NewsServiceImpl extends RemoteServiceServlet implements NewsService
|
|||
public boolean like(String feedid, String feedText, String feedOwnerId) {
|
||||
boolean likeCommitResult = false;
|
||||
UserInfo user = getUserSettings().getUserInfo();
|
||||
|
||||
if (user.getUsername().compareTo(TEST_USER) == 0) {
|
||||
return false;
|
||||
}
|
||||
|
||||
Like toLike = new Like(UUID.randomUUID().toString(), user.getUsername(),
|
||||
new Date(), feedid, user.getFullName(), user.getAvatarId());
|
||||
try {
|
||||
|
|
Loading…
Reference in New Issue