FOSSology  4.7.1
Open Source License Compliance by Open Source Software
LicenseCsvImport.php
Go to the documentation of this file.
1 <?php
2 /*
3  SPDX-FileCopyrightText: © 2014-2015 Siemens AG
4 
5  SPDX-License-Identifier: GPL-2.0-only
6 */
7 
9 
15 
26 {
29  protected $dbManager;
32  protected $userDao;
35  protected $delimiter = ',';
38  protected $enclosure = '"';
41  protected $headrow = null;
44  protected $nkMap = array();
47  protected $mdkMap = array();
50  protected $alias = array(
51  'shortname'=>array('shortname','Short Name'),
52  'licensetype'=>array('licensetype','license_type','License Type'),
53  'fullname'=>array('fullname','Long Name'),
54  'spdx_id'=>array('spdx_id', 'SPDX ID'),
55  'text'=>array('text','Full Text'),
56  'parent_shortname'=>array('parent_shortname','Decider Short Name'),
57  'report_shortname'=>array('report_shortname','Regular License Text Short Name'),
58  'url'=>array('url','URL'),
59  'notes'=>array('notes'),
60  'source'=>array('source','Foreign ID'),
61  'risk'=>array('risk','risk_level'),
62  'group'=>array('group','License group'),
63  'obligations'=>array('obligations','License obligations'),
64  'external_id'=>array('id','LicenseDB Id'),
65  );
66 
69  protected $obligationMap;
70 
77  {
78  $this->dbManager = $dbManager;
79  $this->userDao = $userDao;
80  $this->obligationMap = $obligationMap;
81  }
86  public function setDelimiter($delimiter=',')
87  {
88  $this->delimiter = substr($delimiter,0,1);
89  }
90 
95  public function setEnclosure($enclosure='"')
96  {
97  $this->enclosure = substr($enclosure,0,1);
98  }
99 
106  public function handleFile($filename, $fileExtension)
107  {
108  if (!is_file($filename) || ($handle = fopen($filename, 'r')) === false) {
109  return _('Internal error');
110  }
111  $cnt = -1;
112  $msg = '';
113  try {
114  if ($fileExtension == 'csv') {
115  while (($row = fgetcsv($handle,0,$this->delimiter,$this->enclosure)) !== false) {
116  $log = $this->handleCsv($row);
117  if (!empty($log)) {
118  $msg .= "$log\n";
119  }
120  $cnt++;
121  }
122  $msg .= _('Read csv').(": $cnt ")._('licenses');
123  } else {
124  $jsonContent = fread($handle, filesize($filename));
125  $data = json_decode($jsonContent, true);
126  if ($data === null && json_last_error() !== JSON_ERROR_NONE) {
127  $msg .= "Error decoding JSON: " . json_last_error_msg() . "\n";
128  }
129  $msg = $this->importJsonData($data, $msg);
130  $msg .= _('Read json').(":". count($data) ." ")._('licenses');
131  }
132  } catch(\Exception $e) {
133  fclose($handle);
134  return $msg .= _('Error while parsing file').': '.$e->getMessage();
135  }
136  fclose($handle);
137  return $msg;
138  }
139 
146  function handleRowJson($row)
147  {
148  $defaultValues = array(
149  'parent_shortname' => null,
150  'report_shortname' => null,
151  'url' => '',
152  'notes' => '',
153  'source' => '',
154  'risk' => 0,
155  'group' => null,
156  'spdx_id' => null
157  );
158  $newArray = array();
159  foreach ($row as $key => $value) {
160  $newKey = $key;
161  foreach ($this->alias as $aliasKey => $aliasValues) {
162  if (in_array($key, $aliasValues)) {
163  $newKey = $aliasKey;
164  break;
165  }
166  }
167  $newArray[$newKey] = $value;
168  }
169  foreach ($defaultValues as $key => $defaultValue) {
170  if (!array_key_exists($key, $newArray)) {
171  $newArray[$key] = $defaultValue;
172  }
173  }
174  return $newArray;
175  }
176 
183  private function handleCsv($row)
184  {
185  if ($this->headrow === null) {
186  $this->headrow = $this->handleHeadCsv($row);
187  return 'head okay';
188  }
189 
190  $mRow = array();
191  foreach (array('shortname','fullname','text') as $needle) {
192  $mRow[$needle] = $row[$this->headrow[$needle]];
193  }
194  foreach (array('parent_shortname' => null, 'report_shortname' => null,
195  'url' => '', 'notes' => '', 'source' => '', 'risk' => 0,
196  'group' => null, 'spdx_id' => null, 'licensetype' => "Permisssive"
197  ) as $optNeedle=>$defaultValue) {
198  $mRow[$optNeedle] = $defaultValue;
199  if ($this->headrow[$optNeedle]!==false && array_key_exists($this->headrow[$optNeedle], $row)) {
200  $mRow[$optNeedle] = $row[$this->headrow[$optNeedle]];
201  }
202  }
203 
204  return $this->handleCsvLicense($mRow);
205  }
206 
213  private function handleJsonLicense($row)
214  {
215  $mRow = $this->handleRowJson($row);
216  foreach (array('parent_shortname' => null, 'report_shortname' => null,
217  'url' => '', 'notes' => '', 'source' => '', 'risk' => 0,
218  'group' => null, 'spdx_id' => null, 'licensetype' => 'Permisssive',
219  'obligation_ids' => array()
220  ) as $optNeedle => $defaultValue) {
221  if (!array_key_exists($optNeedle, $mRow)) {
222  $mRow[$optNeedle] = $defaultValue;
223  }
224  }
225 
226  if (empty($mRow['external_id'])) {
227  return $this->handleCsvLicense($mRow);
228  }
229 
230  return $this->handleLicenseDBLicenseImport($mRow);
231  }
232 
239  private function handleHeadCsv($row)
240  {
241  $headrow = array();
242  $row[0] = trim($row[0], "\xEF\xBB\xBF"); // Remove BOM
243  foreach (array('shortname','fullname','text') as $needle) {
244  $col = ArrayOperation::multiSearch($this->alias[$needle], $row);
245  if (false === $col) {
246  throw new \Exception("Undetermined position of $needle");
247  }
248  $headrow[$needle] = $col;
249  }
250  foreach (array('parent_shortname', 'report_shortname', 'url', 'notes',
251  'source', 'risk', 'group', 'spdx_id', 'licensetype') as $optNeedle) {
252  $headrow[$optNeedle] = ArrayOperation::multiSearch($this->alias[$optNeedle], $row);
253  }
254  return $headrow;
255  }
256 
263  private function updateLicense($row, $rfPk)
264  {
265  $stmt = __METHOD__ . '.getOldLicense';
266  $oldLicense = $this->dbManager->getSingleRow('SELECT ' .
267  'rf_shortname, rf_fullname, rf_spdx_id, rf_text, rf_url, rf_notes, rf_source, rf_risk, rf_licensetype ' .
268  'FROM license_ref WHERE rf_pk = $1', array($rfPk), $stmt);
269 
270  $log = "License '$row[shortname]' already exists in DB (id = $rfPk)";
271  $stmt = __METHOD__ . '.updateLicense';
272  $sql = "UPDATE license_ref SET ";
273  if (! empty($row['group'])) {
274  $sql = "UPDATE license_candidate SET ";
275  }
276  $extraParams = array();
277  $param = array($rfPk);
278  if (isset($row['fullname']) && $row['fullname'] != $oldLicense['rf_fullname']) {
279  $param[] = $row['fullname'];
280  $stmt .= '.fullN';
281  $extraParams[] = "rf_fullname=$" . count($param);
282  $log .= ", updated fullname";
283  }
284  // update shortname only if import from licensedb
285  if (isset($row['external_id']) && isset($row['shortname']) && $row['shortname'] !== $oldLicense['rf_shortname']) {
286  $param[] = $row['shortname'];
287  $stmt .= '.shortN';
288  $extraParams[] = "rf_shortname=$" . count($param);
289  $log .= ", updated shortname";
290  }
291  if (isset($row['spdx_id']) && $row['spdx_id'] != $oldLicense['rf_spdx_id']) {
292  $param[] = $row['spdx_id'];
293  $stmt .= '.spId';
294  $extraParams[] = "rf_spdx_id=$" . count($param);
295  $log .= ", updated SPDX ID";
296  }
297  if (isset($row['text']) && $row['text'] != $oldLicense['rf_text'] && $row['text'] != LicenseMap::TEXT_MAX_CHAR_LIMIT) {
298  $param[] = $row['text'];
299  $stmt .= '.text';
300  $extraParams[] = "rf_text=$" . count($param) . ",rf_md5=md5($" .
301  count($param) . ")";
302  $log .= ", updated text";
303  }
304  if (isset($row['url']) && $row['url'] != $oldLicense['rf_url']) {
305  $param[] = $row['url'];
306  $stmt .= '.url';
307  $extraParams[] = "rf_url=$" . count($param);
308  $log .= ", updated URL";
309  }
310  if (isset($row['notes']) && $row['notes'] != $oldLicense['rf_notes']) {
311  $param[] = $row['notes'];
312  $stmt .= '.notes';
313  $extraParams[] = "rf_notes=$" . count($param);
314  $log .= ", updated notes";
315  }
316  if (isset($row['source']) && $row['source'] != $oldLicense['rf_source']) {
317  $param[] = $row['source'];
318  $stmt .= '.updSource';
319  $extraParams[] = "rf_source=$".count($param);
320  $log .= ', updated the source';
321  }
322  if (isset($row['risk']) && $row['risk'] != $oldLicense['rf_risk']) {
323  $param[] = $row['risk'];
324  $stmt .= '.updRisk';
325  $extraParams[] = "rf_risk=$".count($param);
326  $log .= ', updated the risk level';
327  }
328  if (isset($row['licensetype']) && $row['licensetype'] != $oldLicense['rf_licensetype']) {
329  $param[] = $row['licensetype'];
330  $stmt .= '.types';
331  $extraParams[] = "rf_licensetype=$".count($param);
332  $log .= ', updated the licensetype';
333  }
334  if (count($param) > 1) {
335  $sql .= join(",", $extraParams);
336  $sql .= " WHERE rf_pk=$1;";
337  $this->dbManager->getSingleRow($sql, $param, $stmt);
338  if (!isset($row['external_id'])) {
339  $this->mdkMap[md5($row['text'])] = $rfPk;
340  }
341  }
342 
343  // edit license maps only in case of normal import
344  // In case of import from licensedb, the mapping info must come from licensedb
345  if ($row['external_id'] === null) {
346  $stmt = __METHOD__ . '.getOldMapping';
347  $sql = 'SELECT rf_parent FROM license_map WHERE rf_fk = $1 AND usage = $2;';
348  $oldParent = null;
349  $oldParentRow = $this->dbManager->getSingleRow($sql, array($rfPk,
350  LicenseMap::CONCLUSION), $stmt);
351  if (!empty($oldParentRow)) {
352  $oldParent = $oldParentRow['rf_parent'];
353  }
354  $oldReport = null;
355  $oldReportRow = $this->dbManager->getSingleRow($sql, array($rfPk,
356  LicenseMap::REPORT), $stmt);
357  if (!empty($oldReportRow)) {
358  $oldReport = $oldReportRow['rf_parent'];
359  }
360 
361  $newParent = null;
362  $newParent = ($row['parent_shortname'] == null) ? null :
363  $this->getKeyFromShortname($row['parent_shortname']);
364 
365  $newReport = null;
366  $newReport = ($row['report_shortname'] == null) ? null :
367  $this->getKeyFromShortname($row['report_shortname']);
368 
369  if (($oldParent != $newParent) && $this->setMap($newParent, $rfPk, LicenseMap::CONCLUSION)) {
370  $log .= " with conclusion '$row[parent_shortname]'";
371  }
372  if (($oldReport != $newReport) && $this->setMap($newReport, $rfPk, LicenseMap::REPORT)) {
373  $log .= " reporting '$row[report_shortname]'";
374  }
375  }
376  return $log;
377  }
378 
387  private function handleCsvLicense($row)
388  {
389  if (empty($row['risk'])) {
390  $row['risk'] = 0;
391  }
392  if (empty($row['external_id'])) {
393  $row['external_id'] = null;
394  }
395  $rfPk = $this->getKeyFromShortname($row['shortname'], $row['group']);
396  $md5Match = $this->getKeyFromMd5($row['text']);
397 
398  // If shortname exists, does not collide with other texts and is not
399  // candidate
400  if ($rfPk !== false) {
401  if (! empty($row['group']) || ($md5Match == $rfPk || $md5Match === false)) {
402  return $this->updateLicense($row, $rfPk);
403  } else {
404  return "Error: MD5 checksum of '" . $row['shortname'] .
405  "' collides with license id=$md5Match";
406  }
407  }
408  if ($md5Match !== false && empty($row['group'])) {
409  return "Error: MD5 checksum of '" . $row['shortname'] .
410  "' collides with license id=$md5Match";
411  }
412 
413  $return = "";
414  if (!empty($row['group'])) {
415  $return = $this->insertNewLicense($row, "license_candidate");
416  } else {
417  $return = $this->insertNewLicense($row, "license_ref");
418  }
419  // insertNewLicense() returns a plain string on error (e.g. missing group)
420  // or an array on success.
421  if (is_string($return)) {
422  return $return;
423  }
424  return $return['log'];
425  }
426 
439  private function handleLicenseDBLicenseImport($row)
440  {
441  if (empty($row["external_id"])) {
442  return "Error: external_id cannot be empty";
443  }
444  $stmt = __METHOD__ . ".getExistingLicense";
445  $rfPk = $this->dbManager->getSingleRow("SELECT rf_pk FROM " .
446  "license_ref WHERE rf_external_id=$1", array($row["external_id"]), $stmt);
447  $log = '';
448  if (!empty($rfPk)) {
449  // update license
450  $log .= $this->updateLicense($row, $rfPk['rf_pk']);
451 
452  $this->dbManager->begin();
453  // fetch new obligation associations
454  $stmt = __METHOD__ . "getNewLicenseObligations";
455  $newObIds = array();
456  foreach ($row['obligation_ids'] as $obExternalId) {
457  $obPk = $this->dbManager->getSingleRow("SELECT ob_pk FROM obligation_ref WHERE ob_external_id = $1;",
458  array($obExternalId), $stmt);
459  if (!empty($obPk)) {
460  $newObIds[] = $obPk['ob_pk'];
461  } else {
462  $log .= \sprintf('obligation with ob_external_id %s not found', $obExternalId);
463  }
464  }
465 
466  // fetch old obligation associations
467  $stmt = __METHOD__ . "getOldObligationAssociations";
468  $oldObIdsDB = $this->dbManager->getRows("SELECT ob_fk FROM obligation_map WHERE rf_fk = $1", array($rfPk['rf_pk']), $stmt);
469  $oldObIds = array();
470  foreach ($oldObIdsDB as $obId) {
471  $oldObIds[] = $obId['ob_fk'];
472  }
473 
474  // create diff of obligations between current associated obligations and licensedb
475  // associated obligations
476  $diff = ArrayOperation::getArrayDiffs($oldObIds, $newObIds);
477 
478  // delete associations
479  foreach ($diff['remove'] as $obid) {
480  $this->obligationMap->unassociateLicenseFromObligation($obid, $rfPk['rf_pk']);
481  }
482 
483  // insert associations
484  foreach ($diff['add'] as $obid) {
485  $this->obligationMap->associateLicenseWithObligation($obid, $rfPk['rf_pk']);
486  }
487  $this->dbManager->commit();
488  } else {
489  $licRetVal = $this->insertNewLicense($row, "license_ref");
490  $log .= $licRetVal['log'];
491 
492  $this->dbManager->begin();
493  $newObIds = array();
494  $stmt = __METHOD__ . "getNewLicenseObligationsForInsert";
495  foreach ($row['obligation_ids'] as $obExternalId) {
496  $obPk = $this->dbManager->getSingleRow("SELECT ob_pk FROM obligation_ref WHERE ob_external_id = $1;",
497  array($obExternalId), $stmt);
498  if (!empty($obPk)) {
499  $newObIds[] = $obPk['ob_pk'];
500  } else {
501  $log .= \sprintf('obligation with ob_external_id %s not found', $obExternalId);
502  }
503  }
504 
505  // insert associations
506  foreach ($newObIds as $obid) {
507  $this->obligationMap->associateLicenseWithObligation($obid, $licRetVal['pkey']);
508  }
509  $this->dbManager->commit();
510  }
511 
512  return $log;
513  }
514 
526  private function insertMapIfNontrivial($fromName,$toName,$usage)
527  {
528  $isNontrivial = ($fromName!==null && $fromName!=$toName && $this->getKeyFromShortname($fromName)!==false);
529  if ($isNontrivial) {
530  $this->dbManager->insertTableRow('license_map',
531  array('rf_fk'=>$this->getKeyFromShortname($toName),
532  'rf_parent'=>$this->getKeyFromShortname($fromName),
533  'usage'=> $usage));
534  }
535  return $isNontrivial;
536  }
537 
543  private function getKeyFromShortname($shortname, $groupFk = null)
544  {
545  $keyName = $shortname;
546  $tableName = "license_ref";
547  $addCondition = "AND rf_external_id IS NULL";
548  $statement = __METHOD__ . ".getId";
549  $params = array($shortname);
550 
551  if ($groupFk != null) {
552  $keyName .= $groupFk;
553  $tableName = "license_candidate";
554  $addCondition = "AND group_fk = $2";
555  $statement .= ".candidate";
556  $params[] = $this->userDao->getGroupIdByName($groupFk);
557  }
558  $sql = "SELECT rf_pk FROM ONLY $tableName WHERE rf_shortname = $1 $addCondition;";
559 
560  if (array_key_exists($keyName, $this->nkMap)) {
561  return $this->nkMap[$keyName];
562  }
563  $row = $this->dbManager->getSingleRow($sql, $params, $statement);
564  $this->nkMap[$keyName] = ($row===false) ? false : $row['rf_pk'];
565  return $this->nkMap[$keyName];
566  }
567 
573  private function getKeyFromMd5($licenseText)
574  {
575  $md5 = md5($licenseText);
576  if (array_key_exists($md5, $this->mdkMap)) {
577  return $this->mdkMap[$md5];
578  }
579  $row = $this->dbManager->getSingleRow("SELECT rf_pk " .
580  "FROM ONLY license_ref WHERE rf_md5=md5($1) AND rf_external_id IS NULL",
581  array($licenseText));
582  $this->mdkMap[$md5] = (empty($row)) ? false : $row['rf_pk'];
583  return $this->mdkMap[$md5];
584  }
585 
596  private function setMap($from, $to, $usage)
597  {
598  $return = false;
599  if (!empty($from)) {
600  $sql = "SELECT license_map_pk, rf_parent FROM license_map WHERE rf_fk = $1 AND usage = $2;";
601  $statement = __METHOD__ . ".getCurrentMapping";
602  $row = $this->dbManager->getSingleRow($sql, array($to, $usage), $statement);
603  if (!empty($row) && $row['rf_parent'] != $from) {
604  $this->dbManager->updateTableRow("license_map", array(
605  'rf_fk' => $to,
606  'rf_parent' => $from,
607  'usage' => $usage
608  ), 'license_map_pk', $row['license_map_pk']);
609  $return = true;
610  } elseif (empty($row)) {
611  $this->dbManager->insertTableRow('license_map', array(
612  'rf_fk' => $to,
613  'rf_parent' => $from,
614  'usage' => $usage
615  ));
616  $return = true;
617  }
618  }
619  return $return;
620  }
621 
631  private function insertNewLicense($row, $tableName = "license_ref")
632  {
633  $stmtInsert = __METHOD__ . '.insert.' . $tableName;
634  $columns = array(
635  "rf_shortname" => $row['shortname'],
636  "rf_licensetype" => $row['licensetype'],
637  "rf_fullname" => $row['fullname'],
638  "rf_spdx_id" => $row['spdx_id'],
639  "rf_text" => $row['text'],
640  "rf_md5" => md5($row['text']),
641  "rf_detector_type" => 1,
642  "rf_url" => $row['url'],
643  "rf_notes" => $row['notes'],
644  "rf_source" => $row['source'],
645  "rf_risk" => $row['risk'],
646  "rf_external_id" => $row['external_id']
647  );
648 
649  $as = "";
650  if ($tableName == "license_candidate") {
651  $groupId = $this->userDao->getGroupIdByName($row['group']);
652  if (empty($groupId)) {
653  return "Error: Unable to insert candidate license " . $row['shortname'] .
654  " as group " . $row['group'] . " does not exist";
655  }
656  $columns["group_fk"] = $groupId;
657  $columns["marydone"] = $this->dbManager->booleanToDb(true);
658  $as = " as candidate license under group " . $row["group"];
659  }
660 
661  $newPk = $this->dbManager->insertTableRow($tableName, $columns, $stmtInsert, 'rf_pk');
662 
663  // populate license maps and cache only when the import is not from licensedb
664  $log = "Inserted '$row[shortname]' in DB" . $as;
665  if ($row['external_id'] === null) {
666  if ($tableName == "license_candidate") {
667  $this->nkMap[$row['shortname'].$row['group']] = $newPk;
668  } else {
669  $this->nkMap[$row['shortname']] = $newPk;
670  }
671  $this->mdkMap[md5($row['text'])] = $newPk;
672 
673  if ($this->insertMapIfNontrivial($row['parent_shortname'], $row['shortname'], LicenseMap::CONCLUSION)) {
674  $log .= " with conclusion '$row[parent_shortname]'";
675  }
676  if ($this->insertMapIfNontrivial($row['report_shortname'], $row['shortname'], LicenseMap::REPORT)) {
677  $log .= " reporting '$row[report_shortname]'";
678  }
679  }
680 
681  $return = array();
682  $return['log'] = $log;
683  $return['pkey'] = $newPk;
684  return $return;
685  }
686 
692  public function importJsonData($data, string $msg): string
693  {
694  foreach ($data as $row) {
695  $log = $this->handleJsonLicense($row);
696  if (!empty($log)) {
697  $msg .= "$log\n";
698  }
699  }
700  return $msg;
701  }
702 }
insertMapIfNontrivial($fromName, $toName, $usage)
Insert in license_map table if the license conclusion is non-trivial.
handleFile($filename, $fileExtension)
Read the CSV line by line and import it.
handleCsvLicense($row)
Handle a single row from CSV.
updateLicense($row, $rfPk)
Update the license info in the DB.
handleLicenseDBLicenseImport($row)
Handle a single row from csv import form LicenseDB.
setEnclosure($enclosure='"')
Update the enclosure.
getKeyFromShortname($shortname, $groupFk=null)
Get the license id using license shortname from DB or nkMap.
__construct(DbManager $dbManager, UserDao $userDao, $obligationMap=null)
handleHeadCsv($row)
Handle a row as head row.
insertNewLicense($row, $tableName="license_ref")
Insert a new license in DB.
setDelimiter($delimiter=',')
Update the delimiter.
setMap($from, $to, $usage)
Update license mappings.
Wrapper class for license map.
Definition: LicenseMap.php:19
Wrapper class for obligation map.
Fossology exception.
Definition: Exception.php:15
static getArrayDiffs(array $oldArray, array $newArray)
Get list of additions/removals to make $oldArray equal to $newArray.
char * trim(char *ptext)
Trimming whitespace.
Definition: fossconfig.c:690
fo_dbManager * dbManager
fo_dbManager object
Definition: process.c:16
Utility functions for specific applications.