| 1 | |
|
| 2 | |
|
| 3 | |
|
| 4 | |
|
| 5 | |
|
| 6 | |
|
| 7 | |
|
| 8 | |
|
| 9 | |
|
| 10 | |
|
| 11 | |
|
| 12 | |
|
| 13 | |
|
| 14 | |
|
| 15 | |
|
| 16 | |
|
| 17 | |
|
| 18 | |
package org.owasp.dependencycheck.data.composer; |
| 19 | |
|
| 20 | |
import org.slf4j.Logger; |
| 21 | |
import org.slf4j.LoggerFactory; |
| 22 | |
|
| 23 | |
import javax.json.Json; |
| 24 | |
import javax.json.JsonArray; |
| 25 | |
import javax.json.JsonException; |
| 26 | |
import javax.json.JsonObject; |
| 27 | |
import javax.json.JsonReader; |
| 28 | |
import javax.json.stream.JsonParsingException; |
| 29 | |
import java.io.InputStream; |
| 30 | |
import java.util.ArrayList; |
| 31 | |
import java.util.List; |
| 32 | |
|
| 33 | |
|
| 34 | |
|
| 35 | |
|
| 36 | |
|
| 37 | |
|
| 38 | |
public class ComposerLockParser { |
| 39 | |
|
| 40 | |
|
| 41 | |
|
| 42 | |
|
| 43 | |
private final JsonReader jsonReader; |
| 44 | |
|
| 45 | |
|
| 46 | |
|
| 47 | |
|
| 48 | |
private final InputStream inputStream; |
| 49 | |
|
| 50 | |
|
| 51 | |
|
| 52 | |
|
| 53 | |
private final List<ComposerDependency> composerDependencies; |
| 54 | |
|
| 55 | |
|
| 56 | |
|
| 57 | |
|
| 58 | 2 | private static final Logger LOGGER = LoggerFactory.getLogger(ComposerLockParser.class); |
| 59 | |
|
| 60 | |
|
| 61 | |
|
| 62 | |
|
| 63 | |
|
| 64 | |
|
| 65 | 10 | public ComposerLockParser(InputStream inputStream) { |
| 66 | 10 | LOGGER.info("Creating a ComposerLockParser"); |
| 67 | 10 | this.inputStream = inputStream; |
| 68 | 10 | this.jsonReader = Json.createReader(inputStream); |
| 69 | 10 | this.composerDependencies = new ArrayList<ComposerDependency>(); |
| 70 | 10 | } |
| 71 | |
|
| 72 | |
|
| 73 | |
|
| 74 | |
|
| 75 | |
public void process() { |
| 76 | 10 | LOGGER.info("Beginning Composer lock processing"); |
| 77 | |
try { |
| 78 | 10 | final JsonObject composer = jsonReader.readObject(); |
| 79 | 6 | if (composer.containsKey("packages")) { |
| 80 | 6 | LOGGER.debug("Found packages"); |
| 81 | 6 | final JsonArray packages = composer.getJsonArray("packages"); |
| 82 | 4 | for (JsonObject pkg : packages.getValuesAs(JsonObject.class)) { |
| 83 | 120 | if (pkg.containsKey("name")) { |
| 84 | 120 | final String groupName = pkg.getString("name"); |
| 85 | 120 | if (groupName.indexOf('/') >= 0 && groupName.indexOf('/') <= groupName.length() - 1) { |
| 86 | 120 | if (pkg.containsKey("version")) { |
| 87 | 120 | final String group = groupName.substring(0, groupName.indexOf('/')); |
| 88 | 120 | final String project = groupName.substring(groupName.indexOf('/') + 1); |
| 89 | 120 | String version = pkg.getString("version"); |
| 90 | |
|
| 91 | 120 | if (version.startsWith("v")) { |
| 92 | 84 | version = version.substring(1); |
| 93 | |
} |
| 94 | 120 | LOGGER.debug("Got package {}/{}/{}", group, project, version); |
| 95 | 120 | composerDependencies.add(new ComposerDependency(group, project, version)); |
| 96 | 120 | } else { |
| 97 | 0 | LOGGER.debug("Group/package {} does not have a version", groupName); |
| 98 | |
} |
| 99 | |
} else { |
| 100 | 0 | LOGGER.debug("Got a dependency with no name"); |
| 101 | |
} |
| 102 | |
} |
| 103 | 120 | } |
| 104 | |
} |
| 105 | 2 | } catch (JsonParsingException jsonpe) { |
| 106 | 2 | throw new ComposerException("Error parsing stream", jsonpe); |
| 107 | 2 | } catch (JsonException jsone) { |
| 108 | 2 | throw new ComposerException("Error reading stream", jsone); |
| 109 | 0 | } catch (IllegalStateException ise) { |
| 110 | 0 | throw new ComposerException("Illegal state in composer stream", ise); |
| 111 | 2 | } catch (ClassCastException cce) { |
| 112 | 2 | throw new ComposerException("Not exactly composer lock", cce); |
| 113 | 4 | } |
| 114 | 4 | } |
| 115 | |
|
| 116 | |
|
| 117 | |
|
| 118 | |
|
| 119 | |
|
| 120 | |
|
| 121 | |
public List<ComposerDependency> getDependencies() { |
| 122 | 6 | return composerDependencies; |
| 123 | |
} |
| 124 | |
} |