I have a web service that rewrites urls in css files so that they can be served via a CDN.
The css files can contain urls to images or fonts.
I currently hav
You can use this:
$pattern = <<<'LOD'
~
(?(DEFINE)
(?
(["']) (?>[^"'\\]++ | \\{2} | \\. | (?!\g{-1})["'] )*+ \g{-1}
)
(? /\* .*? \*/ )
(? (?: https?: | data: ) [^"'\s)}]*+ )
(?
(?> [^u}/"']++ | \g | \g
| \Bu | u(?!rl\s*+\() | /(?!\*)
| \g \g ["']?+
)++
)
(? \G(? url\( \s*+ ["']?+ )
)
\g (*SKIP)(*FAIL) |
\g \g?+ \g \K [./]*+
( [^"'\s)}]*+ ) # url
~xs
LOD;
$result = preg_replace($pattern, 'http://cdn.test.com/fonts/$8', $data);
print_r($result);
test string
$data = <<<'LOD'
@font-face {
font-family: 'FontAwesome';
src: url("fonts/fontawesome-webfont.eot?v=4.0.3");
src: url(fonts/fontawesome-webfont.eot?#iefix&v=4.0.3) format("embedded-opentype"),
/*url("fonts/fontawesome-webfont.woff?v=4.0.3") format("woff"),*/
url("http://domain.com/fonts/fontawesome-webfont.ttf?v=4.0.3") format("truetype"),
url('fonts/fontawesome-webfont.svg?v=4.0.3#fontawesomeregular') format("svg");
font-weight: normal;
font-style: normal;
}
/*
@font-face {
font-family: 'Font1';
src: url("fonts/font1.eot");
} */
@font-face {
font-family: 'Fon\'t2';
src: url("fonts/font2.eot");
}
@font-face {
font-family: 'Font3';
src: url("../fonts/font3.eot");
}
LOD;
For more readability the pattern is divided into named subpatterns. The (?(DEFINE)...)
doesn't match anything, it is only a definition section.
The main trick of this pattern is the use of the \G
anchor that means: start of the string or contiguous to a precedent match. I added a negative lookbehind (? to avoid the first part of this definition.
The
named subpattern is the most important because it allows a match only if @font-face {
is found or immediately after the end of an url (this is the reason why you can see a ["']?+
).
represents all that is not an url section but matches url sections that must be skipped too(urls that begin with "http:", "data:"). The important detail of this subpattern is that it can't match the closing curly bracket of @font-face.
The mission of
is only to match url("
.
\K
resets all the substring that has been matched before from the match result.
([^"'\s)}]*+)
matches the url (the only thing that stay in the match result with the leading ./../
)
Since
and the url subpattern can't match a }
(that is outside quoted or comment parts), you are sure to never match something outside of the @font-face definition, the second consequence is that the pattern always fails after the last url. Thus, at the next attempt the "contiguous branch" will fail until the next @font-face.
The main pattern begins with \g
to skip all content inside comments /*....*/
. \g
refers to the basic subpattern that describes how a comment look like. (*SKIP)
forbids to retry the substring that has been matched before (on his left, by g
), if the pattern fails on his right. (*FAIL)
forces the pattern to fail.
With this trick, comments are skipped and are not a match result (since the pattern fails).
quoted_content:
It's used in
to avoid to match url(
or /*
that are inside quotes.
(["']) # capture group: the opening quote
(?> # atomic group: all possible content between quotes
[^"'\\]++ # all that is not a quote or a backslash
| # OR
\\{2} # two backslashes: (two \ doesn't escape anything)
| # OR
\\. # any escaped character
| # OR
(?!\g{-1})["'] # the other quote (this one that is not in the capture group)
)*+ # repeat zero or more time the atomic group
\g{-1} # backreference to the last capturing group
other_content: all that is not the closing curly bracket, or an url without http:
or data:
(?> # open an atomic group
[^u}/"']++ # all character that are not problematic!
|
\g # string inside quotes
|
\g # string inside comments
|
\Bu # "u" not preceded by a word boundary
|
u(?!rl\s*+\() # "u" not followed by "rl(" (not the start of an url definition)
|
/(?!\*) # "/" not followed by "*" (not the start of a comment)
|
\g # match the url that begins with "http:"
\g ["']?+ # until the possible quote
)++ # repeat the atomic group one or more times
anchor
\G(?
You can improve the main pattern:
After the last url of @font-face, the regex engine attempts to match with the "contiguous branch" of
and match all characters until the }
that makes the pattern fail. Then, on each same characters, the regex engine must try the two branches or
(that will always fail until the }
.
To avoid these useless tries, you can change the main pattern to:
\g (*SKIP)(*FAIL) |
\g \g?+
(?>
\g \K [./]*+ ([^"'\s)}]*+)
|
} (*SKIP)(*FAIL)
)
With this new scenario, the first character after the last url is matched by the "contiguous branch", \g
matches all until the }
, \g
fails immediatly, the }
is matched and (*SKIP)(*FAIL)
make the pattern fail and forbids to retry these characters.