001/*
002 * (C) Copyright 2017 Nuxeo (http://nuxeo.com/) and others.
003 *
004 * Licensed under the Apache License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 *     http://www.apache.org/licenses/LICENSE-2.0
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 *
016 * Contributors:
017 *     Antoine Taillefer <ataillefer@nuxeo.com>
018 */
019package org.nuxeo.drive.listener;
020
021import org.nuxeo.drive.service.impl.NuxeoDriveManagerImpl;
022import org.nuxeo.ecm.core.api.CoreSession;
023import org.nuxeo.ecm.core.api.DocumentModel;
024import org.nuxeo.ecm.core.api.DocumentRef;
025import org.nuxeo.ecm.core.event.Event;
026import org.nuxeo.ecm.core.event.EventContext;
027import org.nuxeo.ecm.core.event.EventListener;
028
029/**
030 * Event listener to reset the synchronization root registrations on a versioned document.
031 *
032 * @since 9.10
033 */
034public class NuxeoDriveSyncRootVersioningListener implements EventListener {
035
036    @Override
037    public void handleEvent(Event event) {
038        EventContext context = event.getContext();
039        DocumentRef checkedInVersionRef = (DocumentRef) context.getProperty("checkedInVersionRef");
040        if (checkedInVersionRef == null) {
041            return;
042        }
043        CoreSession session = context.getCoreSession();
044        DocumentModel doc = session.getDocument(checkedInVersionRef);
045        if (!(doc.isVersion() && doc.hasFacet(NuxeoDriveManagerImpl.NUXEO_DRIVE_FACET))) {
046            return;
047        }
048        doc.setPropertyValue(NuxeoDriveManagerImpl.DRIVE_SUBSCRIPTIONS_PROPERTY, null);
049        doc.putContextData(CoreSession.ALLOW_VERSION_WRITE, Boolean.TRUE);
050        doc.putContextData("source", "drive");
051        doc.putContextData(CoreSession.SOURCE, "drive");
052        session.saveDocument(doc);
053    }
054
055}