org.smigo.constraints.CommonsMultipartFileSizeValidator.java Source code

Java tutorial

Introduction

Here is the source code for org.smigo.constraints.CommonsMultipartFileSizeValidator.java

Source

package org.smigo.constraints;

/*
 * #%L
 * Smigo
 * %%
 * Copyright (C) 2015 Christian Nilsson
 * %%
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Lesser Public License for more details.
 * 
 * You should have received a copy of the GNU General Lesser Public
 * License along with this program.  If not, see
 * <http://www.gnu.org/licenses/lgpl-3.0.html>.
 * #L%
 */

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.web.multipart.commons.CommonsMultipartFile;

import javax.validation.ConstraintValidator;
import javax.validation.ConstraintValidatorContext;

public class CommonsMultipartFileSizeValidator
        implements ConstraintValidator<CommonsMultipartFileSize, CommonsMultipartFile> {
    private static final Logger log = LoggerFactory.getLogger(CommonsMultipartFileSizeValidator.class);

    private long maxSize;

    public void initialize(CommonsMultipartFileSize constraintAnnotation) {
        maxSize = constraintAnnotation.maxSixe();
    }

    public boolean isValid(CommonsMultipartFile file, ConstraintValidatorContext constraintContext) {
        log.debug("Validating " + file);
        if (file.getSize() < (maxSize * 1024))
            return true;
        return false;
    }

}