1
|
|
|
<?php |
2
|
|
|
/** |
3
|
|
|
* Retour plugin for Craft CMS 3.x |
4
|
|
|
* |
5
|
|
|
* Retour allows you to intelligently redirect legacy URLs, so that you don't |
6
|
|
|
* lose SEO value when rebuilding & restructuring a website |
7
|
|
|
* |
8
|
|
|
* @link https://nystudio107.com/ |
|
|
|
|
9
|
|
|
* @copyright Copyright (c) 2019 nystudio107 |
|
|
|
|
10
|
|
|
*/ |
|
|
|
|
11
|
|
|
|
12
|
|
|
namespace nystudio107\retour\gql\resolvers; |
13
|
|
|
|
14
|
|
|
use Craft; |
15
|
|
|
use craft\base\Element; |
16
|
|
|
use craft\gql\base\Resolver; |
17
|
|
|
|
18
|
|
|
use craft\helpers\UrlHelper; |
19
|
|
|
use GraphQL\Type\Definition\ResolveInfo; |
20
|
|
|
use nystudio107\retour\Retour; |
21
|
|
|
|
22
|
|
|
/** |
23
|
|
|
* Class RetourResolver |
24
|
|
|
* |
25
|
|
|
* @author nystudio107 |
|
|
|
|
26
|
|
|
* @package Retour |
|
|
|
|
27
|
|
|
* @since 3.1.26 |
|
|
|
|
28
|
|
|
*/ |
|
|
|
|
29
|
|
|
class RetourResolver extends Resolver |
30
|
|
|
{ |
31
|
|
|
/** |
|
|
|
|
32
|
|
|
* @inheritDoc |
33
|
|
|
*/ |
|
|
|
|
34
|
|
|
public static function resolve($source, array $arguments, $context, ResolveInfo $resolveInfo) |
35
|
|
|
{ |
36
|
|
|
// If our source is an Element, extract the URI and siteId from it |
37
|
|
|
if ($source instanceof Element) { |
38
|
|
|
/** Element $source */ |
|
|
|
|
39
|
|
|
$uri = $source->uri; |
40
|
|
|
$siteId = $source->siteId; |
41
|
|
|
} else { |
42
|
|
|
// Otherwise, use the passed in arguments, or defaults |
43
|
|
|
$uri = $arguments['uri'] ?? '/'; |
44
|
|
|
$siteId = $arguments['siteId'] ?? null; |
45
|
|
|
if (isset($arguments['site'])) { |
46
|
|
|
$site = Craft::$app->getSites()->getSiteByHandle($arguments['site']); |
47
|
|
|
if ($site !== null) { |
48
|
|
|
$siteId = $site->id; |
49
|
|
|
} |
50
|
|
|
} |
51
|
|
|
} |
52
|
|
|
$uri = trim($uri === '/' ? '__home__' : $uri); |
53
|
|
|
|
54
|
|
|
$redirect = null; |
55
|
|
|
|
56
|
|
|
// Strip the query string if `alwaysStripQueryString` is set |
57
|
|
|
if (Retour::$settings->alwaysStripQueryString) { |
58
|
|
|
$uri = UrlHelper::stripQueryString($uri); |
59
|
|
|
} |
60
|
|
|
|
61
|
|
|
if (!Retour::$plugin->redirects->excludeUri($uri)) { |
62
|
|
|
$redirect = Retour::$plugin->redirects->findRedirectMatch($uri, $uri, $siteId); |
63
|
|
|
|
64
|
|
|
if ($redirect === null && Craft::$app->getElements()->getElementByUri(trim($uri, '/'), $siteId) === null) { |
65
|
|
|
// Set the `site` virtual field |
66
|
|
|
$redirect['site'] = null; |
67
|
|
|
if (isset($redirect['siteId']) && (int)$redirect['siteId'] !== 0) { |
68
|
|
|
$site = Craft::$app->getSites()->getSiteById((int)$redirect['siteId']); |
69
|
|
|
if ($site !== null) { |
70
|
|
|
$redirect['site'] = $site->handle; |
71
|
|
|
} |
72
|
|
|
} |
73
|
|
|
// Increment the stats |
74
|
|
|
Retour::$plugin->statistics->incrementStatistics($uri, false, $siteId); |
75
|
|
|
} |
76
|
|
|
} |
77
|
|
|
|
78
|
|
|
return $redirect; |
79
|
|
|
} |
80
|
|
|
|
81
|
|
|
/** |
82
|
|
|
* Return all static redirects for a site. |
83
|
|
|
* |
84
|
|
|
* @param $source |
|
|
|
|
85
|
|
|
* @param array $arguments |
|
|
|
|
86
|
|
|
* @param $context |
|
|
|
|
87
|
|
|
* @param ResolveInfo $resolveInfo |
|
|
|
|
88
|
|
|
* @return array |
|
|
|
|
89
|
|
|
* @throws \craft\errors\SiteNotFoundException |
|
|
|
|
90
|
|
|
*/ |
91
|
|
|
public static function resolveAll($source, array $arguments, $context, ResolveInfo $resolveInfo) |
|
|
|
|
92
|
|
|
{ |
93
|
|
|
$siteId = $arguments['siteId'] ?? Craft::$app->getSites()->getCurrentSite()->id; |
94
|
|
|
|
95
|
|
|
$redirects = Retour::$plugin->redirects->getAllStaticRedirects(null, $siteId); |
96
|
|
|
|
97
|
|
|
return $redirects; |
98
|
|
|
} |
99
|
|
|
} |
100
|
|
|
|