Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93078056
PhutilRemarkupBlockStorage.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Tue, Nov 26, 01:15
Size
1 KB
Mime Type
text/x-php
Expires
Thu, Nov 28, 01:15 (2 d)
Engine
blob
Format
Raw Data
Handle
22571165
Attached To
rPHU libphutil
PhutilRemarkupBlockStorage.php
View Options
<?php
/**
* Remarkup prevents several classes of text-processing problems by replacing
* tokens in the text as they are marked up. For example, if you write something
* like this:
*
* //D12//
*
* It is processed in several stages. First the "D12" matches and is replaced:
*
* //\11Z//
*
* Now the italics match and are replaced:
*
* \12Z
*
* When processing completes, all the tokens are replaced again in reverse
* order:
*
* <em>\11Z</em>
*
* Then:
*
* <em><a href="http://...">...</a></em>
*
* If we didn't do this, the italics rule could match the "//" in "http://",
* or any other number of processing mistakes could occur, some of which create
* security risks.
*
* This class generates keys, and stores the map of keys to replacement text.
*
* @group markup
*/
final
class
PhutilRemarkupBlockStorage
{
private
$map
=
array
();
private
$index
;
public
function
store
(
$text
)
{
$key
=
"
\1
"
.(++
$this
->
index
).
"Z"
;
$this
->
map
[
$key
]
=
$text
;
return
$key
;
}
public
function
restore
(
$corpus
)
{
if
(
$this
->
map
)
{
$corpus
=
str_replace
(
array_reverse
(
array_keys
(
$this
->
map
)),
array_reverse
(
$this
->
map
),
$corpus
);
$this
->
map
=
array
();
}
return
$corpus
;
}
public
function
overwrite
(
$key
,
$new_text
)
{
$this
->
map
[
$key
]
=
$new_text
;
return
$this
;
}
public
function
getMap
()
{
return
$this
->
map
;
}
public
function
setMap
(
array
$map
)
{
$this
->
map
=
$map
;
return
$this
;
}
}
Event Timeline
Log In to Comment