Skip to content

Commit

Permalink
fix(codeberg): css selector tweak (RSS-Bridge#3832)
Browse files Browse the repository at this point in the history
* fix(codeberg): css selector tweak

* yup
  • Loading branch information
dvikan authored Dec 13, 2023
1 parent 0c4b498 commit 38e9c39
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions bridges/CodebergBridge.php
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,9 @@ class CodebergBridge extends BridgeAbstract

public function collectData()
{
$html = getSimpleHTMLDOM($this->getURI());

$html = defaultLinkTo($html, $this->getURI());
$url = $this->getURI();
$html = getSimpleHTMLDOM($url);
$html = defaultLinkTo($html, $url);

switch ($this->queriedContext) {
case 'Commits':
Expand Down Expand Up @@ -205,30 +205,30 @@ private function extractCommits($html)
*/
private function extractIssues($html)
{
$div = $html->find('div.issue.list', 0);
$issueList = $html->find('div#issue-list', 0);

foreach ($div->find('li.item') as $li) {
foreach ($issueList->find('div.flex-item') as $div) {
$item = [];

$number = trim($li->find('a.index,ml-0.mr-2', 0)->plaintext);
$number = trim($div->find('a.index,ml-0.mr-2', 0)->plaintext);

$item['title'] = $li->find('a.title', 0)->plaintext . ' (' . $number . ')';
$item['uri'] = $li->find('a.title', 0)->href;
$item['title'] = $div->find('a.issue-title', 0)->plaintext . ' (' . $number . ')';
$item['uri'] = $div->find('a.issue-title', 0)->href;

$time = $li->find('relative-time.time-since', 0);
$time = $div->find('relative-time.time-since', 0);
if ($time) {
$item['timestamp'] = $time->datetime;
}

$item['author'] = $li->find('div.desc', 0)->find('a', 1)->plaintext;
//$item['author'] = $li->find('div.desc', 0)->find('a', 1)->plaintext;

// Fetch issue page
$issuePage = getSimpleHTMLDOMCached($item['uri'], 3600);
$issuePage = defaultLinkTo($issuePage, self::URI);

$item['content'] = $issuePage->find('div.timeline-item.comment.first', 0)->find('div.render-content.markup', 0);

foreach ($li->find('a.ui.label') as $label) {
foreach ($div->find('a.ui.label') as $label) {
$item['categories'][] = $label->plaintext;
}

Expand Down

0 comments on commit 38e9c39

Please sign in to comment.