Child: [r4] (diff)

Download this file

GPL.java    108 lines (90 with data), 2.7 kB

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
import java.io.File;
import java.util.Date;
import script.License;
/*
* SPDXVersion: SPDX-1.1
* Creator: Person: Nuno Brito (nuno.brito@triplecheck.de)
* Creator: Organization: TripleCheck (contact@triplecheck.de)
* Created: 2013-11-16T00:00:00Z
* LicenseName: NOASSERTION
* FileName: GPL.java
* FileType: SOURCE
* FileCopyrightText: <text> Copyright 2013 Nuno Brito, TripleCheck </text>
* FileComment: <text> Given a text file, try to identify portions of text
* that allows us to distinguish if the file is covered under the LGPL
* terms and which version when possible.
*
* When looking at other tools detecting licenses, I note that exists a
* tendency to create a catalogue separate for each type of license and its
* variation. Here, the goal is different. We are grouping as much as possible
* all the related licenses under a single class. In the end, this helps us to
* accomodate in a much more sensible manner all the existent variations.
* </text>
*
* GPL detection needs to be seriously improved..
*/
/**
*
* @author Nuno Brito, 16th of November 2013 in Darmstadt, Germany.
* nuno.brito@triplecheck.de | http://nunobrito.eu
*/
public class GPL implements License {
// the list of id's that we can use to identify a license
String[] list = {
"gnu general public license",
"gnu gpl",
"gplv2 or later"
};
/**
* Verifies if the provided text applies to the triggers that
* included on this license.
* @param text Text to be analysed
* @return
*/
@Override
public Boolean isApplicable(String text){
// iterate all our ids
for(String id : list){
if(text.contains(id)){
return true;
}
}
return false;
}
@Override
public Boolean isApplicable(File file) {
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public String getShortIdentifier() {
return "GPL";
}
@Override
public String getURL() {
return "http://spdx.org/licenses/GPL-1.0+#licenseText";
}
@Override
public Boolean supportsBinaries() {
return false;
}
@Override
public Boolean supportsTextFiles() {
return true;
}
@Override
public Date getDatePublished() {
return null; //utils.time.getDate(2004, 02, 01);
}
@Override
public String getQuickSummary() {
return "";
}
@Override
public String getQuickSummaryLink() {
return "";
}
@Override
public String getFullName() {
return "GNU General Public License";
}
}