Actually for this I have created event handler. Using page event modifications able to reset page properties. When we copy page, that time page event treated as "Page Created". But "Page Created" event triggered by 3 ways.
1. copy page 2. create new page 3. install new content using package manager
my requirement don't want to work for 3rd point(install new content using package manager)
Or any better approach for copy event.
Solved! Go to Solution.
Hi,
I don't think, that this is possible that easy. Because on a Sling or JCR event handle you only see the effect of the activity: a new page is being created. The only way to achieve this is to intercept the commands given on the UI (and disallow the use of CRXDE for authors!) and change the target page accordingly. You could this with a filter, which checks if this request is a relevant one you need to handle and then react accordingly.
But I think, that you take the wrong route. Is it possible to handle the occurrence of a duplicate on a certain property? Or maybe revisiting the whole requirement, as it looks a bit strange for me.
Jörg
Views
Replies
Total Likes
Using an Event Handler for this use case is good idea. From your requirement - you do not want this handler to fire when content is updated by package manager right?
Views
Replies
Total Likes
If you have to use event handler approach then one possible solution could be to create a special user for building and installing packages. This user should only be used only for installing packages and nothing else. And then in your event handler code you can check the value of for "jcr:createdBy" property. If it matches the user name of the package installation user then you can skip the reset logic.
Note - This solution will work but will require some governance as you are assuming that only a particular user account is used for installing packages.
Hi,
I don't think, that this is possible that easy. Because on a Sling or JCR event handle you only see the effect of the activity: a new page is being created. The only way to achieve this is to intercept the commands given on the UI (and disallow the use of CRXDE for authors!) and change the target page accordingly. You could this with a filter, which checks if this request is a relevant one you need to handle and then react accordingly.
But I think, that you take the wrong route. Is it possible to handle the occurrence of a duplicate on a certain property? Or maybe revisiting the whole requirement, as it looks a bit strange for me.
Jörg
Views
Replies
Total Likes
If it is particular user, we can do but in my project some specific group of users having all permissions. he can do installation , copy from site admin and side kick. That is the problem i am facing.
Views
Replies
Total Likes
yes. Please help me how to stop firing for package manager
Views
Replies
Total Likes
that is a good workaround given these requirements.
Views
Replies
Total Likes
if we use filter, we can restrict certain paths but how can i trigger copy event.
Views
Replies
Total Likes
Hi,
My approach is not to call anything directly, but rather hook in a request filter, which detects the various types of requests you're interested in. And when the request has been finished start some post-processing.
Jörg
Views
Replies
Total Likes
This is an interesting use case - how to differentiate when a page is created via the AEM UI (via copy or create a new one) VS Package Manager. I am sure a Package Manager will still fire the handler, but I am looking to see if there is a way to dynamically determine if the page was created from a package being installed.
If there is a way to dynamically determine this - you can do this:
if ( was page updated from package)
do not update page props
else
update page props
Views
Replies
Total Likes
Yes I am also search on this logic but tried with different blogs and apis. No luck to determine that one.
Views
Replies
Total Likes
pretty interesting usecase !! but OOB, i dont think it exists today as all of these operations are operated based on the jcr events !
Views
Replies
Total Likes
One way could be to create a service which reset this page properties.
Now override OOTB copy functionality to make use of this service. You don't have to write full copy code again, rather make sure that this service method gets executes when copy operations performed. I feel there are very less chance that people will copy page using crxde, so implement this in sidekick and siteadmin.
Views
Replies
Total Likes
At the JCR level - AEM does not care how the node was created. It fires when the node is changed or created - no matter how it created - as you know.
I am still looking for the solution here.
Views
Replies
Total Likes
how to make a call to service in siteadmin js or side kick js.
Views
Replies
Total Likes
Thanks to all
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies