• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

Cecilapp / Cecil / 16605406028

29 Jul 2025 07:22PM UTC coverage: 81.792%. Remained the same
16605406028

push

github

ArnaudLigny
Fix base path handling in URL generation

Prepends a leading slash to the base path when constructing URLs to ensure correct URL formatting.

0 of 1 new or added line in 1 file covered. (0.0%)

3140 of 3839 relevant lines covered (81.79%)

0.82 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

84.75
/src/Url.php
1
<?php
2

3
/**
4
 * This file is part of Cecil.
5
 *
6
 * (c) Arnaud Ligny <arnaud@ligny.fr>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11

12
declare(strict_types=1);
13

14
namespace Cecil;
15

16
use Cecil\Assets\Asset;
17
use Cecil\Builder;
18
use Cecil\Collection\Menu\Entry as MenuEntry;
19
use Cecil\Collection\Page\Page;
20
use Cecil\Config;
21
use Cecil\Renderer\Page as PageRenderer;
22
use Cecil\Util;
23
use Cocur\Slugify\Slugify;
24

25
/**
26
 * URL class.
27
 *
28
 * Builds an URL from a Page, a Menu Entry, an Asset or a string.
29
 */
30
class Url
31
{
32
    /** @var Builder */
33
    protected $builder;
34

35
    /** @var Config */
36
    protected $config;
37

38
    /** @var string */
39
    protected $url;
40

41
    /** @var Page Slugifier */
42
    private static $slugifier;
43

44
    /**
45
     * Creates an URL from a Page, a Menu Entry, an Asset or a string.
46
     *
47
     * @param Builder                          $builder
48
     * @param Page|MenuEntry|Asset|string|null $value
49
     * @param array|null                       $options Rendering options, e.g.: ['canonical' => true, 'format' => 'html', 'language' => 'fr']
50
     */
51
    public function __construct(Builder $builder, $value, ?array $options = null)
52
    {
53
        $this->builder = $builder;
1✔
54
        $this->config = $builder->getConfig();
1✔
55
        if (!self::$slugifier instanceof Slugify) {
1✔
56
            self::$slugifier = Slugify::create(['regexp' => Page::SLUGIFY_PATTERN]);
1✔
57
        }
58

59
        // handles options
60
        $canonical = null; // if true prefix url with baseurl config
1✔
61
        $format = null;    // output format
1✔
62
        $language = null;  // force language
1✔
63
        extract(\is_array($options) ? $options : [], EXTR_IF_EXISTS);
1✔
64

65
        // base URL
66
        $base = '';
1✔
67
        // enable canonical URL
68
        if ($this->config->isEnabled('canonicalurl') || $canonical === true) {
1✔
69
            $base = rtrim((string) $this->config->get('baseurl'), '/');
1✔
70
        }
71
        // disable canonical URL by option
72
        if ($canonical === false) {
1✔
73
            $base = '';
1✔
74
        }
75
        // use URL path as base if exists
76
        if ($base == '' && '/' != $basepath = parse_url((string) $this->config->get('baseurl'), PHP_URL_PATH)) {
1✔
77
            if (\is_string($basepath)) {
×
NEW
78
                $base = '/' . trim($basepath, '/');
×
79
            }
80
        }
81

82
        // if value is empty (i.e.: `url()`) returns home URL
83
        if (\is_null($value) || empty($value) || $value == '/') {
1✔
84
            $this->url = '/';
1✔
85

86
            return;
1✔
87
        }
88

89
        switch (true) {
90
            case $value instanceof Page: // $value is a Page
1✔
91
                /** @var Page $value */
92
                if (!$format) {
1✔
93
                    $format = $value->getVariable('output');
1✔
94
                    if (\is_array($value->getVariable('output'))) {
1✔
95
                        $default = array_search('html', $value->getVariable('output')) ?: 0;
1✔
96
                        $format = $value->getVariable('output')[$default];
1✔
97
                    }
98
                    if (!$format) {
1✔
99
                        $format = 'html';
1✔
100
                    }
101
                }
102
                $this->url = $base . '/' . ltrim((new PageRenderer($this->config))->getPublicFilePath($value, $format), '/');
1✔
103
                if ($canonical && $value->hasVariable('canonical') && $value->getVariable('canonical')['url']) { // canonical URL
1✔
104
                    $this->url = $value->getVariable('canonical')['url'];
×
105
                }
106
                break;
1✔
107
            case $value instanceof MenuEntry: // $value is a Menu Entry
1✔
108
                /** @var MenuEntry $value */
109
                if (Util\File::isRemote($value['url'])) {
×
110
                    $this->url = $value['url'];
×
111
                    break;
×
112
                }
113
                $this->url = $base . '/' . ltrim($value['url'], '/');
×
114
                break;
×
115
            case $value instanceof Asset: // $value is an Asset
1✔
116
                /** @var Asset $value */
117
                $this->url = $base . '/' . ltrim($value['path'], '/');
1✔
118
                if ($value->isImageInCdn()) {
1✔
119
                    $this->url = (string) $value;
×
120
                }
121
                break;
1✔
122
            case \is_string($value): // others cases
1✔
123
                /** @var string $value */
124
                // $value is a potential Page ID
125
                $pageId = self::$slugifier->slugify($value);
1✔
126
                // should force language?
127
                $lang = '';
1✔
128
                if ($language !== null && $language != $this->config->getLanguageDefault()) {
1✔
129
                    $pageId = "$language/$pageId";
1✔
130
                    $lang = "$language/";
1✔
131
                }
132
                switch (true) {
133
                    case Util\File::isRemote($value): // $value is an external URL
1✔
134
                        $this->url = $value;
1✔
135
                        break;
1✔
136
                    case $this->builder->getPages()->has($pageId): // $pageId exists in pages collection
1✔
137
                        $this->url = (string) new self($this->builder, $this->builder->getPages()->get($pageId), $options);
1✔
138
                        break;
1✔
139
                    default:
140
                        // remove double language prefix
141
                        if ($lang && Util\Str::startsWith($value, $lang)) {
1✔
142
                            $value = substr($value, \strlen($lang));
1✔
143
                        }
144
                        $this->url = $base . '/' . $lang . ltrim($value, '/');
1✔
145
                }
146
        }
147
    }
148

149
    /**
150
     * If called like a string returns built URL.
151
     */
152
    public function __toString(): string
153
    {
154
        return $this->getUrl();
1✔
155
    }
156

157
    /**
158
     * Returns built URL.
159
     */
160
    public function getUrl(): string
161
    {
162
        return (string) $this->url ?: '/';
1✔
163
    }
164
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc