blob: e3fd7d762a91373c1a670336a9331dbe7c0b78a4 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License") + you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.openmeetings.cli;
import static java.util.Collections.addAll;
import static org.apache.openmeetings.util.OmFileHelper.EXTENSION_MP4;
import java.io.File;
import java.io.FilenameFilter;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import org.apache.commons.io.FileUtils;
import org.apache.openmeetings.db.dao.file.FileItemDao;
import org.apache.openmeetings.db.dao.record.RecordingDao;
import org.apache.openmeetings.db.dao.user.UserDao;
import org.apache.openmeetings.db.entity.file.FileItem;
import org.apache.openmeetings.db.entity.record.Recording;
import org.apache.openmeetings.db.entity.user.User;
import org.apache.openmeetings.util.OmFileHelper;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class CleanupHelper {
private static final Logger log = LoggerFactory.getLogger(CleanupHelper.class);
private static File hibernateDir = OmFileHelper.getStreamsHibernateDir();
private CleanupHelper() {}
public static CleanupEntityUnit getProfileUnit(final UserDao udao) {
File parent = OmFileHelper.getUploadProfilesDir();
List<File> invalid = new ArrayList<>();
List<File> deleted = new ArrayList<>();
int missing = 0;
for (File profile : list(parent, null)) {
long userId = getUserIdByProfile(profile.getName());
User u = udao.get(userId);
if (profile.isFile() || userId < 0 || u == null) {
invalid.add(profile);
} else if (u.isDeleted()) {
deleted.add(profile);
}
}
for (User u : udao.getAllBackupUsers()) {
if (!u.isDeleted() && u.getPictureUri() != null && !new File(OmFileHelper.getUploadProfilesUserDir(u.getId()), u.getPictureUri()).exists()) {
missing++;
}
}
return new CleanupEntityUnit(parent, invalid, deleted, missing);
}
public static CleanupUnit getImportUnit() {
return new CleanupUnit(OmFileHelper.getUploadImportDir());
}
public static CleanupUnit getBackupUnit() {
return new CleanupUnit(OmFileHelper.getUploadBackupDir());
}
public static CleanupEntityUnit getFileUnit(final FileItemDao fileDao) {
File parent = OmFileHelper.getUploadFilesDir();
List<File> invalid = new ArrayList<>();
List<File> deleted = new ArrayList<>();
int missing = 0;
for (File f : list(parent, null)) {
FileItem item = fileDao.get(f.getName(), FileItem.class);
if (item == null) {
invalid.add(f);
} else if (item.isDeleted()) {
deleted.add(f);
}
}
for (FileItem item : fileDao.get()) {
if (!item.isDeleted() && !item.exists()) {
missing++;
}
}
return new CleanupEntityUnit(parent, invalid, deleted, missing);
}
public static CleanupEntityUnit getRecUnit(final RecordingDao recordDao) {
File parent = OmFileHelper.getStreamsDir();
List<File> invalid = new ArrayList<>();
List<File> deleted = new ArrayList<>();
int missing = 0;
for (File f : list(hibernateDir, (dir, name) -> name.endsWith(EXTENSION_MP4))) {
if (!f.isFile()) {
log.warn("Recording found is not a file: {}", f);
continue;
}
String hash = f.getName().substring(0, f.getName().length() - EXTENSION_MP4.length() - 1);
Recording item = recordDao.getAny(hash, Recording.class);
if (item == null) {
addAll(invalid, list(hash));
} else if (item.isDeleted()) {
addAll(deleted, list(hash));
}
}
for (Recording item : recordDao.get()) {
if (!item.isDeleted() && item.getHash() != null && list(item.getHash()).length == 0) {
missing++;
}
}
return new CleanupEntityUnit(parent, invalid, deleted, missing) {
private static final long serialVersionUID = 1L;
@Override
public void cleanup() throws IOException {
String hiberPath = hibernateDir.getCanonicalPath();
for (File f : list(getParent(), null)) {
if (!f.getCanonicalPath().equals(hiberPath)) {
FileUtils.deleteQuietly(f);
}
}
super.cleanup();
}
};
}
private static File[] list(File f, FilenameFilter ff) {
File[] l = ff == null ? f.listFiles() : f.listFiles(ff);
return l == null ? new File[0] : l;
}
private static File[] list(final String hash) {
return list(hibernateDir, (dir, name) -> name.startsWith(hash));
}
private static long getUserIdByProfile(String name) {
long result = -1;
if (name.startsWith(OmFileHelper.PROFILES_PREFIX)) {
try {
result = Long.parseLong(name.substring(OmFileHelper.PROFILES_PREFIX.length()));
} catch (Exception e) {
//noop
}
}
return result;
}
}