FOSSology  4.4.0
Open Source License Compliance by Open Source Software
AjaxSHDetailsBrowser.php
1 <?php
2 /*
3  SPDX-FileCopyrightText: © 2019 Sandip Kumar Bhuyan <sandipbhuyan@gmail.com>
4  Author: Sandip Kumar Bhuyan<sandipbhyan@gmail.com>
5 
6  SPDX-License-Identifier: GPL-2.0-only
7 */
18 use Symfony\Component\HttpFoundation\JsonResponse;
19 use \Symfony\Component\HttpFoundation\Request;
20 use Symfony\Component\HttpFoundation\Response;
21 
23 {
24  const NAME = "ajax_sh_browser";
25 
26  private $uploadtree_tablename = "";
28  private $uploadDao;
30  private $licenseDao;
32  private $agentDao;
37  private $shDao;
42  private $configuration;
43 
44  protected $agentNames = array('softwareHeritage' => 'SH');
45 
46  public function __construct()
47  {
48  parent::__construct(self::NAME, array(
49  self::TITLE => _("Ajax: File Browser"),
50  self::DEPENDENCIES => array("fileBrowse"),
51  self::PERMISSION => Auth::PERM_READ,
52  self::REQUIRES_LOGIN => false
53  ));
54 
55  $this->uploadDao = $this->getObject('dao.upload');
56  $this->licenseDao = $this->getObject('dao.license');
57  $this->agentDao = $this->getObject('dao.agent');
58  $this->shDao = $this->container->get('dao.softwareHeritage');
59  $sysconfig = $GLOBALS['SysConf']['SYSCONFIG'];
60  $this->configuration = [
61  'url' => trim($sysconfig['SwhURL']),
62  'uri' => trim($sysconfig['SwhBaseURL']),
63  'content' => trim($sysconfig['SwhContent']),
64  'maxtime' => intval($sysconfig['SwhSleep']),
65  'token' => trim($sysconfig['SwhToken'])
66  ];
67  }
68 
73  public function handle(Request $request)
74  {
75  $upload = intval($request->get("upload"));
76  $groupId = Auth::getGroupId();
77  if (!$this->uploadDao->isAccessible($upload, $groupId)) {
78  throw new \Exception("Permission Denied");
79  }
80 
81  $item = intval($request->get("item"));
82  $this->uploadtree_tablename = $this->uploadDao->getUploadtreeTableName($upload);
83  $itemTreeBounds = $this->uploadDao->getItemTreeBounds($item, $this->uploadtree_tablename);
84  $left = $itemTreeBounds->getLeft();
85  if (empty($left)) {
86  throw new \Exception("Job unpack/adj2nest hasn't completed.");
87  }
88 
89  $scannerAgents = array_keys($this->agentNames);
90  $scanJobProxy = new ScanJobProxy($this->agentDao, $upload);
91  $scanJobProxy->createAgentStatus($scannerAgents);
92  $selectedAgentId = intval($request->get('agentId'));
93  $tag_pk = intval($request->get('tag'));
94 
95  $UniqueTagArray = array();
96  $this->licenseProjector = new LicenseMap($this->getObject('db.manager'),$groupId,LicenseMap::CONCLUSION,true);
97  $vars = $this->createFileListing($tag_pk, $itemTreeBounds, $UniqueTagArray, $selectedAgentId, $groupId, $scanJobProxy);
98 
99  return new JsonResponse(array(
100  'sEcho' => intval($request->get('sEcho')),
101  'aaData' => $vars['fileData'],
102  'iTotalRecords' => $vars['iTotalDisplayRecords'],
103  'iTotalDisplayRecords' => $vars['iTotalDisplayRecords']
104  ));
105  }
106 
116  private function createFileListing($tagId, ItemTreeBounds $itemTreeBounds, &$UniqueTagArray, $selectedAgentId, $groupId, $scanJobProxy)
117  {
118  if (!empty($selectedAgentId)) {
119  $agentName = $this->agentDao->getAgentName($selectedAgentId);
120  $selectedScanners = array($agentName=>$selectedAgentId);
121  } else {
122  $selectedScanners = $scanJobProxy->getLatestSuccessfulAgentIds();
123  }
124 
126  $uploadId = $itemTreeBounds->getUploadId();
127  $isFlat = isset($_GET['flatten']);
128 
129  if ($isFlat) {
130  $options = array(UploadTreeProxy::OPT_RANGE => $itemTreeBounds);
131  } else {
132  $options = array(UploadTreeProxy::OPT_REALPARENT => $itemTreeBounds->getItemId());
133  }
134 
135  $descendantView = new UploadTreeProxy($uploadId, $options, $itemTreeBounds->getUploadTreeTableName(), 'uberItems');
136 
137  $vars['iTotalDisplayRecords'] = $descendantView->count();
138 
139  $columnNamesInDatabase = array($isFlat?'ufile_name':'lft');
140  $defaultOrder = array(array(0, "asc"));
141  $orderString = $this->getObject('utils.data_tables_utility')->getSortingString($_GET, $columnNamesInDatabase, $defaultOrder);
142 
143  $offset = GetParm('iDisplayStart', PARM_INTEGER);
144  $limit = GetParm('iDisplayLength', PARM_INTEGER);
145  if ($offset) {
146  $orderString .= " OFFSET $offset";
147  }
148  if ($limit) {
149  $orderString .= " LIMIT $limit";
150  }
151 
152  /* Get ALL the items under this Uploadtree_pk */
153  $sql = $descendantView->getDbViewQuery()." $orderString";
154  $dbManager = $this->getObject('db.manager');
155 
156  $dbManager->prepare($stmt=__METHOD__.$orderString,$sql);
157  $res = $dbManager->execute($stmt,$descendantView->getParams());
158  $descendants = $dbManager->fetchAll($res);
159  $dbManager->freeResult($res);
160 
161  /* Filter out Children that don't have tag */
162  if (!empty($tagId)) {
163  TagFilter($descendants, $tagId, $itemTreeBounds->getUploadTreeTableName());
164  }
165  if (empty($descendants)) {
166  $vars['fileData'] = array();
167  return $vars;
168  }
169 
170  if ($isFlat) {
171  $firstChild = reset($descendants);
172  $lastChild = end($descendants);
173  $nameRange = array($firstChild['ufile_name'],$lastChild['ufile_name']);
174  } else {
175  $nameRange = array();
176  }
177 
178  /******* File Listing ************/
179  $pfileLicenses = array();
180  foreach ($selectedScanners as $agentName=>$agentId) {
181  $licensePerPfile = $this->licenseDao->getLicenseIdPerPfileForAgentId($itemTreeBounds, $agentId, $isFlat, $nameRange);
182  foreach ($licensePerPfile as $pfile => $licenseRow) {
183  foreach ($licenseRow as $licId => $row) {
184  $lic = $this->licenseProjector->getProjectedShortname($licId);
185  $pfileLicenses[$pfile][$lic][$agentName] = $row;
186  }
187  }
188  }
189 
190  $baseUri = Traceback_uri().'?mod=sh-agent'.Traceback_parm_keep(array('upload','folder','show'));
191 
192  $tableData = array();
193  $latestSuccessfulAgentIds = $scanJobProxy->getLatestSuccessfulAgentIds();
194  foreach ($descendants as $child) {
195  if (empty($child)) {
196  continue;
197  }
198  $tableData[] = $this->createFileDataRow($child, $uploadId, $selectedAgentId,
199  $baseUri, $UniqueTagArray, $isFlat);
200  }
201 
202  $vars['fileData'] = $tableData;
203  return $vars;
204  }
205 
215  private function createFileDataRow($child, $uploadId, $selectedAgentId, $uri, &$UniqueTagArray, $isFlat)
216  {
217  $fileId = $child['pfile_fk'];
218  $childUploadTreeId = $child['uploadtree_pk'];
219  $linkUri = '';
220  if (!empty($fileId)) {
221  $linkUri = Traceback_uri();
222  $linkUri .= "?mod=view-license&upload=$uploadId&item=$childUploadTreeId";
223  if ($selectedAgentId) {
224  $linkUri .= "&agentId=$selectedAgentId";
225  }
226  }
227 
228  /* Determine link for containers */
229  $isContainer = Iscontainer($child['ufile_mode']);
230  if ($isContainer && !$isFlat) {
231  $uploadtree_pk = $child['uploadtree_pk'];
232  $linkUri = "$uri&item=" . $uploadtree_pk;
233  if ($selectedAgentId) {
234  $linkUri .= "&agentId=$selectedAgentId";
235  }
236  } else if ($isContainer) {
237  $uploadtree_pk = Isartifact($child['ufile_mode']) ? DirGetNonArtifact($childUploadTreeId, $this->uploadtree_tablename) : $childUploadTreeId;
238  $linkUri = "$uri&item=" . $uploadtree_pk;
239  if ($selectedAgentId) {
240  $linkUri .= "&agentId=$selectedAgentId";
241  }
242  }
243 
244  /* Populate the output ($VF) - file list */
245  /* id of each element is its uploadtree_pk */
246  $fileName = htmlspecialchars($child['ufile_name']);
247  if ($isContainer) {
248  $fileName = "<a href='$linkUri'><span style='color: darkblue'> <b>$fileName</b> </span></a>";
249  } else if (! empty($linkUri)) {
250  $fileName = "<a href='$linkUri'>$fileName</a>";
251  }
252 
253  $pfileHash = $this->uploadDao->getUploadHashesFromPfileId($fileId);
254  $shRecord = $this->shDao->getSoftwareHetiageRecord($fileId);
255  $fileListLinks = FileListLinks($uploadId, $childUploadTreeId, 0, $fileId, true, $UniqueTagArray, $this->uploadtree_tablename, !$isFlat);
256 
257  if (! $isContainer) {
258  $text = _("Software Heritage");
259  $shLink = $this->configuration['url'] .
260  $this->configuration['uri'] . strtolower($pfileHash["sha256"]) .
261  $this->configuration['content'];
262  $fileListLinks .= "[<a href='".$shLink."' target=\"_blank\">$text</a>]";
263  }
264  $img = "";
265  if (! $isContainer) {
266  $img = $shRecord["img"];
267  }
268 
269  return [$fileName, $pfileHash["sha256"], $shRecord["license"], $img, $fileListLinks];
270  }
271 }
272 
273 register_plugin(new AjaxSHDetailsBrowser());
char * uploadtree_tablename
upload.uploadtree_tablename
Definition: adj2nest.c:100
createFileListing($tagId, ItemTreeBounds $itemTreeBounds, &$UniqueTagArray, $selectedAgentId, $groupId, $scanJobProxy)
createFileDataRow($child, $uploadId, $selectedAgentId, $uri, &$UniqueTagArray, $isFlat)
handle(Request $request)
Contains the constants and helpers for authentication of user.
Definition: Auth.php:24
Wrapper class for license map.
Definition: LicenseMap.php:19
Isartifact($mode)
Definition: common-dir.php:29
DirGetNonArtifact($UploadtreePk, $uploadtree_tablename='uploadtree')
Given an artifact directory (uploadtree_pk), return the first non-artifact directory (uploadtree_pk).
Definition: common-dir.php:158
Iscontainer($mode)
Definition: common-dir.php:38
FileListLinks($upload_fk, $uploadtree_pk, $napk, $pfile_pk, $Recurse=True, &$UniqueTagArray=array(), $uploadtree_tablename="uploadtree", $wantTags=true)
Get list of links: [View][Info][Download]
Traceback_uri()
Get the URI without query to this location.
Definition: common-parm.php:97
const PARM_INTEGER
Definition: common-parm.php:14
GetParm($parameterName, $parameterType)
This function will retrieve the variables and check data types.
Definition: common-parm.php:46
Traceback_parm_keep($List)
Create a new URI, keeping only these items.
TagFilter(&$UploadtreeRows, $tag_pk, $uploadtree_tablename)
Given a list of uploadtree recs, remove recs that do not have $tag_pk.
char * trim(char *ptext)
Trimming whitespace.
Definition: fossconfig.c:690
#define PERM_READ
Read-only permission.
Definition: libfossology.h:32