All Downloads are FREE. Search and download functionalities are using the official Maven repository.

serposcope.controllers.google.GoogleController Maven / Gradle / Ivy

/* 
 * Serposcope - SEO rank checker https://serposcope.serphacker.com/
 * 
 * Copyright (c) 2016 SERP Hacker
 * @author Pierre Nogues 
 * @license https://opensource.org/licenses/MIT MIT License
 */
package serposcope.controllers.google;

import com.serphacker.serposcope.models.google.GoogleSearch;
import com.serphacker.serposcope.models.google.GoogleTarget;
import java.util.List;
import ninja.Context;
import ninja.FilterWith;
import serposcope.controllers.BaseController;
import serposcope.filters.AuthFilter;
import serposcope.filters.CanReadFilter;
import serposcope.filters.GoogleGroupFilter;

@FilterWith({
    AuthFilter.class,
    CanReadFilter.class,
    GoogleGroupFilter.class
})
public abstract class GoogleController extends BaseController {
    
    protected List getTargets(Context context){
        return context.getAttribute("targets", List.class);
    }
    
    protected List getSearches(Context context){
        return context.getAttribute("searches", List.class);
    }    

    protected GoogleTarget getTarget(Context context, Integer targetId){
        if(targetId == null){
            return null;
        }
        List targets = context.getAttribute("targets", List.class);
        for (GoogleTarget target : targets) {
            if(target.getId() == targetId){
                return target;
            }
        }
        
        return null;
    }
    
    protected GoogleSearch getSearch(Context context, Integer searchId){
        if(searchId == null){
            return null;
        }
        List searches = context.getAttribute("searches", List.class);
        for (GoogleSearch search : searches) {
            if(search.getId() == searchId){
                return search;
            }
        }
        
        return null;
    }
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy