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

com.serphacker.serposcope.models.google.GoogleSerpEntry Maven / Gradle / Ivy

The newest version!
/* 
 * 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 com.serphacker.serposcope.models.google;

import it.unimi.dsi.fastutil.shorts.Short2ShortArrayMap;
import java.net.IDN;
import java.net.URL;
import java.net.URLDecoder;
import java.util.List;
import java.util.Map;
import java.util.Objects;

public class GoogleSerpEntry {
    
    String url;
    Short2ShortArrayMap map = new Short2ShortArrayMap();

    public GoogleSerpEntry(String url) {
        this.url = url;
    }
    
    public void fillPreviousPosition(Map history){
        for (Map.Entry entrySet : history.entrySet()) {
            short day = entrySet.getKey();
            List entries = entrySet.getValue().entries;
            int position = 0;
            
            for (int i = 0; i < entries.size(); i++) {
                if(this.equals(entries.get(i))){
                    position = i + 1;
                }
            }
            
            map.put(day, (short)position);
        }
    }

    public String getUrl() {
        return url;
    }
    
    public String getUnicodeUrl() {
        if(url == null){
            return null;
        }
        
        if(!url.contains("xn--")){
            return url;
        }
        
        try {
            URL u = new URL(url);
            return u.getProtocol() + "://" + IDN.toUnicode(u.getHost()) + u.getFile();
        }catch(Exception ex){
            return url;
        }
    }
    
    public Short2ShortArrayMap getMap() {
        return map;
    }

    public void setMap(Short2ShortArrayMap map) {
        this.map = map;
    }

    @Override
    public int hashCode() {
        int hash = 7;
        hash = 73 * hash + Objects.hashCode(this.url);
        return hash;
    }

    @Override
    public boolean equals(Object obj) {
        if (obj == null) {
            return false;
        }
        if (getClass() != obj.getClass()) {
            return false;
        }
        final GoogleSerpEntry other = (GoogleSerpEntry) obj;
        if (!Objects.equals(this.url, other.url)) {
            return false;
        }
        return true;
    }
    
    @Override
    public String toString() {
        return "GoogleSerpEntry{" + "url=" + url + ", map=" + map + '}';
    }
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy