Adding activitieswp initial import for api
This commit is contained in:
parent
8060717313
commit
a256f20b5e
|
|
@ -0,0 +1,150 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Main JSON Rest api for LGCCC Conferences
|
||||
*/
|
||||
|
||||
//Enable error reporting for dev only
|
||||
error_reporting(E_ERROR | E_PARSE);
|
||||
|
||||
//Enable compression/output buffering
|
||||
if(substr_count($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip')) ob_start("ob_gzhandler"); else ob_start();
|
||||
|
||||
//Set required response headers
|
||||
header("Access-Control-Allow-Origin: *");
|
||||
header('Access-Control-Allow-Credentials: true');
|
||||
header('Access-Control-Max-Age: 86400'); // cache for 1 day
|
||||
|
||||
// Access-Control headers are received during OPTIONS requests
|
||||
if ($_SERVER['REQUEST_METHOD'] == 'OPTIONS') {
|
||||
if (isset($_SERVER['HTTP_ACCESS_CONTROL_REQUEST_METHOD']))
|
||||
header("Access-Control-Allow-Methods: GET, POST, PUT, DELETE, OPTIONS");
|
||||
if (isset($_SERVER['HTTP_ACCESS_CONTROL_REQUEST_HEADERS']))
|
||||
header("Access-Control-Allow-Headers: {$_SERVER['HTTP_ACCESS_CONTROL_REQUEST_HEADERS']}");
|
||||
}
|
||||
|
||||
//Set JSON response format for header
|
||||
header("Content-Type: application/json; charset=UTF-8");
|
||||
|
||||
//Include required files
|
||||
include_once( '../inc/db.php' );
|
||||
include_once( '../inc/galeria.php' );
|
||||
include_once( '../inc/helpers.php' );
|
||||
|
||||
if($_REQUEST){
|
||||
$func = ($_REQUEST['f']!=''?$_REQUEST['f']:'list');
|
||||
$id = $_REQUEST['id'];
|
||||
}
|
||||
|
||||
switch ( $func ){
|
||||
case("detail"):
|
||||
gallery_detail($id);
|
||||
break;
|
||||
case("list"):
|
||||
default:
|
||||
gallery_list();
|
||||
break;
|
||||
}
|
||||
|
||||
function gallery_detail($id){
|
||||
$images=[];
|
||||
$image_ids = [];
|
||||
$database = new Database();
|
||||
$db = $database->getConnection();
|
||||
|
||||
$galeria = new Galeria($db);
|
||||
|
||||
$stmt = $galeria->gallery_images($id);
|
||||
|
||||
$num = $stmt->rowCount();
|
||||
|
||||
if($num>0){
|
||||
while ($row = $stmt->fetch(PDO::FETCH_ASSOC)){
|
||||
extract($row);
|
||||
|
||||
if($imagenes){
|
||||
$ilist = unserialize($imagenes);
|
||||
foreach($ilist as $i){
|
||||
array_push($image_ids,$i);
|
||||
}
|
||||
}
|
||||
if($sin_recortar){
|
||||
$slist = unserialize($sin_recortar);
|
||||
foreach($slist as $i){
|
||||
array_push($image_ids,$i);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
//Get all images from image_ids array
|
||||
foreach($image_ids as $image){
|
||||
$stmt = $galeria->image($image);
|
||||
$num = $stmt->rowCount();
|
||||
if($num>0){
|
||||
while ($row = $stmt->fetch(PDO::FETCH_ASSOC)){
|
||||
extract($row);
|
||||
array_push($images,unserialize($imagedata));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
$data = array(
|
||||
'count' => count($images),
|
||||
'result' => array (
|
||||
'images' => $images
|
||||
)
|
||||
);
|
||||
|
||||
send_response( $data );
|
||||
}
|
||||
|
||||
function gallery_list(){
|
||||
$database = new Database();
|
||||
$db = $database->getConnection();
|
||||
|
||||
$galeria = new Galeria($db);
|
||||
|
||||
$stmt = $galeria->gallery_list();
|
||||
|
||||
$num = $stmt->rowCount();
|
||||
|
||||
if($num>0){
|
||||
$galleries_arr=array();
|
||||
|
||||
while ($row = $stmt->fetch(PDO::FETCH_ASSOC)){
|
||||
extract($row);
|
||||
|
||||
$response_item=array(
|
||||
"title" => $post_title,
|
||||
"id" => $ID,
|
||||
"date" => $post_date,
|
||||
"thumbnail" => $thumbnail
|
||||
);
|
||||
|
||||
array_push($galleries_arr, $response_item);
|
||||
}
|
||||
}
|
||||
|
||||
$data = array(
|
||||
'count' => count($galleries_arr),
|
||||
'result' => array (
|
||||
'galleries' => $galleries_arr
|
||||
)
|
||||
);
|
||||
|
||||
send_response( $data );
|
||||
|
||||
}
|
||||
|
||||
function send_response( $data ){
|
||||
// set response code - 200 OK
|
||||
header('Content-Type: application/json; charset=utf-8');
|
||||
|
||||
http_response_code(200);
|
||||
|
||||
echo json_encode(
|
||||
$data, JSON_UNESCAPED_UNICODE
|
||||
);
|
||||
}
|
||||
|
|
@ -0,0 +1,649 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Main actividad class to handle all functions for actividades interaction for the API.
|
||||
*
|
||||
* This class uses the db.php files connection in PDO style and only returns SQL statements.
|
||||
*
|
||||
* @author XFATBoY (xfatboy@carpa.com)
|
||||
* @since v1
|
||||
*/
|
||||
class Actividad{
|
||||
|
||||
private $conn;
|
||||
private $table_name = "wp_posts";
|
||||
|
||||
public $id;
|
||||
public $name;
|
||||
public $description;
|
||||
public $price;
|
||||
public $category_id;
|
||||
public $category_name;
|
||||
public $created;
|
||||
|
||||
/**
|
||||
* Main constructor
|
||||
*
|
||||
* Initializes with the db
|
||||
*/
|
||||
public function __construct($db){
|
||||
$this->conn = $db;
|
||||
}
|
||||
|
||||
/**
|
||||
* Helper function to get all blogs and their languages
|
||||
*/
|
||||
function get_blog_by_locale($locale){
|
||||
$r = '';
|
||||
switch($locale){
|
||||
case "fr_FR":
|
||||
case "fr":
|
||||
$r = "wp_4_";
|
||||
break;
|
||||
case "en":
|
||||
case "en_US":
|
||||
$r = "wp_2_";
|
||||
break;
|
||||
case "pt":
|
||||
case "pt-br":
|
||||
case "pt_br":
|
||||
case "pt_BR":
|
||||
$r = "wp_3_";
|
||||
break;
|
||||
case "es":
|
||||
case "es_ES":
|
||||
default:
|
||||
$r = "wp_";
|
||||
break;
|
||||
}
|
||||
return $r;
|
||||
}
|
||||
|
||||
function translation_slug( $locale, $id ){
|
||||
$sql = "SELECT
|
||||
P.post_name as slug
|
||||
FROM wp_posts P
|
||||
WHERE P.ID = $id";
|
||||
return $this->execute_sql( $sql );
|
||||
}
|
||||
|
||||
|
||||
function translation_list( $year, $month, $last_update, $text, $locale, $termid="ultimas", $all=false, $history=false, $limit=16 ){ //Default last updated
|
||||
//Check locale and change accordingly to the right DB prefix for that locale
|
||||
$sql = "SELECT
|
||||
P.ID,
|
||||
(SELECT
|
||||
tt2.description AS translationmeta
|
||||
FROM wp_posts P2
|
||||
LEFT JOIN wp_term_relationships tr ON tr.object_id = P2.ID
|
||||
LEFT JOIN wp_term_relationships tr2 ON tr2.object_id = P2.ID
|
||||
LEFT JOIN wp_term_taxonomy tt ON tr.term_taxonomy_id = tt.term_taxonomy_id AND tt.taxonomy = 'language'
|
||||
INNER JOIN wp_term_taxonomy tt2 ON tr2.term_taxonomy_id = tt2.term_taxonomy_id AND tt2.taxonomy = 'post_translations'
|
||||
LEFT JOIN wp_terms t ON t.term_id = tr.term_taxonomy_id
|
||||
WHERE P2.ID=P.ID AND t.slug = '$locale') AS translationmeta,
|
||||
P.post_title AS title,
|
||||
P.post_date AS date,
|
||||
P.post_modified AS modified,
|
||||
P.post_name AS slug,
|
||||
WEEKDAY(P.post_date) AS dia,
|
||||
PMM.meta_value AS mensaje_id,
|
||||
PMA.meta_value AS mensaje_json
|
||||
FROM wp_posts P
|
||||
LEFT JOIN wp_postmeta PMA ON PMA.post_id = P.ID AND PMA.meta_key = 'mensaje_json'
|
||||
LEFT JOIN wp_postmeta PMM ON PMM.post_id = P.ID AND PMM.meta_key = 'mensaje'
|
||||
INNER JOIN wp_terms T ON T.slug = '$locale'
|
||||
INNER JOIN wp_term_relationships TR ON TR.object_id = P.ID AND TR.term_taxonomy_id = T.term_id
|
||||
WHERE P.post_status = 'publish'
|
||||
AND P.post_type = 'actividades'";
|
||||
if($history){
|
||||
$sql .= "
|
||||
AND PMM.meta_value IS NOT NULL
|
||||
AND PMM.meta_value != ''
|
||||
AND PMA.meta_value IS NOT NULL
|
||||
AND PMA.meta_value != ''";
|
||||
}
|
||||
|
||||
if($year!=''){
|
||||
$sql .= " AND YEAR(P.post_date) = '$year'";
|
||||
if($month!=''){
|
||||
$sql .= " AND MONTH(P.post_date) = '$month'";
|
||||
}
|
||||
if($last_update!=''){
|
||||
$sql .= " AND UNIX_TIMESTAMP(P.post_modified) > ". $last_update;
|
||||
}
|
||||
$sql .= " ORDER BY P.post_date DESC";
|
||||
} else {
|
||||
$sql .= " ORDER BY P.post_date DESC";
|
||||
if(!$all){
|
||||
if(!$limit){
|
||||
$sql .= " LIMIT 16";
|
||||
} else {
|
||||
$sql .= " LIMIT " . $limit;
|
||||
}
|
||||
}
|
||||
}
|
||||
return $this->execute_sql( $sql );
|
||||
}
|
||||
|
||||
function activity_meta($id){
|
||||
$sql = "SELECT
|
||||
PML.meta_value AS lugar,
|
||||
PMC.meta_value AS city,
|
||||
PMS.meta_value AS state,
|
||||
PMCO.meta_value AS country,
|
||||
PMT2.meta_value AS thumbnail,
|
||||
PMN.meta_value AS numero_de_estudio_biblico,
|
||||
PMA.meta_value AS actividad,
|
||||
PMG.meta_value AS gallery,
|
||||
PMY.meta_value AS youtube,
|
||||
#PMU.meta_value AS url_del_mensaje,
|
||||
PMI.meta_value AS mensaje,
|
||||
PMJ.meta_value AS mensaje_json,
|
||||
PMR.meta_value AS 'related_content',
|
||||
PMRC.meta_value AS 'related_content_count',
|
||||
PMCK.meta_value AS 'revisado'
|
||||
FROM wp_posts P
|
||||
LEFT JOIN wp_postmeta PML ON P.ID = PML.post_id AND PML.meta_key = 'lugar'
|
||||
LEFT JOIN wp_postmeta PMC ON P.ID = PMC.post_id AND PMC.meta_key = 'city'
|
||||
LEFT JOIN wp_postmeta PMS ON P.ID = PMS.post_id AND PMS.meta_key = 'state'
|
||||
LEFT JOIN wp_postmeta PMCO ON P.ID = PMCO.post_id AND PMCO.meta_key = 'country'
|
||||
LEFT JOIN wp_postmeta PMA ON P.ID = PMA.post_id AND PMA.meta_key = 'actividad'
|
||||
LEFT JOIN wp_postmeta PMN ON P.ID = PMN.post_id AND PMN.meta_key = 'numero_de_estudio_biblico'
|
||||
LEFT JOIN wp_postmeta PMG ON P.ID = PMG.post_id AND PMG.meta_key = 'gallery'
|
||||
LEFT JOIN wp_postmeta PMY ON P.ID = PMY.post_id AND PMY.meta_key = 'youtube'
|
||||
#LEFT JOIN wp_postmeta PMU ON P.ID = PMU.post_id AND PMU.meta_key = 'url_del_mensaje'
|
||||
LEFT JOIN wp_postmeta PMI ON P.ID = PMI.post_id AND PMI.meta_key = 'mensaje'
|
||||
LEFT JOIN wp_postmeta PMJ ON P.ID = PMJ.post_id AND PMJ.meta_key = 'mensaje_json'
|
||||
LEFT JOIN wp_postmeta PMT ON P.ID = PMT.post_id AND PMT.meta_key = '_thumbnail_id'
|
||||
LEFT JOIN wp_postmeta PMT2 ON PMT.meta_value = PMT2.post_id AND PMT2.meta_key = '_wp_attached_file'
|
||||
LEFT JOIN wp_postmeta PMR ON P.ID = PMR.post_id AND PMR.meta_key = 'usar_contenido_relacionado'
|
||||
LEFT JOIN wp_postmeta PMRC ON P.ID = PMRC.post_id AND PMRC.meta_key = 'contenido_relacionado'
|
||||
LEFT JOIN wp_postmeta PMCK ON P.ID = PMCK.post_id AND PMCK.meta_key = 'revisado'
|
||||
WHERE P.post_type = 'actividades'
|
||||
AND P.post_status = 'publish'
|
||||
AND P.ID = ".$id;
|
||||
$data = $this->execute_sql( $sql );
|
||||
$response = $data->fetch(PDO::FETCH_ASSOC);
|
||||
return $response;
|
||||
}
|
||||
|
||||
/**
|
||||
* List function
|
||||
*
|
||||
* Displays the list of messages with it's pertinent variables
|
||||
*
|
||||
*/
|
||||
function activities_list( $year, $month, $last_update, $text, $locale ){
|
||||
$sql = "SELECT
|
||||
P.ID,
|
||||
(SELECT
|
||||
tt2.description AS translationmeta
|
||||
FROM wp_posts P2
|
||||
LEFT JOIN wp_term_relationships tr ON tr.object_id = P2.ID
|
||||
LEFT JOIN wp_term_relationships tr2 ON tr2.object_id = P2.ID
|
||||
LEFT JOIN wp_term_taxonomy tt ON tr.term_taxonomy_id = tt.term_taxonomy_id AND tt.taxonomy = 'language'
|
||||
INNER JOIN wp_term_taxonomy tt2 ON tr2.term_taxonomy_id = tt2.term_taxonomy_id AND tt2.taxonomy = 'post_translations'
|
||||
LEFT JOIN wp_terms t ON t.term_id = tr.term_taxonomy_id
|
||||
WHERE P2.ID='$id' AND t.slug = '$locale') AS translationmeta,
|
||||
P.post_title AS title,
|
||||
P.post_date AS creation_date,
|
||||
P.post_modified as last_updated,";
|
||||
if($text){
|
||||
$sql .= "P.post_content as content,";
|
||||
}
|
||||
$sql .= "LENGTH(P.post_content) as bodylength,
|
||||
IFNULL(NULLIF(TIME_TO_SEC(MD.duration), '' ), 0) AS duration,
|
||||
MD.date,
|
||||
MD.activity AS no_activity,
|
||||
MD.city,
|
||||
MD.country,
|
||||
MD.state,
|
||||
PMA.meta_value AS thumbnail,
|
||||
PMAS.meta_value AS meta,
|
||||
#O.option_value AS translationmeta,
|
||||
P.post_name as slug
|
||||
FROM wp_posts P
|
||||
LEFT JOIN wp_messagedata MD ON P.id = MD.post_id
|
||||
LEFT JOIN wp_postmeta PM ON PM.post_id = P.ID AND PM.meta_key = '_thumbnail_id'
|
||||
LEFT JOIN wp_postmeta PMA ON PM.meta_value = PMA.post_id AND PMA.meta_key = '_wp_attached_file'
|
||||
LEFT JOIN wp_postmeta PMAS ON PM.meta_value = PMAS.post_id AND PMAS.meta_key = '_wp_attachment_metadata'
|
||||
#LEFT JOIN wp_options O ON O.option_name = CONCAT('msls_',P.ID)
|
||||
WHERE P.post_type = 'actividades'
|
||||
AND P.post_status = 'publish'";
|
||||
if($year!=''){
|
||||
$sql .= " AND YEAR(MD.date) = '$year'";
|
||||
}
|
||||
if($month!=''){
|
||||
$sql .= " AND MONTH(MD.date) = '$month'";
|
||||
}
|
||||
if($last_update!=''){
|
||||
$sql .= " AND UNIX_TIMESTAMP(P.post_modified) > ". $last_update;
|
||||
}
|
||||
$sql .= " ORDER BY P.post_date DESC";
|
||||
return $this->execute_sql( $sql );
|
||||
}
|
||||
|
||||
/**
|
||||
* Summary function
|
||||
*/
|
||||
function summary($id,$locale){
|
||||
|
||||
$sql = "SELECT
|
||||
P.ID,
|
||||
P.post_title AS title,
|
||||
P.post_date AS creation_date,
|
||||
P.post_name AS slug,
|
||||
P.post_modified AS last_updated,
|
||||
PMA.meta_value AS activity,
|
||||
PML.meta_value AS lugar,
|
||||
PMC.meta_value AS city,
|
||||
PMS.meta_value AS state,
|
||||
PMCO.meta_value AS country,
|
||||
PMN.meta_value AS bible_study
|
||||
FROM wp_posts P
|
||||
LEFT JOIN wp_postmeta PMA ON PMA.post_id = P.ID AND PMA.meta_key = 'actividad'
|
||||
LEFT JOIN wp_postmeta PML ON PML.post_id = P.ID AND PML.meta_key = 'lugar'
|
||||
LEFT JOIN wp_postmeta PMC ON PMC.post_id = P.ID AND PMC.meta_key = 'city'
|
||||
LEFT JOIN wp_postmeta PMS ON PMS.post_id = P.ID AND PMS.meta_key = 'state'
|
||||
LEFT JOIN wp_postmeta PMCO ON PMCO.post_id = P.ID AND PMCO.meta_key = 'country'
|
||||
LEFT JOIN wp_postmeta PMN ON PMN.post_id = P.ID AND PMN.meta_key = 'numero_de_estudio_biblico'
|
||||
LEFT JOIN wp_postmeta PMPID ON PMPID.meta_key = 'mensaje' AND PMPID.meta_value = $id
|
||||
WHERE P.ID = PMPID.post_id
|
||||
AND P.post_status = 'publish'
|
||||
AND P.post_type = 'actividades'";
|
||||
return $this->execute_sql( $sql );
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Detail function
|
||||
*
|
||||
* Given an ID returns the message with all details
|
||||
*
|
||||
* @param id Int id of the message whose details want to be found.
|
||||
*/
|
||||
function detail($id,$locale){
|
||||
|
||||
$sql = "SELECT
|
||||
P.ID,
|
||||
(SELECT
|
||||
tt2.description AS translationmeta
|
||||
FROM wp_posts P2
|
||||
LEFT JOIN wp_term_relationships tr ON tr.object_id = P2.ID
|
||||
LEFT JOIN wp_term_relationships tr2 ON tr2.object_id = P2.ID
|
||||
LEFT JOIN wp_term_taxonomy tt ON tr.term_taxonomy_id = tt.term_taxonomy_id AND tt.taxonomy = 'language'
|
||||
INNER JOIN wp_term_taxonomy tt2 ON tr2.term_taxonomy_id = tt2.term_taxonomy_id AND tt2.taxonomy = 'post_translations'
|
||||
LEFT JOIN wp_terms t ON t.term_id = tr.term_taxonomy_id
|
||||
WHERE P2.ID='$id' AND t.slug = '$locale') AS translationmeta,
|
||||
P.post_title AS title,
|
||||
P.post_content AS content,
|
||||
P.post_date AS creation_date,
|
||||
PMA.meta_value AS mensaje,
|
||||
P.post_name AS slug,
|
||||
P.post_modified AS last_updated
|
||||
FROM wp_posts P
|
||||
LEFT JOIN wp_postmeta PMA ON PMA.post_id = P.ID AND PMA.meta_key = 'mensaje'
|
||||
WHERE P.ID = '$id' LIMIT 1";
|
||||
return $this->execute_sql( $sql );
|
||||
}
|
||||
|
||||
/**
|
||||
* Slug function
|
||||
*
|
||||
* Given a slug, returns the message with all details
|
||||
*
|
||||
* @param slug String Slug of the message whose details want to be found
|
||||
*/
|
||||
function detailBySlug($slug,$locale){
|
||||
//Check locale and change accordingly to the right DB prefix for that locale
|
||||
$prefix = $this->get_blog_by_locale( $locale );
|
||||
|
||||
$sql = "SELECT
|
||||
P.ID,
|
||||
(SELECT
|
||||
tt2.description AS translationmeta
|
||||
FROM wp_posts P2
|
||||
LEFT JOIN wp_term_relationships tr ON tr.object_id = P2.ID
|
||||
LEFT JOIN wp_term_relationships tr2 ON tr2.object_id = P2.ID
|
||||
LEFT JOIN wp_term_taxonomy tt ON tr.term_taxonomy_id = tt.term_taxonomy_id AND tt.taxonomy = 'language'
|
||||
INNER JOIN wp_term_taxonomy tt2 ON tr2.term_taxonomy_id = tt2.term_taxonomy_id AND tt2.taxonomy = 'post_translations'
|
||||
LEFT JOIN wp_terms t ON t.term_id = tr.term_taxonomy_id
|
||||
WHERE P2.post_name='$slug' AND t.slug = '$locale') AS translationmeta,
|
||||
P.post_title AS title,
|
||||
P.post_content AS content,
|
||||
P.post_date AS creation_date,
|
||||
P.post_name AS slug,
|
||||
PMA.meta_value AS mensaje,
|
||||
P.post_modified AS last_updated
|
||||
FROM wp_posts P
|
||||
LEFT JOIN wp_postmeta PMA ON PMA.post_id = P.ID AND PMA.meta_key = 'mensaje'
|
||||
WHERE P.post_name='$slug'";
|
||||
return $this->execute_sql( $sql );
|
||||
}
|
||||
|
||||
/**
|
||||
* Last update function
|
||||
*
|
||||
* Returns the last updated imtestamp for the message passed in via the @id
|
||||
*
|
||||
* @param id Int id for whom the last update should be found
|
||||
*/
|
||||
function last_update($id){
|
||||
$sql = "SELECT
|
||||
P.post_modified AS last_updated
|
||||
FROM wp_posts P
|
||||
WHERE P.ID = '$id'";
|
||||
return $this->execute_sql( $sql );
|
||||
}
|
||||
|
||||
/**
|
||||
* Execute SQL function
|
||||
*
|
||||
* Executes a generic SQL statement and passes back the result.
|
||||
*
|
||||
* @param string sql SQl statement to be executed
|
||||
* @return
|
||||
*/
|
||||
function execute_sql( $sql ){
|
||||
$stmt = $this->conn->prepare($sql);
|
||||
$stmt->execute();
|
||||
return $stmt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Relevant conferences function
|
||||
*
|
||||
* Get all relevant conferences and return
|
||||
*/
|
||||
function relevant_conferences(){
|
||||
$sql = "SELECT
|
||||
option_value
|
||||
FROM wp_options
|
||||
where option_name = 'options_conference'";
|
||||
return $this->execute_sql( $sql );
|
||||
}
|
||||
|
||||
function get_post_source($trid){
|
||||
$sql = "SELECT
|
||||
T.element_id AS post_id
|
||||
FROM wp_icl_translations AS T
|
||||
WHERE T.trid = '$trid'
|
||||
AND T.language_code = 'es'";
|
||||
return $this->execute_sql( $sql );
|
||||
}
|
||||
|
||||
function get_post_interventions($id){
|
||||
$sql = "SELECT
|
||||
PM.meta_value
|
||||
FROM wp_postmeta AS PM
|
||||
WHERE PM.post_id = '$id'
|
||||
AND PM.meta_key = 'intervenciones'";
|
||||
return $this->execute_sql( $sql );
|
||||
}
|
||||
|
||||
function get_interventions($id,$count){
|
||||
$interventions = [];
|
||||
|
||||
for($i=0;$i<$count;$i++){
|
||||
$sql = "SELECT
|
||||
PMT.meta_value AS titulo,
|
||||
PMF.meta_value AS fecha,
|
||||
PML.meta_value AS lugar,
|
||||
PMA.meta_value AS autor,
|
||||
PMC.meta_value AS texto
|
||||
FROM wp_postmeta AS PMT
|
||||
LEFT JOIN wp_postmeta AS PMF ON PMF.post_id = '$id' AND PMF.meta_key = 'intervenciones_".$i."_fecha'
|
||||
LEFT JOIN wp_postmeta AS PML ON PML.post_id = '$id' AND PML.meta_key = 'intervenciones_".$i."_lugar'
|
||||
LEFT JOIN wp_postmeta AS PMA ON PMA.post_id = '$id' AND PMA.meta_key = 'intervenciones_".$i."_autor'
|
||||
LEFT JOIN wp_postmeta AS PMC ON PMC.post_id = '$id' AND PMC.meta_key = 'intervenciones_".$i."_texto'
|
||||
WHERE PMT.post_id = '$id'
|
||||
AND PMT.meta_key = 'intervenciones_".$i."_titulo' ";
|
||||
$data = $this->execute_sql( $sql );
|
||||
$response = $data->fetch(PDO::FETCH_ASSOC);
|
||||
//$interventions[$count] = $response;
|
||||
array_push($interventions,$response);
|
||||
}
|
||||
|
||||
return $interventions;
|
||||
}
|
||||
|
||||
function get_related_content($id,$count){
|
||||
$related = [];
|
||||
|
||||
for($i=0;$i<$count;$i++){
|
||||
$sql = "SELECT
|
||||
PM.meta_value AS conference_url
|
||||
FROM wp_postmeta AS PM
|
||||
WHERE PM.post_id = '$id'
|
||||
AND PM.meta_key = 'contenido_relacionado_".$i."_conference_url'";
|
||||
$data = $this->execute_sql( $sql );
|
||||
$response = $data->fetch(PDO::FETCH_ASSOC);
|
||||
array_push($related,$response);
|
||||
}
|
||||
|
||||
return $related;
|
||||
}
|
||||
|
||||
function get_post_language($id){
|
||||
$sql = "SELECT
|
||||
T.language_code,
|
||||
T.trid
|
||||
FROM wp_icl_translations AS T
|
||||
WHERE T.element_id = '$id'
|
||||
AND T.element_type = 'post_message'";
|
||||
return $this->execute_sql( $sql );
|
||||
}
|
||||
|
||||
function get_post_metadata($id){
|
||||
$sql = "SELECT
|
||||
IFNULL(NULLIF(TIME_TO_SEC(MD.duration), '' ), 0) AS duration,
|
||||
MD.country,
|
||||
MD.state,
|
||||
MD.city AS city,
|
||||
MD.activity AS no_activity
|
||||
FROM wp_messagedata AS MD
|
||||
WHERE post_id = '$id'";
|
||||
return $this->execute_sql( $sql );
|
||||
}
|
||||
|
||||
function get_activity_files($id){
|
||||
$sql = "SELECT
|
||||
PMAR.meta_value AS use_files,
|
||||
PMNV.meta_value AS videos,
|
||||
PMNA.meta_value AS audios,
|
||||
PMNT.meta_value AS textos,
|
||||
PMNE.meta_value AS enlaces
|
||||
FROM wp_posts P
|
||||
LEFT JOIN wp_postmeta PMAR ON P.ID = PMAR.post_id AND PMAR.meta_key = 'usar_archivos'
|
||||
LEFT JOIN wp_postmeta PMNV ON P.ID = PMNV.post_id AND PMNV.meta_key = 'videos'
|
||||
LEFT JOIN wp_postmeta PMNA ON P.ID = PMNA.post_id AND PMNA.meta_key = 'audios'
|
||||
LEFT JOIN wp_postmeta PMNT ON P.ID = PMNT.post_id AND PMNT.meta_key = 'textos'
|
||||
LEFT JOIN wp_postmeta PMNE ON P.ID = PMNE.post_id AND PMNE.meta_key = 'enlaces'
|
||||
WHERE P.post_type = 'actividades'
|
||||
AND P.post_status = 'publish'
|
||||
AND P.ID = ".$id;
|
||||
return $this->execute_sql( $sql );
|
||||
}
|
||||
|
||||
function get_files( $id, $type, $qty ){
|
||||
$t = [];
|
||||
for($x=0;$x<$qty;$x++){
|
||||
$fileSql = $this->get_file_sql($id, $type, $x);
|
||||
$data = $this->execute_sql( $fileSql );
|
||||
$response = $data->fetch(PDO::FETCH_ASSOC);
|
||||
array_push( $t, $response );
|
||||
}
|
||||
return $t;
|
||||
}
|
||||
|
||||
function get_file_sql( $id, $type, $idx){
|
||||
if($type == 'enlaces'){
|
||||
$fname = 'enlace';
|
||||
} else {
|
||||
$fname = 'archivo';
|
||||
}
|
||||
$sql = "SELECT
|
||||
PMAT.meta_value as title,
|
||||
PMAD.meta_value as description,
|
||||
PMAF.meta_value as link,
|
||||
PF.guid AS file
|
||||
FROM wp_posts P
|
||||
LEFT JOIN wp_postmeta PMAT ON PMAT.post_id = P.ID AND PMAT.meta_key = '".$type."_".$idx."_titulo'
|
||||
LEFT JOIN wp_postmeta PMAD ON PMAD.post_id = P.ID AND PMAD.meta_key = '".$type."_".$idx."_descripcion'
|
||||
LEFT JOIN wp_postmeta PMAF ON PMAF.post_id = P.ID AND PMAF.meta_key = '".$type."_".$idx."_".$fname."'
|
||||
LEFT JOIN wp_posts PF ON PF.ID = PMAF.meta_value
|
||||
WHERE P.ID = $id";
|
||||
return $sql;
|
||||
}
|
||||
|
||||
function get_post_file($id,$locale){
|
||||
//Check locale and change accordingly to the right DB prefix for that locale
|
||||
$prefix = $this->get_blog_by_locale( $locale );
|
||||
|
||||
$sql = "SELECT
|
||||
P.guid as url
|
||||
FROM ".$prefix."posts P
|
||||
WHERE P.ID = '$id'";
|
||||
return $this->execute_sql( $sql );
|
||||
}
|
||||
|
||||
function title_search($q,$locale){
|
||||
//Check locale and change accordingly to the right DB prefix for that locale
|
||||
$prefix = $this->get_blog_by_locale( $locale );
|
||||
|
||||
$sql = "SELECT
|
||||
P.ID,
|
||||
P.post_title AS title,
|
||||
P.post_date AS creation_date,
|
||||
P.post_modified as last_updated,
|
||||
O.option_value AS translationmeta,
|
||||
P.post_name as slug
|
||||
FROM ".$prefix."posts AS P
|
||||
LEFT JOIN ".$prefix."options O ON O.option_name = CONCAT('msls_',P.ID)
|
||||
WHERE P.post_type = 'actividades'
|
||||
AND P.post_status = 'publish'
|
||||
AND P.post_title LIKE('%$q%')";
|
||||
return $this->execute_sql($sql);
|
||||
|
||||
}
|
||||
|
||||
function content_search($q){
|
||||
$sql = "SELECT
|
||||
P.ID,
|
||||
P.post_title AS title,
|
||||
P.post_date AS creation_date,
|
||||
P.post_modified as last_updated,
|
||||
IFNULL(NULLIF(TIME_TO_SEC(MD.duration), '' ), 0) AS duration,
|
||||
MD.date,
|
||||
MD.activity AS no_activity,
|
||||
MD.city,
|
||||
MD.country,
|
||||
MD.state,
|
||||
PMA.meta_value AS thumbnail,
|
||||
P.post_name as slug,
|
||||
MATCH(P.post_content) AGAINST ('$q' IN NATURAL LANGUAGE MODE) as score,
|
||||
SUBSTRING(P.post_content, LOCATE('$q', P.post_content) - 20, 300 + LENGTH('$q') + 300) as excerpt
|
||||
FROM wp_posts P
|
||||
LEFT JOIN wp_messagedata MD ON P.id = MD.post_id
|
||||
LEFT JOIN wp_postmeta PM ON PM.post_id = P.ID AND PM.meta_key = '_thumbnail_id'
|
||||
LEFT JOIN wp_postmeta PMA ON PM.meta_value = PMA.post_id AND PMA.meta_key = '_wp_attached_file'
|
||||
WHERE P.post_type = 'actividades'
|
||||
AND P.post_status = 'publish'
|
||||
AND MATCH(P.post_content) AGAINST ('$q' IN NATURAL LANGUAGE MODE)
|
||||
ORDER BY score DESC";
|
||||
return $this->execute_sql($sql);
|
||||
}
|
||||
|
||||
function country_summary(){
|
||||
$sql = "SELECT
|
||||
count( P.ID ) as total,
|
||||
MC.country_name as country,
|
||||
MC.country_code as country_code
|
||||
FROM `wp_posts` P
|
||||
INNER JOIN wp_messagedata MD ON MD.post_id = P.ID
|
||||
INNER JOIN wp_messagecountries MC ON MC.country_code = MD.country
|
||||
WHERE `post_status` = 'publish'
|
||||
AND `post_type` = 'actividades'
|
||||
AND MC.language_code = 'es'
|
||||
GROUP BY country_code
|
||||
ORDER BY country;";
|
||||
return $this->execute_sql($sql);
|
||||
}
|
||||
|
||||
function country_list($c){
|
||||
$sql = "SELECT
|
||||
P.ID,
|
||||
P.post_title AS title,
|
||||
P.post_date AS creation_date,
|
||||
P.post_modified as last_updated,
|
||||
LENGTH(P.post_content) as bodylength,
|
||||
IFNULL(NULLIF(TIME_TO_SEC(MD.duration), '' ), 0) AS duration,
|
||||
MD.date,
|
||||
MD.activity AS no_activity,
|
||||
MD.city,
|
||||
MD.country,
|
||||
MD.state,
|
||||
PMA.meta_value AS thumbnail,
|
||||
P.post_name as slug
|
||||
FROM wp_posts P
|
||||
LEFT JOIN wp_messagedata MD ON P.id = MD.post_id
|
||||
LEFT JOIN wp_postmeta PM ON PM.post_id = P.ID AND PM.meta_key = '_thumbnail_id'
|
||||
LEFT JOIN wp_postmeta PMA ON PM.meta_value = PMA.post_id AND PMA.meta_key = '_wp_attached_file'
|
||||
WHERE P.post_type = 'actividades'
|
||||
AND P.post_status = 'publish'
|
||||
AND MD.country = '$c'
|
||||
ORDER BY MD.date DESC";
|
||||
return $this->execute_sql($sql);
|
||||
}
|
||||
|
||||
function year_list( $locale ){
|
||||
$sql = "SELECT
|
||||
COUNT(P.ID) as total,
|
||||
YEAR(P.post_date) as year,
|
||||
MONTH(P.post_date) as month
|
||||
FROM wp_posts P
|
||||
INNER JOIN wp_terms T ON T.slug = '$locale'
|
||||
INNER JOIN wp_term_relationships TR ON TR.object_id = P.ID AND TR.term_taxonomy_id = T.term_id
|
||||
WHERE P.post_type = 'actividades' AND P.post_status = 'publish'
|
||||
GROUP BY YEAR(P.post_date), MONTH(P.post_date)
|
||||
ORDER BY YEAR(P.post_date) DESC, MONTH(P.post_date) DESC;";
|
||||
return $this->execute_sql($sql);
|
||||
}
|
||||
|
||||
function year_list_history( $locale ){
|
||||
$sql = "SELECT
|
||||
COUNT(P.ID) as total,
|
||||
YEAR(P.post_date) as year,
|
||||
MONTH(P.post_date) as month
|
||||
FROM wp_posts P
|
||||
LEFT JOIN wp_postmeta PM ON PM.post_id = P.ID AND PM.meta_key = 'mensaje_json'
|
||||
INNER JOIN wp_terms T ON T.slug = 'es'
|
||||
INNER JOIN wp_term_relationships TR ON TR.object_id = P.ID AND TR.term_taxonomy_id = T.term_id
|
||||
WHERE P.post_type = 'actividades'
|
||||
AND P.post_status = 'publish'
|
||||
AND PM.meta_value IS NOT NULL
|
||||
AND PM.meta_value != ''
|
||||
GROUP BY YEAR(P.post_date), MONTH(P.post_date)
|
||||
ORDER BY YEAR(P.post_date) DESC, MONTH(P.post_date) DESC;";
|
||||
return $this->execute_sql($sql);
|
||||
}
|
||||
|
||||
function lgccctv_list( $locale ){
|
||||
//Check locale and change accordingly to the right DB prefix for that locale
|
||||
$prefix = $this->get_blog_by_locale( $locale );
|
||||
|
||||
$sql = "SELECT
|
||||
P.ID,
|
||||
P.post_title AS title,
|
||||
P.post_date AS creation_date,
|
||||
P.post_modified as last_updated,
|
||||
P.post_name as slug,
|
||||
O.option_value AS translationmeta
|
||||
FROM ".$prefix."posts P
|
||||
LEFT JOIN ".$prefix."options O ON O.option_name = CONCAT('msls_',P.ID)
|
||||
WHERE P.post_type = 'actividades'
|
||||
AND P.post_status = 'publish'";
|
||||
|
||||
return $this->execute_sql( $sql );
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,276 @@
|
|||
<?php
|
||||
/**
|
||||
* Portable PHP password hashing framework.
|
||||
* @package phpass
|
||||
* @since 2.5.0
|
||||
* @version 0.3 / WordPress
|
||||
* @link http://www.openwall.com/phpass/
|
||||
*/
|
||||
|
||||
#
|
||||
# Written by Solar Designer <solar at openwall.com> in 2004-2006 and placed in
|
||||
# the public domain. Revised in subsequent years, still public domain.
|
||||
#
|
||||
# There's absolutely no warranty.
|
||||
#
|
||||
# Please be sure to update the Version line if you edit this file in any way.
|
||||
# It is suggested that you leave the main version number intact, but indicate
|
||||
# your project name (after the slash) and add your own revision information.
|
||||
#
|
||||
# Please do not change the "private" password hashing method implemented in
|
||||
# here, thereby making your hashes incompatible. However, if you must, please
|
||||
# change the hash type identifier (the "$P$") to something different.
|
||||
#
|
||||
# Obviously, since this code is in the public domain, the above are not
|
||||
# requirements (there can be none), but merely suggestions.
|
||||
#
|
||||
|
||||
/**
|
||||
* Portable PHP password hashing framework.
|
||||
*
|
||||
* @package phpass
|
||||
* @version 0.3 / WordPress
|
||||
* @link http://www.openwall.com/phpass/
|
||||
* @since 2.5.0
|
||||
*/
|
||||
class PasswordHash {
|
||||
var $itoa64;
|
||||
var $iteration_count_log2;
|
||||
var $portable_hashes;
|
||||
var $random_state;
|
||||
|
||||
/**
|
||||
* PHP5 constructor.
|
||||
*/
|
||||
function __construct( $iteration_count_log2, $portable_hashes )
|
||||
{
|
||||
$this->itoa64 = './0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';
|
||||
|
||||
if ($iteration_count_log2 < 4 || $iteration_count_log2 > 31)
|
||||
$iteration_count_log2 = 8;
|
||||
$this->iteration_count_log2 = $iteration_count_log2;
|
||||
|
||||
$this->portable_hashes = $portable_hashes;
|
||||
|
||||
$this->random_state = microtime() . uniqid(rand(), TRUE); // removed getmypid() for compatibility reasons
|
||||
}
|
||||
|
||||
/**
|
||||
* PHP4 constructor.
|
||||
*/
|
||||
public function PasswordHash( $iteration_count_log2, $portable_hashes ) {
|
||||
self::__construct( $iteration_count_log2, $portable_hashes );
|
||||
}
|
||||
|
||||
function get_random_bytes($count)
|
||||
{
|
||||
$output = '';
|
||||
if ( @is_readable('/dev/urandom') &&
|
||||
($fh = @fopen('/dev/urandom', 'rb'))) {
|
||||
$output = fread($fh, $count);
|
||||
fclose($fh);
|
||||
}
|
||||
|
||||
if (strlen($output) < $count) {
|
||||
$output = '';
|
||||
for ($i = 0; $i < $count; $i += 16) {
|
||||
$this->random_state =
|
||||
md5(microtime() . $this->random_state);
|
||||
$output .=
|
||||
pack('H*', md5($this->random_state));
|
||||
}
|
||||
$output = substr($output, 0, $count);
|
||||
}
|
||||
|
||||
return $output;
|
||||
}
|
||||
|
||||
function encode64($input, $count)
|
||||
{
|
||||
$output = '';
|
||||
$i = 0;
|
||||
do {
|
||||
$value = ord($input[$i++]);
|
||||
$output .= $this->itoa64[$value & 0x3f];
|
||||
if ($i < $count)
|
||||
$value |= ord($input[$i]) << 8;
|
||||
$output .= $this->itoa64[($value >> 6) & 0x3f];
|
||||
if ($i++ >= $count)
|
||||
break;
|
||||
if ($i < $count)
|
||||
$value |= ord($input[$i]) << 16;
|
||||
$output .= $this->itoa64[($value >> 12) & 0x3f];
|
||||
if ($i++ >= $count)
|
||||
break;
|
||||
$output .= $this->itoa64[($value >> 18) & 0x3f];
|
||||
} while ($i < $count);
|
||||
|
||||
return $output;
|
||||
}
|
||||
|
||||
function gensalt_private($input)
|
||||
{
|
||||
$output = '$P$';
|
||||
$output .= $this->itoa64[min($this->iteration_count_log2 +
|
||||
((PHP_VERSION >= '5') ? 5 : 3), 30)];
|
||||
$output .= $this->encode64($input, 6);
|
||||
|
||||
return $output;
|
||||
}
|
||||
|
||||
function crypt_private($password, $setting)
|
||||
{
|
||||
$output = '*0';
|
||||
if (substr($setting, 0, 2) == $output)
|
||||
$output = '*1';
|
||||
|
||||
$id = substr($setting, 0, 3);
|
||||
# We use "$P$", phpBB3 uses "$H$" for the same thing
|
||||
if ($id != '$P$' && $id != '$H$')
|
||||
return $output;
|
||||
|
||||
$count_log2 = strpos($this->itoa64, $setting[3]);
|
||||
if ($count_log2 < 7 || $count_log2 > 30)
|
||||
return $output;
|
||||
|
||||
$count = 1 << $count_log2;
|
||||
|
||||
$salt = substr($setting, 4, 8);
|
||||
if (strlen($salt) != 8)
|
||||
return $output;
|
||||
|
||||
# We're kind of forced to use MD5 here since it's the only
|
||||
# cryptographic primitive available in all versions of PHP
|
||||
# currently in use. To implement our own low-level crypto
|
||||
# in PHP would result in much worse performance and
|
||||
# consequently in lower iteration counts and hashes that are
|
||||
# quicker to crack (by non-PHP code).
|
||||
if (PHP_VERSION >= '5') {
|
||||
$hash = md5($salt . $password, TRUE);
|
||||
do {
|
||||
$hash = md5($hash . $password, TRUE);
|
||||
} while (--$count);
|
||||
} else {
|
||||
$hash = pack('H*', md5($salt . $password));
|
||||
do {
|
||||
$hash = pack('H*', md5($hash . $password));
|
||||
} while (--$count);
|
||||
}
|
||||
|
||||
$output = substr($setting, 0, 12);
|
||||
$output .= $this->encode64($hash, 16);
|
||||
|
||||
return $output;
|
||||
}
|
||||
|
||||
function gensalt_extended($input)
|
||||
{
|
||||
$count_log2 = min($this->iteration_count_log2 + 8, 24);
|
||||
# This should be odd to not reveal weak DES keys, and the
|
||||
# maximum valid value is (2**24 - 1) which is odd anyway.
|
||||
$count = (1 << $count_log2) - 1;
|
||||
|
||||
$output = '_';
|
||||
$output .= $this->itoa64[$count & 0x3f];
|
||||
$output .= $this->itoa64[($count >> 6) & 0x3f];
|
||||
$output .= $this->itoa64[($count >> 12) & 0x3f];
|
||||
$output .= $this->itoa64[($count >> 18) & 0x3f];
|
||||
|
||||
$output .= $this->encode64($input, 3);
|
||||
|
||||
return $output;
|
||||
}
|
||||
|
||||
function gensalt_blowfish($input)
|
||||
{
|
||||
# This one needs to use a different order of characters and a
|
||||
# different encoding scheme from the one in encode64() above.
|
||||
# We care because the last character in our encoded string will
|
||||
# only represent 2 bits. While two known implementations of
|
||||
# bcrypt will happily accept and correct a salt string which
|
||||
# has the 4 unused bits set to non-zero, we do not want to take
|
||||
# chances and we also do not want to waste an additional byte
|
||||
# of entropy.
|
||||
$itoa64 = './ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
|
||||
|
||||
$output = '$2a$';
|
||||
$output .= chr(ord('0') + $this->iteration_count_log2 / 10);
|
||||
$output .= chr(ord('0') + $this->iteration_count_log2 % 10);
|
||||
$output .= '$';
|
||||
|
||||
$i = 0;
|
||||
do {
|
||||
$c1 = ord($input[$i++]);
|
||||
$output .= $itoa64[$c1 >> 2];
|
||||
$c1 = ($c1 & 0x03) << 4;
|
||||
if ($i >= 16) {
|
||||
$output .= $itoa64[$c1];
|
||||
break;
|
||||
}
|
||||
|
||||
$c2 = ord($input[$i++]);
|
||||
$c1 |= $c2 >> 4;
|
||||
$output .= $itoa64[$c1];
|
||||
$c1 = ($c2 & 0x0f) << 2;
|
||||
|
||||
$c2 = ord($input[$i++]);
|
||||
$c1 |= $c2 >> 6;
|
||||
$output .= $itoa64[$c1];
|
||||
$output .= $itoa64[$c2 & 0x3f];
|
||||
} while (1);
|
||||
|
||||
return $output;
|
||||
}
|
||||
|
||||
function HashPassword($password)
|
||||
{
|
||||
if ( strlen( $password ) > 4096 ) {
|
||||
return '*';
|
||||
}
|
||||
|
||||
$random = '';
|
||||
|
||||
if (CRYPT_BLOWFISH == 1 && !$this->portable_hashes) {
|
||||
$random = $this->get_random_bytes(16);
|
||||
$hash =
|
||||
crypt($password, $this->gensalt_blowfish($random));
|
||||
if (strlen($hash) == 60)
|
||||
return $hash;
|
||||
}
|
||||
|
||||
if (CRYPT_EXT_DES == 1 && !$this->portable_hashes) {
|
||||
if (strlen($random) < 3)
|
||||
$random = $this->get_random_bytes(3);
|
||||
$hash =
|
||||
crypt($password, $this->gensalt_extended($random));
|
||||
if (strlen($hash) == 20)
|
||||
return $hash;
|
||||
}
|
||||
|
||||
if (strlen($random) < 6)
|
||||
$random = $this->get_random_bytes(6);
|
||||
$hash =
|
||||
$this->crypt_private($password,
|
||||
$this->gensalt_private($random));
|
||||
if (strlen($hash) == 34)
|
||||
return $hash;
|
||||
|
||||
# Returning '*' on error is safe here, but would _not_ be safe
|
||||
# in a crypt(3)-like function used _both_ for generating new
|
||||
# hashes and for validating passwords against existing hashes.
|
||||
return '*';
|
||||
}
|
||||
|
||||
function CheckPassword($password, $stored_hash)
|
||||
{
|
||||
if ( strlen( $password ) > 4096 ) {
|
||||
return false;
|
||||
}
|
||||
|
||||
$hash = $this->crypt_private($password, $stored_hash);
|
||||
if ($hash[0] == '*')
|
||||
$hash = crypt($password, $stored_hash);
|
||||
|
||||
return $hash === $stored_hash;
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,449 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Main conferencia class to handle all functions for conferencias interaction for the API.
|
||||
*
|
||||
* This class uses the db.php files connection in PDO style and only returns SQL statements.
|
||||
*
|
||||
* @author XFATBoY (xfatboy@carpa.com)
|
||||
* @since v1
|
||||
*/
|
||||
class Conferencia{
|
||||
|
||||
private $conn;
|
||||
private $table_name = "wp_posts";
|
||||
|
||||
public $id;
|
||||
public $name;
|
||||
public $description;
|
||||
public $price;
|
||||
public $category_id;
|
||||
public $category_name;
|
||||
public $created;
|
||||
|
||||
/**
|
||||
* Main constructor
|
||||
*
|
||||
* Initializes with the db
|
||||
*/
|
||||
public function __construct($db){
|
||||
$this->conn = $db;
|
||||
}
|
||||
|
||||
/**
|
||||
* Helper function to get all blogs and their languages
|
||||
*/
|
||||
function get_blog_by_locale($locale){
|
||||
$r = '';
|
||||
switch($locale){
|
||||
case "fr_FR":
|
||||
case "fr":
|
||||
$r = "wp_4_";
|
||||
break;
|
||||
case "en":
|
||||
case "en_US":
|
||||
$r = "wp_2_";
|
||||
break;
|
||||
case "pt":
|
||||
case "pt-br":
|
||||
case "pt_br":
|
||||
case "pt_BR":
|
||||
$r = "wp_3_";
|
||||
break;
|
||||
case "es":
|
||||
case "es_ES":
|
||||
default:
|
||||
$r = "wp_";
|
||||
break;
|
||||
}
|
||||
return $r;
|
||||
}
|
||||
|
||||
function translation_list( $year, $month, $last_update, $text, $locale, $termid="ultimas" ){ //Default last updated
|
||||
//Check locale and change accordingly to the right DB prefix for that locale
|
||||
$prefix = $this->get_blog_by_locale( $locale );
|
||||
|
||||
$sql = "SELECT
|
||||
P.ID,
|
||||
P.post_title AS title,
|
||||
P.post_date AS creation_date,
|
||||
P.post_modified as last_updated,
|
||||
P.post_name as slug,";
|
||||
if($text){
|
||||
$sql .= "P.post_content as content,";
|
||||
}
|
||||
$sql .= "LENGTH(P.post_content) as bodylength,
|
||||
O.option_value AS translationmeta
|
||||
FROM ".$prefix."posts P
|
||||
LEFT JOIN ".$prefix."options O ON O.option_name = CONCAT('msls_',P.ID)";
|
||||
if($year == '' && $month == ''){
|
||||
$sql .= "
|
||||
INNER JOIN ".$prefix."term_relationships AS tr ON (P.ID = tr.object_id)
|
||||
INNER JOIN ".$prefix."terms AS t ON (t.term_id = tr.term_taxonomy_id)";
|
||||
}
|
||||
$sql .= "
|
||||
WHERE P.post_type = 'conferencias'
|
||||
AND P.post_status = 'publish'";
|
||||
if($year!=''){
|
||||
$sql .= " AND YEAR(P.post_date) = '$year'";
|
||||
if($month!=''){
|
||||
$sql .= " AND MONTH(P.post_date) = '$month'";
|
||||
}
|
||||
if($last_update!=''){
|
||||
$sql .= " AND UNIX_TIMESTAMP(P.post_modified) > ". $last_update;
|
||||
}
|
||||
$sql .= " ORDER BY P.post_date DESC";
|
||||
} else {
|
||||
$sql .= " AND t.slug = '$termid'";
|
||||
$sql .= " ORDER BY P.post_modified DESC";
|
||||
$sql .= " LIMIT 16";
|
||||
}
|
||||
return $this->execute_sql( $sql );
|
||||
}
|
||||
|
||||
function conference_meta($id){
|
||||
$sql = "SELECT
|
||||
IFNULL(NULLIF(TIME_TO_SEC(MD.duration), '' ), 0) AS duration,
|
||||
MD.date,
|
||||
MD.activity AS no_activity,
|
||||
MD.city,
|
||||
MD.country,
|
||||
MD.state,
|
||||
MD.private,
|
||||
PMA.meta_value AS thumbnail,
|
||||
PMAS.meta_value AS meta
|
||||
FROM wp_posts P
|
||||
LEFT JOIN wp_messagedata MD ON P.id = MD.post_id
|
||||
LEFT JOIN wp_postmeta PM ON PM.post_id = P.ID AND PM.meta_key = '_thumbnail_id'
|
||||
LEFT JOIN wp_postmeta PMA ON PM.meta_value = PMA.post_id AND PMA.meta_key = '_wp_attached_file'
|
||||
LEFT JOIN wp_postmeta PMAS ON PM.meta_value = PMAS.post_id AND PMAS.meta_key = '_wp_attachment_metadata'
|
||||
LEFT JOIN wp_options O ON O.option_name = CONCAT('msls_',P.ID)
|
||||
WHERE P.post_type = 'conferencias'
|
||||
AND P.post_status = 'publish'
|
||||
AND P.ID = ".$id;
|
||||
$data = $this->execute_sql( $sql );
|
||||
$response = $data->fetch(PDO::FETCH_ASSOC);
|
||||
return $response;
|
||||
}
|
||||
|
||||
/**
|
||||
* List function
|
||||
*
|
||||
* Displays the list of messages with it's pertinent variables
|
||||
*
|
||||
*/
|
||||
function list( $year, $month, $last_update, $text, $locale ){
|
||||
$sql = "SELECT
|
||||
P.ID,
|
||||
P.post_title AS title,
|
||||
P.post_date AS creation_date,
|
||||
P.post_modified as last_updated,";
|
||||
if($text){
|
||||
$sql .= "P.post_content as content,";
|
||||
}
|
||||
$sql .= "LENGTH(P.post_content) as bodylength,
|
||||
IFNULL(NULLIF(TIME_TO_SEC(MD.duration), '' ), 0) AS duration,
|
||||
MD.date,
|
||||
MD.activity AS no_activity,
|
||||
MD.city,
|
||||
MD.country,
|
||||
MD.state,
|
||||
PMA.meta_value AS thumbnail,
|
||||
PMAS.meta_value AS meta,
|
||||
O.option_value AS translationmeta,
|
||||
P.post_name as slug
|
||||
FROM wp_posts P
|
||||
LEFT JOIN wp_messagedata MD ON P.id = MD.post_id
|
||||
LEFT JOIN wp_postmeta PM ON PM.post_id = P.ID AND PM.meta_key = '_thumbnail_id'
|
||||
LEFT JOIN wp_postmeta PMA ON PM.meta_value = PMA.post_id AND PMA.meta_key = '_wp_attached_file'
|
||||
LEFT JOIN wp_postmeta PMAS ON PM.meta_value = PMAS.post_id AND PMAS.meta_key = '_wp_attachment_metadata'
|
||||
LEFT JOIN wp_options O ON O.option_name = CONCAT('msls_',P.ID)
|
||||
WHERE P.post_type = 'conferencias'
|
||||
AND P.post_status = 'publish'";
|
||||
if($year!=''){
|
||||
$sql .= " AND YEAR(MD.date) = '$year'";
|
||||
}
|
||||
if($month!=''){
|
||||
$sql .= " AND MONTH(MD.date) = '$month'";
|
||||
}
|
||||
if($last_update!=''){
|
||||
$sql .= " AND UNIX_TIMESTAMP(P.post_modified) > ". $last_update;
|
||||
}
|
||||
$sql .= " ORDER BY P.post_date DESC";
|
||||
return $this->execute_sql( $sql );
|
||||
}
|
||||
|
||||
/**
|
||||
* Detail function
|
||||
*
|
||||
* Given an ID returns the message with all details
|
||||
*
|
||||
* @param id Int id of the message whose details want to be found.
|
||||
*/
|
||||
function detail($id,$locale){
|
||||
//Check locale and change accordingly to the right DB prefix for that locale
|
||||
$prefix = $this->get_blog_by_locale( $locale );
|
||||
|
||||
$sql = "SELECT
|
||||
P.ID,
|
||||
P.post_title AS title,
|
||||
P.post_content AS content,
|
||||
P.post_date AS creation_date,
|
||||
P.post_modified AS last_updated,
|
||||
O.option_value AS translationmeta,
|
||||
P.post_name as slug
|
||||
FROM ".$prefix."posts AS P
|
||||
LEFT JOIN ".$prefix."options O ON O.option_name = CONCAT('msls_',P.ID)
|
||||
WHERE P.ID = '$id'";
|
||||
return $this->execute_sql( $sql );
|
||||
}
|
||||
|
||||
/**
|
||||
* Slug function
|
||||
*
|
||||
* Given a slug, returns the message with all details
|
||||
*
|
||||
* @param slug String Slug of the message whose details want to be found
|
||||
*/
|
||||
function detailBySlug($slug,$locale){
|
||||
//Check locale and change accordingly to the right DB prefix for that locale
|
||||
$prefix = $this->get_blog_by_locale( $locale );
|
||||
|
||||
$sql = "SELECT
|
||||
P.ID,
|
||||
P.post_title AS title,
|
||||
P.post_content AS content,
|
||||
P.post_date AS creation_date,
|
||||
P.post_modified AS last_updated,
|
||||
O.option_value AS translationmeta,
|
||||
P.post_name as slug
|
||||
FROM ".$prefix."posts AS P
|
||||
LEFT JOIN ".$prefix."options O ON O.option_name = CONCAT('msls_',P.ID)
|
||||
WHERE P.post_name = '$slug'";
|
||||
return $this->execute_sql( $sql );
|
||||
}
|
||||
|
||||
/**
|
||||
* Last update function
|
||||
*
|
||||
* Returns the last updated imtestamp for the message passed in via the @id
|
||||
*
|
||||
* @param id Int id for whom the last update should be found
|
||||
*/
|
||||
function last_update($id){
|
||||
$sql = "SELECT
|
||||
P.post_modified AS last_updated
|
||||
FROM wp_posts P
|
||||
WHERE P.ID = '$id'";
|
||||
return $this->execute_sql( $sql );
|
||||
}
|
||||
|
||||
/**
|
||||
* Execute SQL function
|
||||
*
|
||||
* Executes a generic SQL statement and passes back the result.
|
||||
*
|
||||
* @param string sql SQl statement to be executed
|
||||
* @return
|
||||
*/
|
||||
function execute_sql( $sql ){
|
||||
$stmt = $this->conn->prepare($sql);
|
||||
$stmt->execute();
|
||||
return $stmt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Relevant conferences function
|
||||
*
|
||||
* Get all relevant conferences and return
|
||||
*/
|
||||
function relevant_conferences(){
|
||||
$sql = "SELECT
|
||||
option_value
|
||||
FROM wp_options
|
||||
where option_name = 'options_conference'";
|
||||
return $this->execute_sql( $sql );
|
||||
}
|
||||
|
||||
function get_post_source($trid){
|
||||
$sql = "SELECT
|
||||
T.element_id AS post_id
|
||||
FROM wp_icl_translations AS T
|
||||
WHERE T.trid = '$trid'
|
||||
AND T.language_code = 'es'";
|
||||
return $this->execute_sql( $sql );
|
||||
}
|
||||
|
||||
function get_post_language($id){
|
||||
$sql = "SELECT
|
||||
T.language_code,
|
||||
T.trid
|
||||
FROM wp_icl_translations AS T
|
||||
WHERE T.element_id = '$id'
|
||||
AND T.element_type = 'post_message'";
|
||||
return $this->execute_sql( $sql );
|
||||
}
|
||||
|
||||
function get_post_metadata($id){
|
||||
$sql = "SELECT
|
||||
IFNULL(NULLIF(TIME_TO_SEC(MD.duration), '' ), 0) AS duration,
|
||||
MD.country,
|
||||
MD.state,
|
||||
MD.city AS city,
|
||||
MD.activity AS no_activity
|
||||
FROM wp_messagedata AS MD
|
||||
WHERE post_id = '$id'";
|
||||
return $this->execute_sql( $sql );
|
||||
}
|
||||
|
||||
function get_post_files($id,$locale){
|
||||
//Check locale and change accordingly to the right DB prefix for that locale
|
||||
$prefix = $this->get_blog_by_locale( $locale );
|
||||
|
||||
$sql = "SELECT
|
||||
MF.youtube,
|
||||
MF.video,
|
||||
MF.audio,
|
||||
MF.pdf,
|
||||
MF.pdf_simple,
|
||||
MF.videofile,
|
||||
MF.audiofile,
|
||||
MF.pdffile,
|
||||
MF.pdfsimplefile
|
||||
FROM ".$prefix."messagefiles as MF
|
||||
WHERE MF.post_id = '$id'";
|
||||
return $this->execute_sql( $sql );
|
||||
}
|
||||
|
||||
function get_post_file($id,$locale){
|
||||
//Check locale and change accordingly to the right DB prefix for that locale
|
||||
$prefix = $this->get_blog_by_locale( $locale );
|
||||
|
||||
$sql = "SELECT
|
||||
P.guid as url
|
||||
FROM ".$prefix."posts P
|
||||
WHERE P.ID = '$id'";
|
||||
return $this->execute_sql( $sql );
|
||||
}
|
||||
|
||||
function title_search($q,$locale){
|
||||
//Check locale and change accordingly to the right DB prefix for that locale
|
||||
$prefix = $this->get_blog_by_locale( $locale );
|
||||
|
||||
$sql = "SELECT
|
||||
P.ID,
|
||||
P.post_title AS title,
|
||||
P.post_date AS creation_date,
|
||||
P.post_modified as last_updated,
|
||||
O.option_value AS translationmeta,
|
||||
P.post_name as slug
|
||||
FROM ".$prefix."posts AS P
|
||||
LEFT JOIN ".$prefix."options O ON O.option_name = CONCAT('msls_',P.ID)
|
||||
WHERE P.post_type = 'conferencias'
|
||||
AND P.post_status = 'publish'
|
||||
AND P.post_title LIKE('%$q%')";
|
||||
return $this->execute_sql($sql);
|
||||
|
||||
}
|
||||
|
||||
function content_search($q){
|
||||
$sql = "SELECT
|
||||
P.ID,
|
||||
P.post_title AS title,
|
||||
P.post_date AS creation_date,
|
||||
P.post_modified as last_updated,
|
||||
IFNULL(NULLIF(TIME_TO_SEC(MD.duration), '' ), 0) AS duration,
|
||||
MD.date,
|
||||
MD.activity AS no_activity,
|
||||
MD.city,
|
||||
MD.country,
|
||||
MD.state,
|
||||
PMA.meta_value AS thumbnail,
|
||||
P.post_name as slug,
|
||||
MATCH(P.post_content) AGAINST ('$q' IN NATURAL LANGUAGE MODE) as score,
|
||||
SUBSTRING(P.post_content, LOCATE('$q', P.post_content) - 20, 300 + LENGTH('$q') + 300) as excerpt
|
||||
FROM wp_posts P
|
||||
LEFT JOIN wp_messagedata MD ON P.id = MD.post_id
|
||||
LEFT JOIN wp_postmeta PM ON PM.post_id = P.ID AND PM.meta_key = '_thumbnail_id'
|
||||
LEFT JOIN wp_postmeta PMA ON PM.meta_value = PMA.post_id AND PMA.meta_key = '_wp_attached_file'
|
||||
WHERE P.post_type = 'conferencias'
|
||||
AND P.post_status = 'publish'
|
||||
AND MATCH(P.post_content) AGAINST ('$q' IN NATURAL LANGUAGE MODE)
|
||||
ORDER BY score DESC";
|
||||
return $this->execute_sql($sql);
|
||||
}
|
||||
|
||||
function country_summary(){
|
||||
$sql = "SELECT
|
||||
count( P.ID ) as total,
|
||||
MC.country_name as country,
|
||||
MC.country_code as country_code
|
||||
FROM `wp_posts` P
|
||||
INNER JOIN wp_messagedata MD ON MD.post_id = P.ID
|
||||
INNER JOIN wp_messagecountries MC ON MC.country_code = MD.country
|
||||
WHERE `post_status` = 'publish'
|
||||
AND `post_type` = 'conferencias'
|
||||
AND MC.language_code = 'es'
|
||||
GROUP BY country_code
|
||||
ORDER BY country;";
|
||||
return $this->execute_sql($sql);
|
||||
}
|
||||
|
||||
function country_list($c){
|
||||
$sql = "SELECT
|
||||
P.ID,
|
||||
P.post_title AS title,
|
||||
P.post_date AS creation_date,
|
||||
P.post_modified as last_updated,
|
||||
LENGTH(P.post_content) as bodylength,
|
||||
IFNULL(NULLIF(TIME_TO_SEC(MD.duration), '' ), 0) AS duration,
|
||||
MD.date,
|
||||
MD.activity AS no_activity,
|
||||
MD.city,
|
||||
MD.country,
|
||||
MD.state,
|
||||
PMA.meta_value AS thumbnail,
|
||||
P.post_name as slug
|
||||
FROM wp_posts P
|
||||
LEFT JOIN wp_messagedata MD ON P.id = MD.post_id
|
||||
LEFT JOIN wp_postmeta PM ON PM.post_id = P.ID AND PM.meta_key = '_thumbnail_id'
|
||||
LEFT JOIN wp_postmeta PMA ON PM.meta_value = PMA.post_id AND PMA.meta_key = '_wp_attached_file'
|
||||
WHERE P.post_type = 'conferencias'
|
||||
AND P.post_status = 'publish'
|
||||
AND MD.country = '$c'
|
||||
ORDER BY MD.date DESC";
|
||||
return $this->execute_sql($sql);
|
||||
}
|
||||
|
||||
function year_list(){
|
||||
$sql = "SELECT
|
||||
count(ID) as total,
|
||||
YEAR(post_date) as year,
|
||||
MONTH(post_date) as month
|
||||
FROM wp_posts
|
||||
WHERE `post_status` = 'publish'
|
||||
AND `post_type` = 'conferencias'
|
||||
GROUP BY YEAR(post_date), MONTH(post_date)
|
||||
ORDER BY YEAR(post_date) DESC, MONTH(post_date) DESC;";
|
||||
return $this->execute_sql($sql);
|
||||
}
|
||||
|
||||
function lgccctv_list( $locale ){
|
||||
//Check locale and change accordingly to the right DB prefix for that locale
|
||||
$prefix = $this->get_blog_by_locale( $locale );
|
||||
|
||||
$sql = "SELECT
|
||||
P.ID,
|
||||
P.post_title AS title,
|
||||
P.post_date AS creation_date,
|
||||
P.post_modified as last_updated,
|
||||
P.post_name as slug,
|
||||
O.option_value AS translationmeta
|
||||
FROM ".$prefix."posts P
|
||||
LEFT JOIN ".$prefix."options O ON O.option_name = CONCAT('msls_',P.ID)
|
||||
WHERE P.post_type = 'conferencias'
|
||||
AND P.post_status = 'publish'";
|
||||
|
||||
return $this->execute_sql( $sql );
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,429 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Main conferencia class to handle all functions for conferencias interaction for the API.
|
||||
*
|
||||
* This class uses the db.php files connection in PDO style and only returns SQL statements.
|
||||
*
|
||||
* @author XFATBoY (xfatboy@carpa.com)
|
||||
* @since v1
|
||||
*/
|
||||
class Conferencia{
|
||||
|
||||
private $conn;
|
||||
private $table_name = "wp_posts";
|
||||
|
||||
public $id;
|
||||
public $name;
|
||||
public $description;
|
||||
public $price;
|
||||
public $category_id;
|
||||
public $category_name;
|
||||
public $created;
|
||||
|
||||
/**
|
||||
* Main constructor
|
||||
*
|
||||
* Initializes with the db
|
||||
*/
|
||||
public function __construct($db){
|
||||
$this->conn = $db;
|
||||
}
|
||||
|
||||
/**
|
||||
* Helper function to get all blogs and their languages
|
||||
*/
|
||||
function get_blog_by_locale($locale){
|
||||
$r = '';
|
||||
switch($locale){
|
||||
case "fr_FR":
|
||||
case "fr":
|
||||
$r = "wp_4_";
|
||||
break;
|
||||
case "en":
|
||||
case "en_US":
|
||||
$r = "wp_2_";
|
||||
break;
|
||||
case "pt":
|
||||
case "pt-br":
|
||||
case "pt_br":
|
||||
case "pt_BR":
|
||||
$r = "wp_3_";
|
||||
break;
|
||||
case "es":
|
||||
case "es_ES":
|
||||
default:
|
||||
$r = "wp_";
|
||||
break;
|
||||
}
|
||||
return $r;
|
||||
}
|
||||
|
||||
function translation_list( $year, $month, $last_update, $text, $locale, $termid="ultimas" ){ //Default last updated
|
||||
//Check locale and change accordingly to the right DB prefix for that locale
|
||||
$prefix = $this->get_blog_by_locale( $locale );
|
||||
|
||||
$sql = "SELECT
|
||||
P.ID,
|
||||
P.post_title AS title,
|
||||
P.post_date AS creation_date,
|
||||
P.post_modified as last_updated,
|
||||
P.post_name as slug,";
|
||||
if($text){
|
||||
$sql .= "P.post_content as content,";
|
||||
}
|
||||
$sql .= "LENGTH(P.post_content) as bodylength,
|
||||
O.option_value AS translationmeta
|
||||
FROM ".$prefix."posts P
|
||||
LEFT JOIN ".$prefix."options O ON O.option_name = CONCAT('msls_',P.ID)";
|
||||
if($year == '' && $month == ''){
|
||||
$sql .= "
|
||||
INNER JOIN ".$prefix."term_relationships AS tr ON (P.ID = tr.object_id)
|
||||
INNER JOIN ".$prefix."terms AS t ON (t.term_id = tr.term_taxonomy_id)";
|
||||
}
|
||||
$sql .= "
|
||||
WHERE P.post_type = 'conferencias'
|
||||
AND P.post_status = 'publish'";
|
||||
if($year!=''){
|
||||
$sql .= " AND YEAR(P.post_date) = '$year'";
|
||||
if($month!=''){
|
||||
$sql .= " AND MONTH(P.post_date) = '$month'";
|
||||
}
|
||||
if($last_update!=''){
|
||||
$sql .= " AND UNIX_TIMESTAMP(P.post_modified) > ". $last_update;
|
||||
}
|
||||
$sql .= " ORDER BY P.post_date DESC";
|
||||
} else {
|
||||
$sql .= " AND t.slug = '$termid'";
|
||||
$sql .= " ORDER BY P.post_modified DESC";
|
||||
$sql .= " LIMIT 16";
|
||||
}
|
||||
return $this->execute_sql( $sql );
|
||||
}
|
||||
|
||||
function conference_meta($id){
|
||||
$sql = "SELECT
|
||||
IFNULL(NULLIF(TIME_TO_SEC(MD.duration), '' ), 0) AS duration,
|
||||
MD.date,
|
||||
MD.activity AS no_activity,
|
||||
MD.city,
|
||||
MD.country,
|
||||
MD.state,
|
||||
PMA.meta_value AS thumbnail,
|
||||
PMAS.meta_value AS meta
|
||||
FROM wp_posts P
|
||||
LEFT JOIN wp_messagedata MD ON P.id = MD.post_id
|
||||
LEFT JOIN wp_postmeta PM ON PM.post_id = P.ID AND PM.meta_key = '_thumbnail_id'
|
||||
LEFT JOIN wp_postmeta PMA ON PM.meta_value = PMA.post_id AND PMA.meta_key = '_wp_attached_file'
|
||||
LEFT JOIN wp_postmeta PMAS ON PM.meta_value = PMAS.post_id AND PMAS.meta_key = '_wp_attachment_metadata'
|
||||
LEFT JOIN wp_options O ON O.option_name = CONCAT('msls_',P.ID)
|
||||
WHERE P.post_type = 'conferencias'
|
||||
AND P.post_status = 'publish'
|
||||
AND P.ID = ".$id;
|
||||
$data = $this->execute_sql( $sql );
|
||||
$response = $data->fetch(PDO::FETCH_ASSOC);
|
||||
return $response;
|
||||
}
|
||||
|
||||
/**
|
||||
* List function
|
||||
*
|
||||
* Displays the list of messages with it's pertinent variables
|
||||
*
|
||||
*/
|
||||
function list( $year, $month, $last_update, $text, $locale ){
|
||||
$sql = "SELECT
|
||||
P.ID,
|
||||
P.post_title AS title,
|
||||
P.post_date AS creation_date,
|
||||
P.post_modified as last_updated,";
|
||||
if($text){
|
||||
$sql .= "P.post_content as content,";
|
||||
}
|
||||
$sql .= "LENGTH(P.post_content) as bodylength,
|
||||
IFNULL(NULLIF(TIME_TO_SEC(MD.duration), '' ), 0) AS duration,
|
||||
MD.date,
|
||||
MD.activity AS no_activity,
|
||||
MD.city,
|
||||
MD.country,
|
||||
MD.state,
|
||||
PMA.meta_value AS thumbnail,
|
||||
PMAS.meta_value AS meta,
|
||||
O.option_value AS translationmeta,
|
||||
P.post_name as slug
|
||||
FROM wp_posts P
|
||||
LEFT JOIN wp_messagedata MD ON P.id = MD.post_id
|
||||
LEFT JOIN wp_postmeta PM ON PM.post_id = P.ID AND PM.meta_key = '_thumbnail_id'
|
||||
LEFT JOIN wp_postmeta PMA ON PM.meta_value = PMA.post_id AND PMA.meta_key = '_wp_attached_file'
|
||||
LEFT JOIN wp_postmeta PMAS ON PM.meta_value = PMAS.post_id AND PMAS.meta_key = '_wp_attachment_metadata'
|
||||
LEFT JOIN wp_options O ON O.option_name = CONCAT('msls_',P.ID)
|
||||
WHERE P.post_type = 'conferencias'
|
||||
AND P.post_status = 'publish'";
|
||||
if($year!=''){
|
||||
$sql .= " AND YEAR(MD.date) = '$year'";
|
||||
}
|
||||
if($month!=''){
|
||||
$sql .= " AND MONTH(MD.date) = '$month'";
|
||||
}
|
||||
if($last_update!=''){
|
||||
$sql .= " AND UNIX_TIMESTAMP(P.post_modified) > ". $last_update;
|
||||
}
|
||||
$sql .= " ORDER BY P.post_date DESC";
|
||||
return $this->execute_sql( $sql );
|
||||
}
|
||||
|
||||
/**
|
||||
* Detail function
|
||||
*
|
||||
* Given an ID returns the message with all details
|
||||
*
|
||||
* @param id Int id of the message whose details want to be found.
|
||||
*/
|
||||
function detail($id,$locale){
|
||||
//Check locale and change accordingly to the right DB prefix for that locale
|
||||
$prefix = $this->get_blog_by_locale( $locale );
|
||||
|
||||
$sql = "SELECT
|
||||
P.ID,
|
||||
P.post_title AS title,
|
||||
P.post_content AS content,
|
||||
P.post_date AS creation_date,
|
||||
P.post_modified AS last_updated,
|
||||
O.option_value AS translationmeta,
|
||||
P.post_name as slug
|
||||
FROM ".$prefix."posts AS P
|
||||
LEFT JOIN ".$prefix."options O ON O.option_name = CONCAT('msls_',P.ID)
|
||||
WHERE P.ID = '$id'";
|
||||
return $this->execute_sql( $sql );
|
||||
}
|
||||
|
||||
/**
|
||||
* Slug function
|
||||
*
|
||||
* Given a slug, returns the message with all details
|
||||
*
|
||||
* @param slug String Slug of the message whose details want to be found
|
||||
*/
|
||||
function detailBySlug($slug,$locale){
|
||||
//Check locale and change accordingly to the right DB prefix for that locale
|
||||
$prefix = $this->get_blog_by_locale( $locale );
|
||||
|
||||
$sql = "SELECT
|
||||
P.ID,
|
||||
P.post_title AS title,
|
||||
P.post_content AS content,
|
||||
P.post_date AS creation_date,
|
||||
P.post_modified AS last_updated,
|
||||
O.option_value AS translationmeta,
|
||||
P.post_name as slug
|
||||
FROM ".$prefix."posts AS P
|
||||
LEFT JOIN ".$prefix."options O ON O.option_name = CONCAT('msls_',P.ID)
|
||||
WHERE P.post_name = '$slug'";
|
||||
return $this->execute_sql( $sql );
|
||||
}
|
||||
|
||||
/**
|
||||
* Last update function
|
||||
*
|
||||
* Returns the last updated imtestamp for the message passed in via the @id
|
||||
*
|
||||
* @param id Int id for whom the last update should be found
|
||||
*/
|
||||
function last_update($id){
|
||||
$sql = "SELECT
|
||||
P.post_modified AS last_updated
|
||||
FROM wp_posts P
|
||||
WHERE P.ID = '$id'";
|
||||
return $this->execute_sql( $sql );
|
||||
}
|
||||
|
||||
/**
|
||||
* Execute SQL function
|
||||
*
|
||||
* Executes a generic SQL statement and passes back the result.
|
||||
*
|
||||
* @param string sql SQl statement to be executed
|
||||
* @return
|
||||
*/
|
||||
function execute_sql( $sql ){
|
||||
$stmt = $this->conn->prepare($sql);
|
||||
$stmt->execute();
|
||||
return $stmt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Relevant conferences function
|
||||
*
|
||||
* Get all relevant conferences and return
|
||||
*/
|
||||
function relevant_conferences(){
|
||||
$sql = "SELECT
|
||||
option_value
|
||||
FROM wp_options
|
||||
where option_name = 'options_conference'";
|
||||
return $this->execute_sql( $sql );
|
||||
}
|
||||
|
||||
function get_post_source($trid){
|
||||
$sql = "SELECT
|
||||
T.element_id AS post_id
|
||||
FROM wp_icl_translations AS T
|
||||
WHERE T.trid = '$trid'
|
||||
AND T.language_code = 'es'";
|
||||
return $this->execute_sql( $sql );
|
||||
}
|
||||
|
||||
function get_post_language($id){
|
||||
$sql = "SELECT
|
||||
T.language_code,
|
||||
T.trid
|
||||
FROM wp_icl_translations AS T
|
||||
WHERE T.element_id = '$id'
|
||||
AND T.element_type = 'post_message'";
|
||||
return $this->execute_sql( $sql );
|
||||
}
|
||||
|
||||
function get_post_metadata($id){
|
||||
$sql = "SELECT
|
||||
IFNULL(NULLIF(TIME_TO_SEC(MD.duration), '' ), 0) AS duration,
|
||||
MD.country,
|
||||
MD.state,
|
||||
MD.city AS city,
|
||||
MD.activity AS no_activity
|
||||
FROM wp_messagedata AS MD
|
||||
WHERE post_id = '$id'";
|
||||
return $this->execute_sql( $sql );
|
||||
}
|
||||
|
||||
function get_post_files($id,$locale){
|
||||
//Check locale and change accordingly to the right DB prefix for that locale
|
||||
$prefix = $this->get_blog_by_locale( $locale );
|
||||
|
||||
$sql = "SELECT
|
||||
MF.youtube,
|
||||
MF.video,
|
||||
MF.audio,
|
||||
MF.pdf,
|
||||
MF.pdf_simple,
|
||||
MF.videofile,
|
||||
MF.audiofile,
|
||||
MF.pdffile,
|
||||
MF.pdfsimplefile
|
||||
FROM ".$prefix."messagefiles as MF
|
||||
WHERE MF.post_id = '$id'";
|
||||
return $this->execute_sql( $sql );
|
||||
}
|
||||
|
||||
function get_post_file($id,$locale){
|
||||
//Check locale and change accordingly to the right DB prefix for that locale
|
||||
$prefix = $this->get_blog_by_locale( $locale );
|
||||
|
||||
$sql = "SELECT
|
||||
P.guid as url
|
||||
FROM ".$prefix."posts P
|
||||
WHERE P.ID = '$id'";
|
||||
return $this->execute_sql( $sql );
|
||||
}
|
||||
|
||||
function title_search($q,$locale){
|
||||
//Check locale and change accordingly to the right DB prefix for that locale
|
||||
$prefix = $this->get_blog_by_locale( $locale );
|
||||
|
||||
$sql = "SELECT
|
||||
P.ID,
|
||||
P.post_title AS title,
|
||||
P.post_date AS creation_date,
|
||||
P.post_modified as last_updated,
|
||||
O.option_value AS translationmeta,
|
||||
P.post_name as slug
|
||||
FROM ".$prefix."posts AS P
|
||||
LEFT JOIN ".$prefix."options O ON O.option_name = CONCAT('msls_',P.ID)
|
||||
WHERE P.post_type = 'conferencias'
|
||||
AND P.post_status = 'publish'
|
||||
AND P.post_title LIKE('%$q%')";
|
||||
return $this->execute_sql($sql);
|
||||
|
||||
}
|
||||
|
||||
function content_search($q){
|
||||
$sql = "SELECT
|
||||
P.ID,
|
||||
P.post_title AS title,
|
||||
P.post_date AS creation_date,
|
||||
P.post_modified as last_updated,
|
||||
IFNULL(NULLIF(TIME_TO_SEC(MD.duration), '' ), 0) AS duration,
|
||||
MD.date,
|
||||
MD.activity AS no_activity,
|
||||
MD.city,
|
||||
MD.country,
|
||||
MD.state,
|
||||
PMA.meta_value AS thumbnail,
|
||||
P.post_name as slug,
|
||||
MATCH(P.post_content) AGAINST ('$q' IN NATURAL LANGUAGE MODE) as score,
|
||||
SUBSTRING(P.post_content, LOCATE('$q', P.post_content) - 20, 300 + LENGTH('$q') + 300) as excerpt
|
||||
FROM wp_posts P
|
||||
LEFT JOIN wp_messagedata MD ON P.id = MD.post_id
|
||||
LEFT JOIN wp_postmeta PM ON PM.post_id = P.ID AND PM.meta_key = '_thumbnail_id'
|
||||
LEFT JOIN wp_postmeta PMA ON PM.meta_value = PMA.post_id AND PMA.meta_key = '_wp_attached_file'
|
||||
WHERE P.post_type = 'conferencias'
|
||||
AND P.post_status = 'publish'
|
||||
AND MATCH(P.post_content) AGAINST ('$q' IN NATURAL LANGUAGE MODE)
|
||||
ORDER BY score DESC";
|
||||
return $this->execute_sql($sql);
|
||||
}
|
||||
|
||||
function country_summary(){
|
||||
$sql = "SELECT
|
||||
count( P.ID ) as total,
|
||||
MC.country_name as country,
|
||||
MC.country_code as country_code
|
||||
FROM `wp_posts` P
|
||||
INNER JOIN wp_messagedata MD ON MD.post_id = P.ID
|
||||
INNER JOIN wp_messagecountries MC ON MC.country_code = MD.country
|
||||
WHERE `post_status` = 'publish'
|
||||
AND `post_type` = 'conferencias'
|
||||
AND MC.language_code = 'es'
|
||||
GROUP BY country_code
|
||||
ORDER BY country;";
|
||||
return $this->execute_sql($sql);
|
||||
}
|
||||
|
||||
function country_list($c){
|
||||
$sql = "SELECT
|
||||
P.ID,
|
||||
P.post_title AS title,
|
||||
P.post_date AS creation_date,
|
||||
P.post_modified as last_updated,
|
||||
LENGTH(P.post_content) as bodylength,
|
||||
IFNULL(NULLIF(TIME_TO_SEC(MD.duration), '' ), 0) AS duration,
|
||||
MD.date,
|
||||
MD.activity AS no_activity,
|
||||
MD.city,
|
||||
MD.country,
|
||||
MD.state,
|
||||
PMA.meta_value AS thumbnail,
|
||||
P.post_name as slug
|
||||
FROM wp_posts P
|
||||
LEFT JOIN wp_messagedata MD ON P.id = MD.post_id
|
||||
LEFT JOIN wp_postmeta PM ON PM.post_id = P.ID AND PM.meta_key = '_thumbnail_id'
|
||||
LEFT JOIN wp_postmeta PMA ON PM.meta_value = PMA.post_id AND PMA.meta_key = '_wp_attached_file'
|
||||
WHERE P.post_type = 'conferencias'
|
||||
AND P.post_status = 'publish'
|
||||
AND MD.country = '$c'
|
||||
ORDER BY MD.date DESC";
|
||||
return $this->execute_sql($sql);
|
||||
}
|
||||
|
||||
function year_list(){
|
||||
$sql = "SELECT
|
||||
count(ID) as total,
|
||||
YEAR(post_date) as year,
|
||||
MONTH(post_date) as month
|
||||
FROM wp_posts
|
||||
WHERE `post_status` = 'publish'
|
||||
AND `post_type` = 'conferencias'
|
||||
GROUP BY YEAR(post_date), MONTH(post_date)
|
||||
ORDER BY YEAR(post_date) DESC, MONTH(post_date) DESC;";
|
||||
return $this->execute_sql($sql);
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,40 @@
|
|||
<?php
|
||||
class Country{
|
||||
|
||||
// database connection and table name
|
||||
private $conn;
|
||||
private $table_name = "wp_messagecountries";
|
||||
|
||||
// object properties
|
||||
public $id;
|
||||
public $name;
|
||||
public $description;
|
||||
public $price;
|
||||
public $category_id;
|
||||
public $category_name;
|
||||
public $created;
|
||||
|
||||
// constructor with $db as database connection
|
||||
public function __construct($db){
|
||||
$this->conn = $db;
|
||||
}
|
||||
|
||||
// read products
|
||||
function read( $lcode = 'es' ){
|
||||
|
||||
$last_update = '';
|
||||
|
||||
$sql = "SELECT
|
||||
country_code,
|
||||
country_name
|
||||
FROM wp_messagecountries m
|
||||
WHERE m.language_code = '$lcode'";
|
||||
|
||||
$stmt = $this->conn->prepare($sql);
|
||||
|
||||
// execute query
|
||||
$stmt->execute();
|
||||
|
||||
return $stmt;
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,30 @@
|
|||
<?php
|
||||
|
||||
class Database{
|
||||
|
||||
// specify your own database credentials
|
||||
private $host = "localhost";
|
||||
private $db_name = "wp3620139";
|
||||
private $username = "root";
|
||||
private $password = "";
|
||||
public $conn;
|
||||
|
||||
// get the database connection
|
||||
public function getConnection(){
|
||||
|
||||
$this->conn = null;
|
||||
|
||||
try{
|
||||
$this->conn = new PDO("mysql:host=" . $this->host . ";dbname=" . $this->db_name, $this->username, $this->password);
|
||||
$this->conn->exec("set names utf8");
|
||||
}catch(PDOException $exception){
|
||||
echo "Connection error: " . $exception->getMessage();
|
||||
}
|
||||
|
||||
return $this->conn;
|
||||
}
|
||||
|
||||
public function closeConnection(){
|
||||
$this -> conn = null;
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
|
|
@ -0,0 +1,178 @@
|
|||
<?php
|
||||
/**
|
||||
* Split an HTML file into smaller html files, retaining the formatting and structure for the individual parts.
|
||||
* What this splitter does is using DOM to try and retain any formatting in the file, including rebuilding the DOM tree for subsequent parts.
|
||||
* Split size is considered max target size. The actual size is the result of an even split across the resulting files.
|
||||
*
|
||||
* License: GNU LGPL.
|
||||
* @version 2.02
|
||||
* @author Grandt
|
||||
*/
|
||||
class EPubChapterSplitter {
|
||||
const VERSION = 2.02;
|
||||
|
||||
private $splitDefaultSize = 250000;
|
||||
|
||||
/**
|
||||
* Set default chapter target size.
|
||||
* Default is 250000 bytes, and minimum is 10240 bytes.
|
||||
*
|
||||
* @param $size
|
||||
* @return void
|
||||
*/
|
||||
function setSplitSize($size) {
|
||||
$this->splitDefaultSize = (int)$size;
|
||||
if ($size < 10240) {
|
||||
$this->splitDefaultSize = 10240; // Making the file smaller than 10k is not a good idea.
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the chapter target size.
|
||||
*
|
||||
* @return $size
|
||||
*/
|
||||
function getSplitSize() {
|
||||
return $this->splitDefaultSize;
|
||||
}
|
||||
|
||||
/**
|
||||
* Split $chapter into multiple parts.
|
||||
*
|
||||
* The search string can either be a regular string or a PHP PECL Regular Expression pattern as defined here: http://www.php.net/manual/en/pcre.pattern.php
|
||||
* If the search string is a regular string, the matching will be for lines in the HTML starting with the string given
|
||||
*
|
||||
* @param String $chapter XHTML file
|
||||
* @param Bool $splitOnSearchString Split on chapter boundaries, Splitting on search strings disables the split size check.
|
||||
* @param String $searchString Chapter string to search for can be fixed text, or a regular expression pattern.
|
||||
*
|
||||
* @return array with 1 or more parts
|
||||
*/
|
||||
function splitChapter($chapter, $splitOnSearchString = false, $searchString = '/^Chapter\\ /i') {
|
||||
$chapterData = array();
|
||||
$isSearchRegexp = $splitOnSearchString && (preg_match('#^(\D|\S|\W).+\1[imsxeADSUXJu]*$#m', $searchString) == 1);
|
||||
if ($splitOnSearchString && !$isSearchRegexp) {
|
||||
$searchString = '#^<.+?>' . preg_quote($searchString, '#') . "#";
|
||||
}
|
||||
|
||||
if (!$splitOnSearchString && strlen($chapter) <= $this->splitDefaultSize) {
|
||||
return array($chapter);
|
||||
}
|
||||
|
||||
$xmlDoc = new DOMDocument();
|
||||
@$xmlDoc->loadHTML($chapter);
|
||||
|
||||
$head = $xmlDoc->getElementsByTagName("head");
|
||||
$body = $xmlDoc->getElementsByTagName("body");
|
||||
|
||||
$htmlPos = stripos($chapter, "<html");
|
||||
$htmlEndPos = stripos($chapter, ">", $htmlPos);
|
||||
$newXML = substr($chapter, 0, $htmlEndPos+1) . "\n</html>";
|
||||
$headerLength = strlen($newXML);
|
||||
|
||||
$files = array();
|
||||
$chapterNames = array();
|
||||
$domDepth = 0;
|
||||
$domPath = array();
|
||||
$domClonedPath = array();
|
||||
|
||||
$curFile = $xmlDoc->createDocumentFragment();
|
||||
$files[] = $curFile;
|
||||
$curParent = $curFile;
|
||||
$curSize = 0;
|
||||
|
||||
$bodyLen = strlen($xmlDoc->saveXML($body->item(0)));
|
||||
$headLen = strlen($xmlDoc->saveXML($head->item(0))) + $headerLength;
|
||||
|
||||
$partSize = $this->splitDefaultSize - $headLen;
|
||||
|
||||
if ($bodyLen > $partSize) {
|
||||
$parts = ceil($bodyLen / $partSize);
|
||||
$partSize = ($bodyLen / $parts) - $headLen;
|
||||
}
|
||||
|
||||
$node = $body->item(0)->firstChild;
|
||||
|
||||
do {
|
||||
$nodeData = $xmlDoc->saveXML($node);
|
||||
$nodeLen = strlen($nodeData);
|
||||
|
||||
if ($nodeLen > $partSize && $node->hasChildNodes()) {
|
||||
$domPath[] = $node;
|
||||
$domClonedPath[] = $node->cloneNode(false);
|
||||
$domDepth++;
|
||||
|
||||
$node = $node->firstChild;
|
||||
}
|
||||
|
||||
$node2 = $node->nextSibling;
|
||||
|
||||
if ($node != null && $node->nodeName != "#text") {
|
||||
$doSplit = false;
|
||||
if ($splitOnSearchString) {
|
||||
$doSplit = preg_match($searchString, $nodeData) == 1;
|
||||
if ($doSplit) {
|
||||
$chapterNames[] = trim($nodeData);
|
||||
}
|
||||
}
|
||||
|
||||
if ($curSize > 0 && ($doSplit || (!$splitOnSearchString && $curSize + $nodeLen > $partSize))) {
|
||||
$curFile = $xmlDoc->createDocumentFragment();
|
||||
$files[] = $curFile;
|
||||
$curParent = $curFile;
|
||||
if ($domDepth > 0) {
|
||||
reset($domPath);
|
||||
reset($domClonedPath);
|
||||
$oneDomClonedPath = each($domClonedPath);
|
||||
while ($oneDomClonedPath) {
|
||||
list($k, $v) = $oneDomClonedPath;
|
||||
$newParent = $v->cloneNode(false);
|
||||
$curParent->appendChild($newParent);
|
||||
$curParent = $newParent;
|
||||
$oneDomClonedPath = each($domClonedPath);
|
||||
}
|
||||
}
|
||||
$curSize = strlen($xmlDoc->saveXML($curFile));
|
||||
}
|
||||
$curParent->appendChild($node->cloneNode(true));
|
||||
$curSize += $nodeLen;
|
||||
}
|
||||
|
||||
$node = $node2;
|
||||
while ($node == null && $domDepth > 0) {
|
||||
$domDepth--;
|
||||
$node = end($domPath)->nextSibling;
|
||||
array_pop($domPath);
|
||||
array_pop($domClonedPath);
|
||||
$curParent = $curParent->parentNode;
|
||||
}
|
||||
} while ($node != null);
|
||||
|
||||
$curFile = null;
|
||||
$curSize = 0;
|
||||
|
||||
$xml = new DOMDocument('1.0', $xmlDoc->xmlEncoding);
|
||||
$xml->lookupPrefix("http://www.w3.org/1999/xhtml");
|
||||
$xml->preserveWhiteSpace = false;
|
||||
$xml->formatOutput = true;
|
||||
|
||||
for ($idx = 0; $idx < count($files); $idx++) {
|
||||
$xml2Doc = new DOMDocument('1.0', $xmlDoc->xmlEncoding);
|
||||
$xml2Doc->lookupPrefix("http://www.w3.org/1999/xhtml");
|
||||
$xml2Doc->loadXML($newXML);
|
||||
$html = $xml2Doc->getElementsByTagName("html")->item(0);
|
||||
$html->appendChild($xml2Doc->importNode($head->item(0), true));
|
||||
$body = $xml2Doc->createElement("body");
|
||||
$html->appendChild($body);
|
||||
$body->appendChild($xml2Doc->importNode($files[$idx], true));
|
||||
|
||||
// force pretty printing and correct formatting, should not be needed, but it is.
|
||||
$xml->loadXML($xml2Doc->saveXML());
|
||||
|
||||
$chapterData[$splitOnSearchString ? $chapterNames[$idx] : $idx] = $xml->saveXML();
|
||||
}
|
||||
|
||||
return $chapterData;
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
|
@ -0,0 +1,583 @@
|
|||
<?php
|
||||
/**
|
||||
* Class to create and manage a Zip file.
|
||||
*
|
||||
* Inspired by CreateZipFile by Rochak Chauhan www.rochakchauhan.com (http://www.phpclasses.org/browse/package/2322.html)
|
||||
* and
|
||||
* http://www.pkware.com/documents/casestudies/APPNOTE.TXT Zip file specification.
|
||||
*
|
||||
* License: GNU LGPL, Attribution required for commercial implementations, requested for everything else.
|
||||
*
|
||||
* @author A. Grandt
|
||||
* @copyright A. Grandt 2009-2011
|
||||
* @license GNU LGPL, Attribution required for commercial implementations, requested for everything else.
|
||||
* @link http://www.phpclasses.org/package/6110
|
||||
* @version 1.25
|
||||
*/
|
||||
class Zip {
|
||||
const VERSION = 1.25;
|
||||
|
||||
private $zipMemoryThreshold = 1048576; // Autocreate tempfile if the zip data exceeds 1048576 bytes (1 MB)
|
||||
private $endOfCentralDirectory = "\x50\x4b\x05\x06\x00\x00\x00\x00"; //end of Central directory record
|
||||
private $localFileHeader = "\x50\x4b\x03\x04"; // Local file header signature
|
||||
private $centralFileHeader = "\x50\x4b\x01\x02"; // Central file header signature
|
||||
|
||||
private $zipData = NULL;
|
||||
private $zipFile = NULL;
|
||||
private $zipComment = NULL;
|
||||
private $cdRec = array(); // central directory
|
||||
private $offset = 0;
|
||||
private $isFinalized = FALSE;
|
||||
|
||||
private $streamChunkSize = 65536;
|
||||
private $streamFilePath = NULL;
|
||||
private $streamTimeStamp = NULL;
|
||||
private $streamComment = NULL;
|
||||
private $streamFile = NULL;
|
||||
private $streamData = NULL;
|
||||
private $streamFileLength = 0;
|
||||
|
||||
/**
|
||||
* Constructor.
|
||||
*
|
||||
* @param $useZipFile boolean. Write temp zip data to tempFile? Default FALSE
|
||||
*/
|
||||
function __construct($useZipFile = FALSE) {
|
||||
if ($useZipFile) {
|
||||
$this->zipFile = tmpfile();
|
||||
} else {
|
||||
$this->zipData = "";
|
||||
}
|
||||
}
|
||||
|
||||
function __destruct() {
|
||||
if (!is_null($this->zipFile)) {
|
||||
fclose($this->zipFile);
|
||||
}
|
||||
$this->zipData = NULL;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set Zip archive comment.
|
||||
*
|
||||
* @param String $newComment New comment. NULL to clear.
|
||||
* @return bool $success
|
||||
*/
|
||||
public function setComment($newComment = NULL) {
|
||||
if ($this->isFinalized) {
|
||||
return FALSE;
|
||||
}
|
||||
$this->zipComment = $newComment;
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set zip file to write zip data to.
|
||||
* This will cause all present and future data written to this class to be written to this file.
|
||||
* This can be used at any time, even after the Zip Archive have been finalized. Any previous file will be closed.
|
||||
* Warning: If the given file already exists, it will be overwritten.
|
||||
*
|
||||
* @param String $fileName
|
||||
* @return bool $success
|
||||
*/
|
||||
public function setZipFile($fileName) {
|
||||
if (file_exists($fileName)) {
|
||||
unlink ($fileName);
|
||||
}
|
||||
$fd=fopen($fileName, "x+b");
|
||||
if (!is_null($this->zipFile)) {
|
||||
rewind($this->zipFile);
|
||||
while(!feof($this->zipFile)) {
|
||||
fwrite($fd, fread($this->zipFile, $this->streamChunkSize));
|
||||
}
|
||||
|
||||
fclose($this->zipFile);
|
||||
} else {
|
||||
fwrite($fd, $this->zipData);
|
||||
$this->zipData = NULL;
|
||||
}
|
||||
$this->zipFile = $fd;
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/**
|
||||
* Add an empty directory entry to the zip archive.
|
||||
* Basically this is only used if an empty directory is added.
|
||||
*
|
||||
* @param String $directoryPath Directory Path and name to be added to the archive.
|
||||
* @param int $timestamp (Optional) Timestamp for the added directory, if omitted or set to 0, the current time will be used.
|
||||
* @param String $fileComment (Optional) Comment to be added to the archive for this directory. To use fileComment, timestamp must be given.
|
||||
* @return bool $success
|
||||
*/
|
||||
public function addDirectory($directoryPath, $timestamp = 0, $fileComment = NULL) {
|
||||
if ($this->isFinalized) {
|
||||
return FALSE;
|
||||
}
|
||||
$this->buildZipEntry($directoryPath, $fileComment, "\x00\x00", "\x00\x00", $timestamp, "\x00\x00\x00\x00", 0, 0, 16);
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/**
|
||||
* Add a file to the archive at the specified location and file name.
|
||||
*
|
||||
* @param String $data File data.
|
||||
* @param String $filePath Filepath and name to be used in the archive.
|
||||
* @param int $timestamp (Optional) Timestamp for the added file, if omitted or set to 0, the current time will be used.
|
||||
* @param String $fileComment (Optional) Comment to be added to the archive for this file. To use fileComment, timestamp must be given.
|
||||
* @return bool $success
|
||||
*/
|
||||
public function addFile($data, $filePath, $timestamp = 0, $fileComment = NULL) {
|
||||
if ($this->isFinalized) {
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
$gzType = "\x08\x00"; // Compression type 8 = deflate
|
||||
$gpFlags = "\x02\x00"; // General Purpose bit flags for compression type 8 it is: 0=Normal, 1=Maximum, 2=Fast, 3=super fast compression.
|
||||
$dataLength = strlen($data);
|
||||
$fileCRC32 = pack("V", crc32($data));
|
||||
|
||||
$gzData = gzcompress($data);
|
||||
$gzData = substr( substr($gzData, 0, strlen($gzData) - 4), 2); // gzcompress adds a 2 byte header and 4 byte CRC we can't use.
|
||||
// The 2 byte header does contain useful data, though in this case the 2 parameters we'd be interrested in will always be 8 for compression type, and 2 for General purpose flag.
|
||||
$gzLength = strlen($gzData);
|
||||
|
||||
if ($gzLength >= $dataLength) {
|
||||
$gzLength = $dataLength;
|
||||
$gzData = $data;
|
||||
$gzType = "\x00\x00"; // Compression type 0 = stored
|
||||
$gpFlags = "\x00\x00"; // Compression type 0 = stored
|
||||
}
|
||||
|
||||
if (is_null($this->zipFile) && ($this->offset + $gzLength) > $this->zipMemoryThreshold) {
|
||||
$this->zipFile = tmpfile();
|
||||
fwrite($this->zipFile, $this->zipData);
|
||||
$this->zipData = NULL;
|
||||
}
|
||||
|
||||
$this->buildZipEntry($filePath, $fileComment, $gpFlags, $gzType, $timestamp, $fileCRC32, $gzLength, $dataLength, 32);
|
||||
if (is_null($this->zipFile)) {
|
||||
$this->zipData .= $gzData;
|
||||
} else {
|
||||
fwrite($this->zipFile, $gzData);
|
||||
}
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/**
|
||||
* Add the content to a directory.
|
||||
*
|
||||
* @author Adam Schmalhofer <Adam.Schmalhofer@gmx.de>
|
||||
* @author A. Grandt
|
||||
*
|
||||
* @param String $realPath Path on the file system.
|
||||
* @param String $zipPath Filepath and name to be used in the archive.
|
||||
* @param bool $zipPath Add content recursively, default is TRUE.
|
||||
*/
|
||||
public function addDirectoryContent($realPath, $zipPath, $recursive = TRUE) {
|
||||
$iter = new DirectoryIterator($realPath);
|
||||
foreach ($iter as $file) {
|
||||
if ($file->isDot()) {
|
||||
continue;
|
||||
}
|
||||
$newRealPath = $file->getPathname();
|
||||
$newZipPath = self::pathJoin($zipPath, $file->getFilename());
|
||||
if ($file->isFile()) {
|
||||
$this->addLargeFile($newRealPath, $newZipPath);
|
||||
} else if ($recursive === TRUE) {
|
||||
$this->addDirectoryContent($newRealPath, $newZipPath, $recursive);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Add a file to the archive at the specified location and file name.
|
||||
*
|
||||
* @param String $dataFile File name/path.
|
||||
* @param String $filePath Filepath and name to be used in the archive.
|
||||
* @param int $timestamp (Optional) Timestamp for the added file, if omitted or set to 0, the current time will be used.
|
||||
* @param String $fileComment (Optional) Comment to be added to the archive for this file. To use fileComment, timestamp must be given.
|
||||
* @return bool $success
|
||||
*/
|
||||
public function addLargeFile($dataFile, $filePath, $timestamp = 0, $fileComment = NULL) {
|
||||
if ($this->isFinalized) {
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
$this->openStream($filePath, $timestamp, $fileComment);
|
||||
|
||||
$fh = fopen($dataFile, "rb");
|
||||
while(!feof($fh)) {
|
||||
$this->addStreamData(fread($fh, $this->streamChunkSize));
|
||||
}
|
||||
fclose($fh);
|
||||
|
||||
$this->closeStream();
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a stream to be used for large entries.
|
||||
*
|
||||
* @param String $filePath Filepath and name to be used in the archive.
|
||||
* @param int $timestamp (Optional) Timestamp for the added file, if omitted or set to 0, the current time will be used.
|
||||
* @param String $fileComment (Optional) Comment to be added to the archive for this file. To use fileComment, timestamp must be given.
|
||||
* @return bool $success
|
||||
*/
|
||||
public function openStream($filePath, $timestamp = 0, $fileComment = NULL) {
|
||||
if ($this->isFinalized) {
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
if (is_null($this->zipFile)) {
|
||||
$this->zipFile = tmpfile();
|
||||
fwrite($this->zipFile, $this->zipData);
|
||||
$this->zipData = NULL;
|
||||
}
|
||||
|
||||
if (strlen($this->streamFilePath) > 0) {
|
||||
closeStream();
|
||||
}
|
||||
$this->streamFile = tempnam(sys_get_temp_dir(), 'Zip');
|
||||
$this->streamData = gzopen($this->streamFile, "w9");
|
||||
$this->streamFilePath = $filePath;
|
||||
$this->streamTimestamp = $timestamp;
|
||||
$this->streamFileComment = $fileComment;
|
||||
$this->streamFileLength = 0;
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/**
|
||||
* Add data to the open stream.
|
||||
*
|
||||
* @param String $data
|
||||
* @return $length bytes added or FALSE if the archive is finalized or there are no open stream.
|
||||
*/
|
||||
public function addStreamData($data) {
|
||||
if ($this->isFinalized || strlen($this->streamFilePath) == 0) {
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
$length = gzwrite($this->streamData, $data, strlen($data));
|
||||
if ($length != strlen($data)) {
|
||||
print "<p>Length mismatch</p>\n";
|
||||
}
|
||||
$this->streamFileLength += $length;
|
||||
|
||||
return $length;
|
||||
}
|
||||
|
||||
/**
|
||||
* Close the current stream.
|
||||
*
|
||||
* @return bool $success
|
||||
*/
|
||||
public function closeStream() {
|
||||
if ($this->isFinalized || strlen($this->streamFilePath) == 0) {
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
fflush($this->streamData);
|
||||
gzclose($this->streamData);
|
||||
|
||||
$gzType = "\x08\x00"; // Compression type 8 = deflate
|
||||
$gpFlags = "\x02\x00"; // General Purpose bit flags for compression type 8 it is: 0=Normal, 1=Maximum, 2=Fast, 3=super fast compression.
|
||||
|
||||
$file_handle = fopen($this->streamFile, "rb");
|
||||
$stats = fstat($file_handle);
|
||||
$eof = $stats['size'];
|
||||
|
||||
fseek($file_handle, $eof-8);
|
||||
$fileCRC32 = fread($file_handle, 4);
|
||||
$dataLength = $this->streamFileLength;//$gzl[1];
|
||||
|
||||
$gzLength = $eof-10;
|
||||
$eof -= 9;
|
||||
|
||||
fseek($file_handle, 10);
|
||||
|
||||
$this->buildZipEntry($this->streamFilePath, $this->streamFileComment, $gpFlags, $gzType, $this->streamTimestamp, $fileCRC32, $gzLength, $dataLength, 32);
|
||||
while(!feof($file_handle)) {
|
||||
fwrite($this->zipFile, fread($file_handle, $this->streamChunkSize));
|
||||
}
|
||||
|
||||
unlink($this->streamFile);
|
||||
$this->streamFile = NULL;
|
||||
$this->streamData = NULL;
|
||||
$this->streamFilePath = NULL;
|
||||
$this->streamTimestamp = NULL;
|
||||
$this->streamFileComment = NULL;
|
||||
$this->streamFileLength = 0;
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/**
|
||||
* Close the archive.
|
||||
* A closed archive can no longer have new files added to it.
|
||||
*
|
||||
* @return bool $success
|
||||
*/
|
||||
public function finalize() {
|
||||
if(!$this->isFinalized) {
|
||||
if (strlen($this->streamFilePath) > 0) {
|
||||
$this->closeStream();
|
||||
}
|
||||
$cd = implode("", $this->cdRec);
|
||||
|
||||
$cdRec = $cd . $this->endOfCentralDirectory
|
||||
. pack("v", sizeof($this->cdRec))
|
||||
. pack("v", sizeof($this->cdRec))
|
||||
. pack("V", strlen($cd))
|
||||
. pack("V", $this->offset);
|
||||
if (!is_null($this->zipComment)) {
|
||||
$cdRec .= pack("v", strlen($this->zipComment)) . $this->zipComment;
|
||||
} else {
|
||||
$cdRec .= "\x00\x00";
|
||||
}
|
||||
|
||||
if (is_null($this->zipFile)) {
|
||||
$this->zipData .= $cdRec;
|
||||
} else {
|
||||
fwrite($this->zipFile, $cdRec);
|
||||
fflush($this->zipFile);
|
||||
}
|
||||
$this->isFinalized = TRUE;
|
||||
$cd = NULL;
|
||||
$this->cdRec = NULL;
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the handle ressource for the archive zip file.
|
||||
* If the zip haven't been finalized yet, this will cause it to become finalized
|
||||
*
|
||||
* @return zip file handle
|
||||
*/
|
||||
public function getZipFile() {
|
||||
if(!$this->isFinalized) {
|
||||
$this->finalize();
|
||||
}
|
||||
if (is_null($this->zipFile)) {
|
||||
$this->zipFile = tmpfile();
|
||||
fwrite($this->zipFile, $this->zipData);
|
||||
$this->zipData = NULL;
|
||||
}
|
||||
rewind($this->zipFile);
|
||||
|
||||
return $this->zipFile;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the zip file contents
|
||||
* If the zip haven't been finalized yet, this will cause it to become finalized
|
||||
*
|
||||
* @return zip data
|
||||
*/
|
||||
public function getZipData() {
|
||||
if(!$this->isFinalized) {
|
||||
$this->finalize();
|
||||
}
|
||||
if (is_null($this->zipFile)) {
|
||||
return $this->zipData;
|
||||
} else {
|
||||
rewind($this->zipFile);
|
||||
$filestat = fstat($this->zipFile);
|
||||
return fread($this->zipFile, $filestat['size']);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Send the archive as a zip download
|
||||
*
|
||||
* @param String $fileName The name of the Zip archive, ie. "archive.zip".
|
||||
* @param String $contentType Content mime type. Optional, defailts to "application/zip".
|
||||
* @return bool $success
|
||||
*/
|
||||
function sendZip($fileName, $contentType = "application/zip") {
|
||||
if(!$this->isFinalized) {
|
||||
$this->finalize();
|
||||
}
|
||||
|
||||
if (!headers_sent($headerFile, $headerLine) or die("<p><strong>Error:</strong> Unable to send file $fileName. HTML Headers have already been sent from <strong>$headerFile</strong> in line <strong>$headerLine</strong></p>")) {
|
||||
if ((ob_get_contents() === FALSE || ob_get_contents() == '') or die("\n<p><strong>Error:</strong> Unable to send file <strong>$fileName.epub</strong>. Output buffer contains the following text (typically warnings or errors):<br>" . ob_get_contents() . "</p>")) {
|
||||
if (ini_get('zlib.output_compression')) {
|
||||
ini_set('zlib.output_compression', 'Off');
|
||||
}
|
||||
|
||||
header('Pragma: public');
|
||||
header("Last-Modified: " . gmdate("D, d M Y H:i:s T"));
|
||||
header("Expires: 0");
|
||||
header("Accept-Ranges: bytes");
|
||||
header("Connection: close");
|
||||
header("Content-Type: " . $contentType);
|
||||
header('Content-Disposition: attachment; filename="' . $fileName . '";' );
|
||||
header("Content-Transfer-Encoding: binary");
|
||||
header("Content-Length: ". $this->getArchiveSize());
|
||||
|
||||
if (is_null($this->zipFile)) {
|
||||
echo $this->zipData;
|
||||
} else {
|
||||
rewind($this->zipFile);
|
||||
|
||||
while(!feof($this->zipFile)) {
|
||||
echo fread($this->zipFile, $this->streamChunkSize);
|
||||
}
|
||||
}
|
||||
}
|
||||
return TRUE;
|
||||
}
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/**
|
||||
* Return the current size of the archive
|
||||
*
|
||||
* @return $size Size of the archive
|
||||
*/
|
||||
public function getArchiveSize() {
|
||||
if (is_null($this->zipFile)) {
|
||||
return strlen($this->zipData);
|
||||
}
|
||||
$filestat = fstat($this->zipFile);
|
||||
|
||||
return $filestat['size'];
|
||||
}
|
||||
|
||||
/**
|
||||
* Calculate the 2 byte dostime used in the zip entries.
|
||||
*
|
||||
* @param int $timestamp
|
||||
* @return 2-byte encoded DOS Date
|
||||
*/
|
||||
private function getDosTime($timestamp = 0) {
|
||||
$timestamp = (int)$timestamp;
|
||||
$date = ($timestamp == 0 ? getdate() : getDate($timestamp));
|
||||
if ($date["year"] >= 1980) {
|
||||
return pack("V", (($date["mday"] + ($date["mon"] << 5) + (($date["year"]-1980) << 9)) << 16) |
|
||||
(($date["seconds"] >> 1) + ($date["minutes"] << 5) + ($date["hours"] << 11)));
|
||||
}
|
||||
return "\x00\x00\x00\x00";
|
||||
}
|
||||
|
||||
/**
|
||||
* Build the Zip file structures
|
||||
*
|
||||
* @param String $filePath
|
||||
* @param String $fileComment
|
||||
* @param String $gpFlags
|
||||
* @param String $gzType
|
||||
* @param int $timestamp
|
||||
* @param string $fileCRC32
|
||||
* @param int $gzLength
|
||||
* @param int $dataLength
|
||||
* @param integer $extFileAttr 16 for directories, 32 for files.
|
||||
*/
|
||||
private function buildZipEntry($filePath, $fileComment, $gpFlags, $gzType, $timestamp, $fileCRC32, $gzLength, $dataLength, $extFileAttr) {
|
||||
$filePath = str_replace("\\", "/", $filePath);
|
||||
$fileCommentLength = (is_null($fileComment) ? 0 : strlen($fileComment));
|
||||
$dosTime = $this->getDosTime($timestamp);
|
||||
|
||||
$zipEntry = $this->localFileHeader;
|
||||
$zipEntry .= "\x14\x00"; // Version needed to extract
|
||||
$zipEntry .= $gpFlags . $gzType . $dosTime. $fileCRC32;
|
||||
$zipEntry .= pack("VV", $gzLength, $dataLength);
|
||||
$zipEntry .= pack("v", strlen($filePath) ); // File name length
|
||||
$zipEntry .= "\x00\x00"; // Extra field length
|
||||
$zipEntry .= $filePath; // FileName . Extra field
|
||||
|
||||
if (is_null($this->zipFile)) {
|
||||
$this->zipData .= $zipEntry;
|
||||
} else {
|
||||
fwrite($this->zipFile, $zipEntry);
|
||||
}
|
||||
|
||||
$cdEntry = $this->centralFileHeader;
|
||||
$cdEntry .= "\x00\x00"; // Made By Version
|
||||
$cdEntry .= "\x14\x00"; // Version Needed to extract
|
||||
$cdEntry .= $gpFlags . $gzType . $dosTime. $fileCRC32;
|
||||
$cdEntry .= pack("VV", $gzLength, $dataLength);
|
||||
$cdEntry .= pack("v", strlen($filePath)); // Filename length
|
||||
$cdEntry .= "\x00\x00"; // Extra field length
|
||||
$cdEntry .= pack("v", $fileCommentLength); // File comment length
|
||||
$cdEntry .= "\x00\x00"; // Disk number start
|
||||
$cdEntry .= "\x00\x00"; // internal file attributes
|
||||
$cdEntry .= pack("V", $extFileAttr ); // External file attributes
|
||||
$cdEntry .= pack("V", $this->offset ); // Relative offset of local header
|
||||
$cdEntry .= $filePath; // FileName . Extra field
|
||||
if (!is_null($fileComment)) {
|
||||
$cdEntry .= $fileComment; // Comment
|
||||
}
|
||||
|
||||
$this->cdRec[] = $cdEntry;
|
||||
$this->offset += strlen($zipEntry) + $gzLength;
|
||||
}
|
||||
|
||||
/**
|
||||
* Join $file to $dir path, and clean up any excess slashes.
|
||||
*
|
||||
* @param String $dir
|
||||
* @param String $file
|
||||
*/
|
||||
public static function pathJoin($dir, $file) {
|
||||
if (empty($dir) || empty($file)) {
|
||||
return self::getRelativePath($dir . $file);
|
||||
}
|
||||
return self::getRelativePath($dir . '/' . $file);
|
||||
}
|
||||
|
||||
/**
|
||||
* Clean up a path, removing any unnecessary elements such as /./, // or redundant ../ segments.
|
||||
* If the path starts with a "/", it is deemed an absolute path and any /../ in the beginning is stripped off.
|
||||
* The returned path will not end in a "/".
|
||||
*
|
||||
* @param String $relPath The path to clean up
|
||||
* @return String the clean path
|
||||
*/
|
||||
public static function getRelativePath($path) {
|
||||
$path = preg_replace("#/+\.?/+#", "/", str_replace("\\", "/", $path));
|
||||
$dirs = explode("/", rtrim(preg_replace('#^(\./)+#', '', $path), '/'));
|
||||
|
||||
$offset = 0;
|
||||
$sub = 0;
|
||||
$subOffset = 0;
|
||||
$root = "";
|
||||
|
||||
if (empty($dirs[0])) {
|
||||
$root = "/";
|
||||
$dirs = array_splice($dirs, 1);
|
||||
} else if (preg_match("#[A-Za-z]:#", $dirs[0])) {
|
||||
$root = strtoupper($dirs[0]) . "/";
|
||||
$dirs = array_splice($dirs, 1);
|
||||
}
|
||||
|
||||
$newDirs = array();
|
||||
foreach($dirs as $dir) {
|
||||
if ($dir !== "..") {
|
||||
$subOffset--;
|
||||
$newDirs[++$offset] = $dir;
|
||||
} else {
|
||||
$subOffset++;
|
||||
if (--$offset < 0) {
|
||||
$offset = 0;
|
||||
if ($subOffset > $sub) {
|
||||
$sub++;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (empty($root)) {
|
||||
$root = str_repeat("../", $sub);
|
||||
}
|
||||
return $root . implode("/", array_slice($newDirs, 0, $offset));
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
|
@ -0,0 +1,76 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Main actividad class to handle all functions for actividades interaction for the API.
|
||||
*
|
||||
* This class uses the db.php files connection in PDO style and only returns SQL statements.
|
||||
*
|
||||
* @author XFATBoY (xfatboy@carpa.com)
|
||||
* @since v1
|
||||
*/
|
||||
class Galeria {
|
||||
|
||||
private $conn;
|
||||
private $table_name = "wp_posts";
|
||||
|
||||
/**
|
||||
* Main constructor
|
||||
*
|
||||
* Initializes with the db
|
||||
*/
|
||||
|
||||
public function __construct($db){
|
||||
$this->conn = $db;
|
||||
}
|
||||
|
||||
/**
|
||||
* List function
|
||||
*
|
||||
* Displays the list of messages with it's pertinent variables
|
||||
*
|
||||
*/
|
||||
function gallery_list(){
|
||||
$sql = "SELECT
|
||||
P.ID,
|
||||
P.post_title,
|
||||
P.post_date,
|
||||
P2.guid AS thumbnail
|
||||
FROM wp_posts P
|
||||
LEFT JOIN wp_postmeta PM ON PM.post_id = P.id AND PM.meta_key = '_thumbnail_id'
|
||||
LEFT JOIN wp_posts P2 ON PM.meta_value = P2.ID
|
||||
WHERE P.post_type = 'galeria' AND P.post_status = 'publish'
|
||||
ORDER BY P.post_date DESC";
|
||||
return $this->execute_sql( $sql );
|
||||
}
|
||||
|
||||
function gallery_images($id){
|
||||
$sql = "SELECT DISTINCT
|
||||
PMI.meta_value AS imagenes,
|
||||
PMS.meta_value AS sin_recortar
|
||||
FROM wp_postmeta PM
|
||||
INNER JOIN wp_postmeta PMI ON PMI.post_id = PM.post_id AND PMI.meta_key = 'imagenes'
|
||||
INNER JOIN wp_postmeta PMS ON PMS.post_id = PM.post_id AND PMS.meta_key = 'sin_recortar'
|
||||
WHERE PM.post_id = $id";
|
||||
return $this->execute_sql( $sql );
|
||||
}
|
||||
|
||||
function image($image_id){
|
||||
$sql = "SELECT meta_value AS imagedata FROM wp_postmeta WHERE post_id = $image_id AND meta_key = '_wp_attachment_metadata'";
|
||||
return $this->execute_sql( $sql );
|
||||
}
|
||||
|
||||
/**
|
||||
* Execute SQL function
|
||||
*
|
||||
* Executes a generic SQL statement and passes back the result.
|
||||
*
|
||||
* @param string sql SQl statement to be executed
|
||||
* @return
|
||||
*/
|
||||
function execute_sql( $sql ){
|
||||
$stmt = $this->conn->prepare($sql);
|
||||
$stmt->execute();
|
||||
return $stmt;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,261 @@
|
|||
<?php
|
||||
|
||||
function wpautop( $pee, $br = true ) {
|
||||
$pre_tags = array();
|
||||
|
||||
if ( trim( $pee ) === '' ) {
|
||||
return '';
|
||||
}
|
||||
|
||||
// Just to make things a little easier, pad the end.
|
||||
$pee = $pee . "\n";
|
||||
|
||||
/*
|
||||
* Pre tags shouldn't be touched by autop.
|
||||
* Replace pre tags with placeholders and bring them back after autop.
|
||||
*/
|
||||
if ( strpos( $pee, '<pre' ) !== false ) {
|
||||
$pee_parts = explode( '</pre>', $pee );
|
||||
$last_pee = array_pop( $pee_parts );
|
||||
$pee = '';
|
||||
$i = 0;
|
||||
|
||||
foreach ( $pee_parts as $pee_part ) {
|
||||
$start = strpos( $pee_part, '<pre' );
|
||||
|
||||
// Malformed html?
|
||||
if ( $start === false ) {
|
||||
$pee .= $pee_part;
|
||||
continue;
|
||||
}
|
||||
|
||||
$name = "<pre wp-pre-tag-$i></pre>";
|
||||
$pre_tags[ $name ] = substr( $pee_part, $start ) . '</pre>';
|
||||
|
||||
$pee .= substr( $pee_part, 0, $start ) . $name;
|
||||
$i++;
|
||||
}
|
||||
|
||||
$pee .= $last_pee;
|
||||
}
|
||||
// Change multiple <br>s into two line breaks, which will turn into paragraphs.
|
||||
$pee = preg_replace( '|<br\s*/?>\s*<br\s*/?>|', "\n\n", $pee );
|
||||
|
||||
$allblocks = '(?:table|thead|tfoot|caption|col|colgroup|tbody|tr|td|th|div|dl|dd|dt|ul|ol|li|pre|form|map|area|blockquote|address|math|style|p|h[1-6]|hr|fieldset|legend|section|article|aside|hgroup|header|footer|nav|figure|figcaption|details|menu|summary)';
|
||||
|
||||
// Add a double line break above block-level opening tags.
|
||||
$pee = preg_replace( '!(<' . $allblocks . '[\s/>])!', "\n\n$1", $pee );
|
||||
|
||||
// Add a double line break below block-level closing tags.
|
||||
$pee = preg_replace( '!(</' . $allblocks . '>)!', "$1\n\n", $pee );
|
||||
|
||||
// Add a double line break after hr tags, which are self closing.
|
||||
$pee = preg_replace( '!(<hr\s*?/?>)!', "$1\n\n", $pee );
|
||||
|
||||
// Standardize newline characters to "\n".
|
||||
$pee = str_replace( array( "\r\n", "\r" ), "\n", $pee );
|
||||
|
||||
// Find newlines in all elements and add placeholders.
|
||||
$pee = wp_replace_in_html_tags( $pee, array( "\n" => ' <!-- wpnl --> ' ) );
|
||||
|
||||
// Collapse line breaks before and after <option> elements so they don't get autop'd.
|
||||
if ( strpos( $pee, '<option' ) !== false ) {
|
||||
$pee = preg_replace( '|\s*<option|', '<option', $pee );
|
||||
$pee = preg_replace( '|</option>\s*|', '</option>', $pee );
|
||||
}
|
||||
|
||||
/*
|
||||
* Collapse line breaks inside <object> elements, before <param> and <embed> elements
|
||||
* so they don't get autop'd.
|
||||
*/
|
||||
if ( strpos( $pee, '</object>' ) !== false ) {
|
||||
$pee = preg_replace( '|(<object[^>]*>)\s*|', '$1', $pee );
|
||||
$pee = preg_replace( '|\s*</object>|', '</object>', $pee );
|
||||
$pee = preg_replace( '%\s*(</?(?:param|embed)[^>]*>)\s*%', '$1', $pee );
|
||||
}
|
||||
|
||||
/*
|
||||
* Collapse line breaks inside <audio> and <video> elements,
|
||||
* before and after <source> and <track> elements.
|
||||
*/
|
||||
if ( strpos( $pee, '<source' ) !== false || strpos( $pee, '<track' ) !== false ) {
|
||||
$pee = preg_replace( '%([<\[](?:audio|video)[^>\]]*[>\]])\s*%', '$1', $pee );
|
||||
$pee = preg_replace( '%\s*([<\[]/(?:audio|video)[>\]])%', '$1', $pee );
|
||||
$pee = preg_replace( '%\s*(<(?:source|track)[^>]*>)\s*%', '$1', $pee );
|
||||
}
|
||||
|
||||
// Collapse line breaks before and after <figcaption> elements.
|
||||
if ( strpos( $pee, '<figcaption' ) !== false ) {
|
||||
$pee = preg_replace( '|\s*(<figcaption[^>]*>)|', '$1', $pee );
|
||||
$pee = preg_replace( '|</figcaption>\s*|', '</figcaption>', $pee );
|
||||
}
|
||||
|
||||
// Remove more than two contiguous line breaks.
|
||||
$pee = preg_replace( "/\n\n+/", "\n\n", $pee );
|
||||
|
||||
// Split up the contents into an array of strings, separated by double line breaks.
|
||||
$pees = preg_split( '/\n\s*\n/', $pee, -1, PREG_SPLIT_NO_EMPTY );
|
||||
|
||||
// Reset $pee prior to rebuilding.
|
||||
$pee = '';
|
||||
|
||||
// Rebuild the content as a string, wrapping every bit with a <p>.
|
||||
foreach ( $pees as $tinkle ) {
|
||||
$pee .= '<p>' . trim( $tinkle, "\n" ) . "</p>\n";
|
||||
}
|
||||
|
||||
// Under certain strange conditions it could create a P of entirely whitespace.
|
||||
$pee = preg_replace( '|<p>\s*</p>|', '', $pee );
|
||||
|
||||
// Add a closing <p> inside <div>, <address>, or <form> tag if missing.
|
||||
$pee = preg_replace( '!<p>([^<]+)</(div|address|form)>!', '<p>$1</p></$2>', $pee );
|
||||
|
||||
// If an opening or closing block element tag is wrapped in a <p>, unwrap it.
|
||||
$pee = preg_replace( '!<p>\s*(</?' . $allblocks . '[^>]*>)\s*</p>!', '$1', $pee );
|
||||
|
||||
// In some cases <li> may get wrapped in <p>, fix them.
|
||||
$pee = preg_replace( '|<p>(<li.+?)</p>|', '$1', $pee );
|
||||
|
||||
// If a <blockquote> is wrapped with a <p>, move it inside the <blockquote>.
|
||||
$pee = preg_replace( '|<p><blockquote([^>]*)>|i', '<blockquote$1><p>', $pee );
|
||||
$pee = str_replace( '</blockquote></p>', '</p></blockquote>', $pee );
|
||||
|
||||
// If an opening or closing block element tag is preceded by an opening <p> tag, remove it.
|
||||
$pee = preg_replace( '!<p>\s*(</?' . $allblocks . '[^>]*>)!', '$1', $pee );
|
||||
|
||||
// If an opening or closing block element tag is followed by a closing <p> tag, remove it.
|
||||
$pee = preg_replace( '!(</?' . $allblocks . '[^>]*>)\s*</p>!', '$1', $pee );
|
||||
|
||||
// Optionally insert line breaks.
|
||||
if ( $br ) {
|
||||
// Replace newlines that shouldn't be touched with a placeholder.
|
||||
$pee = preg_replace_callback( '/<(script|style|svg).*?<\/\\1>/s', '_autop_newline_preservation_helper', $pee );
|
||||
|
||||
// Normalize <br>
|
||||
$pee = str_replace( array( '<br>', '<br/>' ), '<br />', $pee );
|
||||
|
||||
// Replace any new line characters that aren't preceded by a <br /> with a <br />.
|
||||
$pee = preg_replace( '|(?<!<br />)\s*\n|', "<br />\n", $pee );
|
||||
|
||||
// Replace newline placeholders with newlines.
|
||||
$pee = str_replace( '<WPPreserveNewline />', "\n", $pee );
|
||||
}
|
||||
|
||||
// If a <br /> tag is after an opening or closing block tag, remove it.
|
||||
$pee = preg_replace( '!(</?' . $allblocks . '[^>]*>)\s*<br />!', '$1', $pee );
|
||||
|
||||
// If a <br /> tag is before a subset of opening or closing block tags, remove it.
|
||||
$pee = preg_replace( '!<br />(\s*</?(?:p|li|div|dl|dd|dt|th|pre|td|ul|ol)[^>]*>)!', '$1', $pee );
|
||||
$pee = preg_replace( "|\n</p>$|", '</p>', $pee );
|
||||
|
||||
// Replace placeholder <pre> tags with their original content.
|
||||
if ( ! empty( $pre_tags ) ) {
|
||||
$pee = str_replace( array_keys( $pre_tags ), array_values( $pre_tags ), $pee );
|
||||
}
|
||||
|
||||
// Restore newlines in all elements.
|
||||
if ( false !== strpos( $pee, '<!-- wpnl -->' ) ) {
|
||||
$pee = str_replace( array( ' <!-- wpnl --> ', '<!-- wpnl -->' ), "\n", $pee );
|
||||
}
|
||||
|
||||
return $pee;
|
||||
}
|
||||
|
||||
function _autop_newline_preservation_helper( $matches ) {
|
||||
return str_replace( "\n", '<WPPreserveNewline />', $matches[0] );
|
||||
}
|
||||
|
||||
function wp_replace_in_html_tags( $haystack, $replace_pairs ) {
|
||||
// Find all elements.
|
||||
$textarr = wp_html_split( $haystack );
|
||||
$changed = false;
|
||||
|
||||
// Optimize when searching for one item.
|
||||
if ( 1 === count( $replace_pairs ) ) {
|
||||
// Extract $needle and $replace.
|
||||
foreach ( $replace_pairs as $needle => $replace ) {
|
||||
}
|
||||
|
||||
// Loop through delimiters (elements) only.
|
||||
for ( $i = 1, $c = count( $textarr ); $i < $c; $i += 2 ) {
|
||||
if ( false !== strpos( $textarr[ $i ], $needle ) ) {
|
||||
$textarr[ $i ] = str_replace( $needle, $replace, $textarr[ $i ] );
|
||||
$changed = true;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
// Extract all $needles.
|
||||
$needles = array_keys( $replace_pairs );
|
||||
|
||||
// Loop through delimiters (elements) only.
|
||||
for ( $i = 1, $c = count( $textarr ); $i < $c; $i += 2 ) {
|
||||
foreach ( $needles as $needle ) {
|
||||
if ( false !== strpos( $textarr[ $i ], $needle ) ) {
|
||||
$textarr[ $i ] = strtr( $textarr[ $i ], $replace_pairs );
|
||||
$changed = true;
|
||||
// After one strtr() break out of the foreach loop and look at next element.
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if ( $changed ) {
|
||||
$haystack = implode( $textarr );
|
||||
}
|
||||
|
||||
return $haystack;
|
||||
}
|
||||
|
||||
function wp_html_split( $input ) {
|
||||
return preg_split( get_html_split_regex(), $input, -1, PREG_SPLIT_DELIM_CAPTURE );
|
||||
}
|
||||
|
||||
function get_html_split_regex() {
|
||||
static $regex;
|
||||
|
||||
if ( ! isset( $regex ) ) {
|
||||
// phpcs:disable Squiz.Strings.ConcatenationSpacing.PaddingFound -- don't remove regex indentation
|
||||
$comments =
|
||||
'!' // Start of comment, after the <.
|
||||
. '(?:' // Unroll the loop: Consume everything until --> is found.
|
||||
. '-(?!->)' // Dash not followed by end of comment.
|
||||
. '[^\-]*+' // Consume non-dashes.
|
||||
. ')*+' // Loop possessively.
|
||||
. '(?:-->)?'; // End of comment. If not found, match all input.
|
||||
|
||||
$cdata =
|
||||
'!\[CDATA\[' // Start of comment, after the <.
|
||||
. '[^\]]*+' // Consume non-].
|
||||
. '(?:' // Unroll the loop: Consume everything until ]]> is found.
|
||||
. '](?!]>)' // One ] not followed by end of comment.
|
||||
. '[^\]]*+' // Consume non-].
|
||||
. ')*+' // Loop possessively.
|
||||
. '(?:]]>)?'; // End of comment. If not found, match all input.
|
||||
|
||||
$escaped =
|
||||
'(?=' // Is the element escaped?
|
||||
. '!--'
|
||||
. '|'
|
||||
. '!\[CDATA\['
|
||||
. ')'
|
||||
. '(?(?=!-)' // If yes, which type?
|
||||
. $comments
|
||||
. '|'
|
||||
. $cdata
|
||||
. ')';
|
||||
|
||||
$regex =
|
||||
'/(' // Capture the entire match.
|
||||
. '<' // Find start of element.
|
||||
. '(?' // Conditional expression follows.
|
||||
. $escaped // Find end of escaped element.
|
||||
. '|' // ... else ...
|
||||
. '[^>]*>?' // Find end of normal element.
|
||||
. ')'
|
||||
. ')/';
|
||||
// phpcs:enable
|
||||
}
|
||||
|
||||
return $regex;
|
||||
}
|
||||
|
|
@ -0,0 +1,191 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Main message class to handle all functions for messages interaction for the API.
|
||||
*
|
||||
* This class uses the db.php files connection in PDO style and only returns SQL statements.
|
||||
*
|
||||
* @author XFATBoY (xfatboy@carpa.com)
|
||||
* @since v1
|
||||
*/
|
||||
class Message{
|
||||
|
||||
private $conn;
|
||||
private $table_name = "wp_posts";
|
||||
|
||||
public $id;
|
||||
public $name;
|
||||
public $description;
|
||||
public $price;
|
||||
public $category_id;
|
||||
public $category_name;
|
||||
public $created;
|
||||
|
||||
/**
|
||||
* Main constructor
|
||||
*
|
||||
* Initializes with the db
|
||||
*/
|
||||
public function __construct($db){
|
||||
$this->conn = $db;
|
||||
}
|
||||
|
||||
/**
|
||||
* List function
|
||||
*
|
||||
* Displays the list of messages with it's pertinent variables
|
||||
*
|
||||
* @param lcode Language code to be used for the list
|
||||
*/
|
||||
|
||||
function list( $lcode , $last_update, $text = false ){
|
||||
$sql = "SELECT
|
||||
P.ID,
|
||||
P.post_title AS title,";
|
||||
if($text){
|
||||
$sql .= "
|
||||
P.post_content AS content,";
|
||||
}
|
||||
$sql .= "P.post_date AS creation_date,
|
||||
P.post_modified as last_updated
|
||||
p.post_title
|
||||
#IFNULL(NULLIF(TIME_TO_SEC(MD.duration), '' ), 0) AS duration,
|
||||
#MD.activity AS no_activity,
|
||||
#MD.country,
|
||||
#MD.state,
|
||||
#MD.city,
|
||||
#CONCAT(YEAR(P.post_date),'/',MONTH(P.post_date),'/',P.post_name) AS slug
|
||||
FROM wp_posts P
|
||||
#LEFT JOIN wp_icl_translations T ON T.element_id = P.ID AND T.element_type = 'post_message'
|
||||
#LEFT JOIN wp_icl_translations TS ON T.trid = TS.trid AND TS.language_code = 'es'
|
||||
#LEFT JOIN wp_messagedata MD ON TS.element_id = MD.post_id
|
||||
WHERE P.post_type = 'conferencias'
|
||||
#AND T.language_code = '$lcode'
|
||||
AND P.post_status = 'publish'";
|
||||
if($last_update!=''){
|
||||
$sql .= " AND UNIX_TIMESTAMP(P.post_modified) > ". $last_update;
|
||||
}
|
||||
$sql .= " ORDER BY P.post_date DESC";
|
||||
|
||||
return $this->execute_sql( $sql );
|
||||
}
|
||||
|
||||
/**
|
||||
* Detail function
|
||||
*
|
||||
* Given an ID returns the message with all details
|
||||
*
|
||||
* @param id Int id of the message whose details want to be found.
|
||||
*/
|
||||
function detail($id){
|
||||
$sql = "SELECT
|
||||
P.ID,
|
||||
P.post_title AS title,
|
||||
P.post_content AS content,
|
||||
P.post_date AS creation_date,
|
||||
P.post_modified AS last_updated,
|
||||
P.guid,
|
||||
IFNULL(NULLIF(TIME_TO_SEC(MD.duration), '' ), 0) AS duration,
|
||||
MD.activity AS no_activity,
|
||||
MD.country,
|
||||
MD.state,
|
||||
MD.city,
|
||||
PMA.guid AS thumbnail
|
||||
FROM wp_posts AS P
|
||||
LEFT JOIN wp_icl_translations T ON T.element_id = P.ID AND T.element_type = 'post_message'
|
||||
LEFT JOIN wp_icl_translations TS ON T.trid = TS.trid AND TS.language_code = 'es'
|
||||
LEFT JOIN wp_messagedata MD ON TS.element_id = MD.post_id
|
||||
LEFT JOIN wp_postmeta PM ON PM.post_id = TS.element_id AND PM.meta_key = '_thumbnail_id'
|
||||
LEFT JOIN wp_posts PMA ON PM.post_id = PMA.ID
|
||||
WHERE P.ID = '$id'";
|
||||
return $this->execute_sql( $sql );
|
||||
}
|
||||
|
||||
/**
|
||||
* Last update function
|
||||
*
|
||||
* Returns the last updated imtestamp for the message passed in via the @id
|
||||
*
|
||||
* @param id Int id for whom the last update should be found
|
||||
*/
|
||||
function last_update($id){
|
||||
$sql = "SELECT
|
||||
P.post_modified AS last_updated
|
||||
FROM wp_posts P
|
||||
WHERE P.ID = '$id'";
|
||||
return $this->execute_sql( $sql );
|
||||
}
|
||||
|
||||
/**
|
||||
* Execute SQL function
|
||||
*
|
||||
* Executes a generic SQL statement and passes back the result.
|
||||
*
|
||||
* @param string sql SQl statement to be executed
|
||||
* @return
|
||||
*/
|
||||
function execute_sql( $sql ){
|
||||
$stmt = $this->conn->prepare($sql);
|
||||
$stmt->execute();
|
||||
return $stmt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Relevant conferences function
|
||||
*
|
||||
* Get all relevant conferences and return
|
||||
*/
|
||||
function relevant_conferences(){
|
||||
$sql = "SELECT
|
||||
option_value
|
||||
FROM wp_options
|
||||
where option_name = 'options_conference'";
|
||||
return $this->execute_sql( $sql );
|
||||
}
|
||||
|
||||
function get_post_source($trid){
|
||||
$sql = "SELECT
|
||||
T.element_id AS post_id
|
||||
FROM wp_icl_translations AS T
|
||||
WHERE T.trid = '$trid'
|
||||
AND T.language_code = 'es'";
|
||||
return $this->execute_sql( $sql );
|
||||
}
|
||||
|
||||
function get_post_language($id){
|
||||
$sql = "SELECT
|
||||
T.language_code,
|
||||
T.trid
|
||||
FROM wp_icl_translations AS T
|
||||
WHERE T.element_id = '$id'
|
||||
AND T.element_type = 'post_message'";
|
||||
return $this->execute_sql( $sql );
|
||||
}
|
||||
|
||||
function get_post_metadata($id){
|
||||
$sql = "SELECT
|
||||
IFNULL(NULLIF(TIME_TO_SEC(MD.duration), '' ), 0) AS duration,
|
||||
MD.country,
|
||||
MD.state,
|
||||
MD.city AS city,
|
||||
MD.activity AS no_activity
|
||||
FROM wp_messagedata AS MD
|
||||
WHERE post_id = '$id'";
|
||||
return $this->execute_sql( $sql );
|
||||
}
|
||||
|
||||
function get_post_files($id){
|
||||
global $wpdb;
|
||||
$sql = "SELECT
|
||||
MF.youtube,
|
||||
MF.livestream,
|
||||
MF.video,
|
||||
MF.audio,
|
||||
MF.audio_flac,
|
||||
MF.pdf,
|
||||
MF.pdf_simple
|
||||
FROM wp_messagefiles as MF
|
||||
WHERE MF.post_id = '$id'";
|
||||
return $this->execute_sql( $sql );
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
|
|
@ -0,0 +1,571 @@
|
|||
<?php
|
||||
|
||||
namespace Markdownify;
|
||||
|
||||
class ConverterExtra extends Converter
|
||||
{
|
||||
|
||||
/**
|
||||
* table data, including rows with content and the maximum width of each col
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $table = [];
|
||||
|
||||
/**
|
||||
* current col
|
||||
*
|
||||
* @var int
|
||||
*/
|
||||
protected $col = -1;
|
||||
|
||||
/**
|
||||
* current row
|
||||
*
|
||||
* @var int
|
||||
*/
|
||||
protected $row = 0;
|
||||
|
||||
/**
|
||||
* constructor, see Markdownify::Markdownify() for more information
|
||||
*/
|
||||
public function __construct($linksAfterEachParagraph = self::LINK_AFTER_CONTENT, $bodyWidth = MDFY_BODYWIDTH, $keepHTML = MDFY_KEEPHTML)
|
||||
{
|
||||
parent::__construct($linksAfterEachParagraph, $bodyWidth, $keepHTML);
|
||||
|
||||
// new markdownable tags & attributes
|
||||
// header ids: # foo {bar}
|
||||
$this->isMarkdownable['h1']['id'] = 'optional';
|
||||
$this->isMarkdownable['h1']['class'] = 'optional';
|
||||
$this->isMarkdownable['h2']['id'] = 'optional';
|
||||
$this->isMarkdownable['h2']['class'] = 'optional';
|
||||
$this->isMarkdownable['h3']['id'] = 'optional';
|
||||
$this->isMarkdownable['h3']['class'] = 'optional';
|
||||
$this->isMarkdownable['h4']['id'] = 'optional';
|
||||
$this->isMarkdownable['h4']['class'] = 'optional';
|
||||
$this->isMarkdownable['h5']['id'] = 'optional';
|
||||
$this->isMarkdownable['h5']['class'] = 'optional';
|
||||
$this->isMarkdownable['h6']['id'] = 'optional';
|
||||
$this->isMarkdownable['h6']['class'] = 'optional';
|
||||
// tables
|
||||
$this->isMarkdownable['table'] = [];
|
||||
$this->isMarkdownable['th'] = [
|
||||
'align' => 'optional',
|
||||
];
|
||||
$this->isMarkdownable['td'] = [
|
||||
'align' => 'optional',
|
||||
];
|
||||
$this->isMarkdownable['tr'] = [];
|
||||
array_push($this->ignore, 'thead');
|
||||
array_push($this->ignore, 'tbody');
|
||||
array_push($this->ignore, 'tfoot');
|
||||
// definition lists
|
||||
$this->isMarkdownable['dl'] = [];
|
||||
$this->isMarkdownable['dd'] = [];
|
||||
$this->isMarkdownable['dt'] = [];
|
||||
// link class
|
||||
$this->isMarkdownable['a']['id'] = 'optional';
|
||||
$this->isMarkdownable['a']['class'] = 'optional';
|
||||
// footnotes
|
||||
$this->isMarkdownable['fnref'] = [
|
||||
'target' => 'required',
|
||||
];
|
||||
$this->isMarkdownable['footnotes'] = [];
|
||||
$this->isMarkdownable['fn'] = [
|
||||
'name' => 'required',
|
||||
];
|
||||
$this->parser->blockElements['fnref'] = false;
|
||||
$this->parser->blockElements['fn'] = true;
|
||||
$this->parser->blockElements['footnotes'] = true;
|
||||
// abbr
|
||||
$this->isMarkdownable['abbr'] = [
|
||||
'title' => 'required',
|
||||
];
|
||||
// build RegEx lookahead to decide wether table can pe parsed or not
|
||||
$inlineTags = array_keys($this->parser->blockElements, false);
|
||||
$colContents = '(?:[^<]|<(?:' . implode('|', $inlineTags) . '|[^a-z]))*';
|
||||
$this->tableLookaheadHeader = '{
|
||||
^\s*(?:<thead\s*>)?\s* # open optional thead
|
||||
<tr\s*>\s*(?: # start required row with headers
|
||||
<th(?:\s+align=("|\')(?:left|center|right)\1)?\s*> # header with optional align
|
||||
\s*' . $colContents . '\s* # contents
|
||||
</th>\s* # close header
|
||||
)+</tr> # close row with headers
|
||||
\s*(?:</thead>)? # close optional thead
|
||||
}sxi';
|
||||
$this->tdSubstitute = '\s*' . $colContents . '\s* # contents
|
||||
</td>\s*';
|
||||
$this->tableLookaheadBody = '{
|
||||
\s*(?:<tbody\s*>)?\s* # open optional tbody
|
||||
(?:<tr\s*>\s* # start row
|
||||
%s # cols to be substituted
|
||||
</tr>)+ # close row
|
||||
\s*(?:</tbody>)? # close optional tbody
|
||||
\s*</table> # close table
|
||||
}sxi';
|
||||
}
|
||||
|
||||
/**
|
||||
* handle header tags (<h1> - <h6>)
|
||||
*
|
||||
* @param int $level 1-6
|
||||
* @return void
|
||||
*/
|
||||
protected function handleHeader($level)
|
||||
{
|
||||
if ($this->parser->isStartTag) {
|
||||
$this->parser->tagAttributes['cssSelector'] = $this->getCurrentCssSelector();
|
||||
$this->stack();
|
||||
} else {
|
||||
$tag = $this->unstack();
|
||||
if (!empty($tag['cssSelector'])) {
|
||||
// {#id.class}
|
||||
$this->out(' {' . $tag['cssSelector'] . '}');
|
||||
}
|
||||
}
|
||||
parent::handleHeader($level);
|
||||
}
|
||||
|
||||
/**
|
||||
* handle <a> tags parsing
|
||||
*
|
||||
* @param void
|
||||
* @return void
|
||||
*/
|
||||
protected function handleTag_a_parser()
|
||||
{
|
||||
parent::handleTag_a_parser();
|
||||
$this->parser->tagAttributes['cssSelector'] = $this->getCurrentCssSelector();
|
||||
}
|
||||
|
||||
/**
|
||||
* handle <a> tags conversion
|
||||
*
|
||||
* @param array $tag
|
||||
* @param string $buffer
|
||||
* @return string The markdownified link
|
||||
*/
|
||||
protected function handleTag_a_converter($tag, $buffer)
|
||||
{
|
||||
$output = parent::handleTag_a_converter($tag, $buffer);
|
||||
if (!empty($tag['cssSelector'])) {
|
||||
// [This link][id]{#id.class}
|
||||
$output .= '{' . $tag['cssSelector'] . '}';
|
||||
}
|
||||
|
||||
return $output;
|
||||
}
|
||||
|
||||
/**
|
||||
* handle <abbr> tags
|
||||
*
|
||||
* @param void
|
||||
* @return void
|
||||
*/
|
||||
protected function handleTag_abbr()
|
||||
{
|
||||
if ($this->parser->isStartTag) {
|
||||
$this->stack();
|
||||
$this->buffer();
|
||||
} else {
|
||||
$tag = $this->unstack();
|
||||
$tag['text'] = $this->unbuffer();
|
||||
$add = true;
|
||||
foreach ($this->stack['abbr'] as $stacked) {
|
||||
if ($stacked['text'] == $tag['text']) {
|
||||
/** TODO: differing abbr definitions, i.e. different titles for same text **/
|
||||
$add = false;
|
||||
break;
|
||||
}
|
||||
}
|
||||
$this->out($tag['text']);
|
||||
if ($add) {
|
||||
array_push($this->stack['abbr'], $tag);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* flush stacked abbr tags
|
||||
*
|
||||
* @param void
|
||||
* @return void
|
||||
*/
|
||||
protected function flushStacked_abbr()
|
||||
{
|
||||
$out = [];
|
||||
foreach ($this->stack['abbr'] as $k => $tag) {
|
||||
if (!isset($tag['unstacked'])) {
|
||||
array_push($out, ' *[' . $tag['text'] . ']: ' . $tag['title']);
|
||||
$tag['unstacked'] = true;
|
||||
$this->stack['abbr'][$k] = $tag;
|
||||
}
|
||||
}
|
||||
if (!empty($out)) {
|
||||
$this->out("\n\n" . implode("\n", $out));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* handle <table> tags
|
||||
*
|
||||
* @param void
|
||||
* @return void
|
||||
*/
|
||||
protected function handleTag_table()
|
||||
{
|
||||
if ($this->parser->isStartTag) {
|
||||
// check if upcoming table can be converted
|
||||
if ($this->keepHTML) {
|
||||
if (preg_match($this->tableLookaheadHeader, $this->parser->html, $matches)) {
|
||||
// header seems good, now check body
|
||||
// get align & number of cols
|
||||
preg_match_all('#<th(?:\s+align=("|\')(left|right|center)\1)?\s*>#si', $matches[0], $cols);
|
||||
$regEx = '';
|
||||
$i = 1;
|
||||
$aligns = [];
|
||||
foreach ($cols[2] as $align) {
|
||||
$align = strtolower($align);
|
||||
array_push($aligns, $align);
|
||||
if (empty($align)) {
|
||||
$align = 'left'; // default value
|
||||
}
|
||||
$td = '\s+align=("|\')' . $align . '\\' . $i;
|
||||
$i++;
|
||||
if ($align == 'left') {
|
||||
// look for empty align or left
|
||||
$td = '(?:' . $td . ')?';
|
||||
}
|
||||
$td = '<td' . $td . '\s*>';
|
||||
$regEx .= $td . $this->tdSubstitute;
|
||||
}
|
||||
$regEx = sprintf($this->tableLookaheadBody, $regEx);
|
||||
if (preg_match($regEx, $this->parser->html, $matches, null, strlen($matches[0]))) {
|
||||
// this is a markdownable table tag!
|
||||
$this->table = [
|
||||
'rows' => [],
|
||||
'col_widths' => [],
|
||||
'aligns' => $aligns,
|
||||
];
|
||||
$this->row = 0;
|
||||
} else {
|
||||
// non markdownable table
|
||||
$this->handleTagToText();
|
||||
}
|
||||
} else {
|
||||
// non markdownable table
|
||||
$this->handleTagToText();
|
||||
}
|
||||
} else {
|
||||
$this->table = [
|
||||
'rows' => [],
|
||||
'col_widths' => [],
|
||||
'aligns' => [],
|
||||
];
|
||||
$this->row = 0;
|
||||
}
|
||||
} else {
|
||||
// finally build the table in Markdown Extra syntax
|
||||
$separator = [];
|
||||
if (!isset($this->table['aligns'])) {
|
||||
$this->table['aligns'] = [];
|
||||
}
|
||||
// seperator with correct align identifiers
|
||||
foreach ($this->table['aligns'] as $col => $align) {
|
||||
if (!$this->keepHTML && !isset($this->table['col_widths'][$col])) {
|
||||
break;
|
||||
}
|
||||
$left = ' ';
|
||||
$right = ' ';
|
||||
switch ($align) {
|
||||
case 'left':
|
||||
$left = ':';
|
||||
break;
|
||||
case 'center':
|
||||
$right = ':';
|
||||
$left = ':';
|
||||
case 'right':
|
||||
$right = ':';
|
||||
break;
|
||||
}
|
||||
array_push($separator, $left . str_repeat('-', $this->table['col_widths'][$col]) . $right);
|
||||
}
|
||||
$separator = '|' . implode('|', $separator) . '|';
|
||||
|
||||
$rows = [];
|
||||
// add padding
|
||||
array_walk_recursive($this->table['rows'], [&$this, 'alignTdContent']);
|
||||
$header = array_shift($this->table['rows']);
|
||||
array_push($rows, '| ' . implode(' | ', $header) . ' |');
|
||||
array_push($rows, $separator);
|
||||
foreach ($this->table['rows'] as $row) {
|
||||
array_push($rows, '| ' . implode(' | ', $row) . ' |');
|
||||
}
|
||||
$this->out(implode("\n" . $this->indent, $rows));
|
||||
$this->table = [];
|
||||
$this->setLineBreaks(2);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* properly pad content so it is aligned as whished
|
||||
* should be used with array_walk_recursive on $this->table['rows']
|
||||
*
|
||||
* @param string &$content
|
||||
* @param int $col
|
||||
* @return void
|
||||
*/
|
||||
protected function alignTdContent(&$content, $col)
|
||||
{
|
||||
if (!isset($this->table['aligns'][$col])) {
|
||||
$this->table['aligns'][$col] = 'left';
|
||||
}
|
||||
switch ($this->table['aligns'][$col]) {
|
||||
default:
|
||||
case 'left':
|
||||
$content .= str_repeat(' ', $this->table['col_widths'][$col] - $this->strlen($content));
|
||||
break;
|
||||
case 'right':
|
||||
$content = str_repeat(' ', $this->table['col_widths'][$col] - $this->strlen($content)) . $content;
|
||||
break;
|
||||
case 'center':
|
||||
$paddingNeeded = $this->table['col_widths'][$col] - $this->strlen($content);
|
||||
$left = floor($paddingNeeded / 2);
|
||||
$right = $paddingNeeded - $left;
|
||||
$content = str_repeat(' ', $left) . $content . str_repeat(' ', $right);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* handle <tr> tags
|
||||
*
|
||||
* @param void
|
||||
* @return void
|
||||
*/
|
||||
protected function handleTag_tr()
|
||||
{
|
||||
if ($this->parser->isStartTag) {
|
||||
$this->col = -1;
|
||||
} else {
|
||||
$this->row++;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* handle <td> tags
|
||||
*
|
||||
* @param void
|
||||
* @return void
|
||||
*/
|
||||
protected function handleTag_td()
|
||||
{
|
||||
if ($this->parser->isStartTag) {
|
||||
$this->col++;
|
||||
if (!isset($this->table['col_widths'][$this->col])) {
|
||||
$this->table['col_widths'][$this->col] = 0;
|
||||
}
|
||||
$this->buffer();
|
||||
} else {
|
||||
$buffer = trim($this->unbuffer());
|
||||
if (!isset($this->table['col_widths'][$this->col])) {
|
||||
$this->table['col_widths'][$this->col] = 0;
|
||||
}
|
||||
$this->table['col_widths'][$this->col] = max($this->table['col_widths'][$this->col], $this->strlen($buffer));
|
||||
$this->table['rows'][$this->row][$this->col] = $buffer;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* handle <th> tags
|
||||
*
|
||||
* @param void
|
||||
* @return void
|
||||
*/
|
||||
protected function handleTag_th()
|
||||
{
|
||||
if (!$this->keepHTML && !isset($this->table['rows'][1]) && !isset($this->table['aligns'][$this->col + 1])) {
|
||||
if (isset($this->parser->tagAttributes['align'])) {
|
||||
$this->table['aligns'][$this->col + 1] = $this->parser->tagAttributes['align'];
|
||||
} else {
|
||||
$this->table['aligns'][$this->col + 1] = '';
|
||||
}
|
||||
}
|
||||
$this->handleTag_td();
|
||||
}
|
||||
|
||||
/**
|
||||
* handle <dl> tags
|
||||
*
|
||||
* @param void
|
||||
* @return void
|
||||
*/
|
||||
protected function handleTag_dl()
|
||||
{
|
||||
if (!$this->parser->isStartTag) {
|
||||
$this->setLineBreaks(2);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* handle <dt> tags
|
||||
*
|
||||
* @param void
|
||||
* @return void
|
||||
**/
|
||||
protected function handleTag_dt()
|
||||
{
|
||||
if (!$this->parser->isStartTag) {
|
||||
$this->setLineBreaks(1);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* handle <dd> tags
|
||||
*
|
||||
* @param void
|
||||
* @return void
|
||||
*/
|
||||
protected function handleTag_dd()
|
||||
{
|
||||
if ($this->parser->isStartTag) {
|
||||
if (substr(ltrim($this->parser->html), 0, 3) == '<p>') {
|
||||
// next comes a paragraph, so we'll need an extra line
|
||||
$this->out("\n" . $this->indent);
|
||||
} elseif (substr($this->output, -2) == "\n\n") {
|
||||
$this->output = substr($this->output, 0, -1);
|
||||
}
|
||||
$this->out(': ');
|
||||
$this->indent(' ', false);
|
||||
} else {
|
||||
// lookahead for next dt
|
||||
if (substr(ltrim($this->parser->html), 0, 4) == '<dt>') {
|
||||
$this->setLineBreaks(2);
|
||||
} else {
|
||||
$this->setLineBreaks(1);
|
||||
}
|
||||
$this->indent(' ');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* handle <fnref /> tags (custom footnote references, see markdownify_extra::parseString())
|
||||
*
|
||||
* @param void
|
||||
* @return void
|
||||
*/
|
||||
protected function handleTag_fnref()
|
||||
{
|
||||
$this->out('[^' . $this->parser->tagAttributes['target'] . ']');
|
||||
}
|
||||
|
||||
/**
|
||||
* handle <fn> tags (custom footnotes, see markdownify_extra::parseString()
|
||||
* and markdownify_extra::_makeFootnotes())
|
||||
*
|
||||
* @param void
|
||||
* @return void
|
||||
*/
|
||||
protected function handleTag_fn()
|
||||
{
|
||||
if ($this->parser->isStartTag) {
|
||||
$this->out('[^' . $this->parser->tagAttributes['name'] . ']:');
|
||||
$this->setLineBreaks(1);
|
||||
} else {
|
||||
$this->setLineBreaks(2);
|
||||
}
|
||||
$this->indent(' ');
|
||||
}
|
||||
|
||||
/**
|
||||
* handle <footnotes> tag (custom footnotes, see markdownify_extra::parseString()
|
||||
* and markdownify_extra::_makeFootnotes())
|
||||
*
|
||||
* @param void
|
||||
* @return void
|
||||
*/
|
||||
protected function handleTag_footnotes()
|
||||
{
|
||||
if (!$this->parser->isStartTag) {
|
||||
$this->setLineBreaks(2);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* parse a HTML string, clean up footnotes prior
|
||||
*
|
||||
* @param string $HTML input
|
||||
* @return string Markdown formatted output
|
||||
*/
|
||||
public function parseString($html)
|
||||
{
|
||||
/** TODO: custom markdown-extra options, e.g. titles & classes **/
|
||||
// <sup id="fnref:..."><a href"#fn..." rel="footnote">...</a></sup>
|
||||
// => <fnref target="..." />
|
||||
$html = preg_replace('@<sup id="fnref:([^"]+)">\s*<a href="#fn:\1" rel="footnote">\s*\d+\s*</a>\s*</sup>@Us', '<fnref target="$1" />', $html);
|
||||
// <div class="footnotes">
|
||||
// <hr />
|
||||
// <ol>
|
||||
//
|
||||
// <li id="fn:...">...</li>
|
||||
// ...
|
||||
//
|
||||
// </ol>
|
||||
// </div>
|
||||
// =>
|
||||
// <footnotes>
|
||||
// <fn name="...">...</fn>
|
||||
// ...
|
||||
// </footnotes>
|
||||
$html = preg_replace_callback('#<div class="footnotes">\s*<hr />\s*<ol>\s*(.+)\s*</ol>\s*</div>#Us', [&$this, '_makeFootnotes'], $html);
|
||||
|
||||
return parent::parseString($html);
|
||||
}
|
||||
|
||||
/**
|
||||
* replace HTML representation of footnotes with something more easily parsable
|
||||
*
|
||||
* @note this is a callback to be used in parseString()
|
||||
*
|
||||
* @param array $matches
|
||||
* @return string
|
||||
*/
|
||||
protected function _makeFootnotes($matches)
|
||||
{
|
||||
// <li id="fn:1">
|
||||
// ...
|
||||
// <a href="#fnref:block" rev="footnote">↩</a></p>
|
||||
// </li>
|
||||
// => <fn name="1">...</fn>
|
||||
// remove footnote link
|
||||
$fns = preg_replace('@\s*( \s*)?<a href="#fnref:[^"]+" rev="footnote"[^>]*>↩</a>\s*@s', '', $matches[1]);
|
||||
// remove empty paragraph
|
||||
$fns = preg_replace('@<p>\s*</p>@s', '', $fns);
|
||||
// <li id="fn:1">...</li> -> <footnote nr="1">...</footnote>
|
||||
$fns = str_replace('<li id="fn:', '<fn name="', $fns);
|
||||
|
||||
$fns = '<footnotes>' . $fns . '</footnotes>';
|
||||
|
||||
return preg_replace('#</li>\s*(?=(?:<fn|</footnotes>))#s', '</fn>$1', $fns);
|
||||
}
|
||||
|
||||
/**
|
||||
* handle <a> tags parsing
|
||||
*
|
||||
* @param void
|
||||
* @return void
|
||||
*/
|
||||
protected function getCurrentCssSelector()
|
||||
{
|
||||
$cssSelector = '';
|
||||
if (isset($this->parser->tagAttributes['id'])) {
|
||||
$cssSelector .= '#' . $this->decode($this->parser->tagAttributes['id']);
|
||||
}
|
||||
if (isset($this->parser->tagAttributes['class'])) {
|
||||
$classes = explode(' ', $this->decode($this->parser->tagAttributes['class']));
|
||||
$classes = array_filter($classes);
|
||||
$cssSelector .= '.' . join('.', $classes);
|
||||
}
|
||||
return $cssSelector;
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,564 @@
|
|||
<?php
|
||||
|
||||
namespace Markdownify;
|
||||
|
||||
class Parser
|
||||
{
|
||||
public static $skipWhitespace = true;
|
||||
public static $a_ord;
|
||||
public static $z_ord;
|
||||
public static $special_ords;
|
||||
|
||||
/**
|
||||
* tags which are always empty (<br /> etc.)
|
||||
*
|
||||
* @var array<string>
|
||||
*/
|
||||
public $emptyTags = [
|
||||
'br',
|
||||
'hr',
|
||||
'input',
|
||||
'img',
|
||||
'area',
|
||||
'link',
|
||||
'meta',
|
||||
'param',
|
||||
];
|
||||
|
||||
/**
|
||||
* tags with preformatted text
|
||||
* whitespaces wont be touched in them
|
||||
*
|
||||
* @var array<string>
|
||||
*/
|
||||
public $preformattedTags = [
|
||||
'script',
|
||||
'style',
|
||||
'pre',
|
||||
'code',
|
||||
];
|
||||
|
||||
/**
|
||||
* supress HTML tags inside preformatted tags (see above)
|
||||
*
|
||||
* @var bool
|
||||
*/
|
||||
public $noTagsInCode = false;
|
||||
|
||||
/**
|
||||
* html to be parsed
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $html = '';
|
||||
|
||||
/**
|
||||
* node type:
|
||||
*
|
||||
* - tag (see isStartTag)
|
||||
* - text (includes cdata)
|
||||
* - comment
|
||||
* - doctype
|
||||
* - pi (processing instruction)
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $nodeType = '';
|
||||
|
||||
/**
|
||||
* current node content, i.e. either a
|
||||
* simple string (text node), or something like
|
||||
* <tag attrib="value"...>
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $node = '';
|
||||
|
||||
/**
|
||||
* wether current node is an opening tag (<a>) or not (</a>)
|
||||
* set to NULL if current node is not a tag
|
||||
* NOTE: empty tags (<br />) set this to true as well!
|
||||
*
|
||||
* @var bool | null
|
||||
*/
|
||||
public $isStartTag = null;
|
||||
|
||||
/**
|
||||
* wether current node is an empty tag (<br />) or not (<a></a>)
|
||||
*
|
||||
* @var bool | null
|
||||
*/
|
||||
public $isEmptyTag = null;
|
||||
|
||||
/**
|
||||
* tag name
|
||||
*
|
||||
* @var string | null
|
||||
*/
|
||||
public $tagName = '';
|
||||
|
||||
/**
|
||||
* attributes of current tag
|
||||
*
|
||||
* @var array (attribName=>value) | null
|
||||
*/
|
||||
public $tagAttributes = null;
|
||||
|
||||
/**
|
||||
* whether or not the actual context is a inline context
|
||||
*
|
||||
* @var bool | null
|
||||
*/
|
||||
public $isInlineContext = null;
|
||||
|
||||
/**
|
||||
* whether the current tag is a block element
|
||||
*
|
||||
* @var bool | null
|
||||
*/
|
||||
public $isBlockElement = null;
|
||||
|
||||
/**
|
||||
* whether the previous tag (browser) is a block element
|
||||
*
|
||||
* @var bool | null
|
||||
*/
|
||||
public $isNextToInlineContext = null;
|
||||
|
||||
/**
|
||||
* keep whitespace
|
||||
*
|
||||
* @var int
|
||||
*/
|
||||
public $keepWhitespace = 0;
|
||||
|
||||
/**
|
||||
* list of open tags
|
||||
* count this to get current depth
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
public $openTags = [];
|
||||
|
||||
/**
|
||||
* list of block elements
|
||||
*
|
||||
* @var array
|
||||
* TODO: what shall we do with <del> and <ins> ?!
|
||||
*/
|
||||
public $blockElements = [
|
||||
// tag name => <bool> is block
|
||||
// block elements
|
||||
'address' => true,
|
||||
'aside' => true,
|
||||
'blockquote' => true,
|
||||
'center' => true,
|
||||
'del' => true,
|
||||
'dir' => true,
|
||||
'div' => true,
|
||||
'dl' => true,
|
||||
'fieldset' => true,
|
||||
'form' => true,
|
||||
'h1' => true,
|
||||
'h2' => true,
|
||||
'h3' => true,
|
||||
'h4' => true,
|
||||
'h5' => true,
|
||||
'h6' => true,
|
||||
'hr' => true,
|
||||
'ins' => true,
|
||||
'isindex' => true,
|
||||
'menu' => true,
|
||||
'noframes' => true,
|
||||
'noscript' => true,
|
||||
'ol' => true,
|
||||
'p' => true,
|
||||
'pre' => true,
|
||||
'table' => true,
|
||||
'ul' => true,
|
||||
// set table elements and list items to block as well
|
||||
'thead' => true,
|
||||
'tbody' => true,
|
||||
'tfoot' => true,
|
||||
'td' => true,
|
||||
'tr' => true,
|
||||
'th' => true,
|
||||
'li' => true,
|
||||
'dd' => true,
|
||||
'dt' => true,
|
||||
// header items and html / body as well
|
||||
'html' => true,
|
||||
'body' => true,
|
||||
'head' => true,
|
||||
'meta' => true,
|
||||
'link' => true,
|
||||
'style' => true,
|
||||
'title' => true,
|
||||
// unfancy media tags, when indented should be rendered as block
|
||||
'map' => true,
|
||||
'object' => true,
|
||||
'param' => true,
|
||||
'embed' => true,
|
||||
'area' => true,
|
||||
// inline elements
|
||||
'a' => false,
|
||||
'abbr' => false,
|
||||
'acronym' => false,
|
||||
'applet' => false,
|
||||
'b' => false,
|
||||
'basefont' => false,
|
||||
'bdo' => false,
|
||||
'big' => false,
|
||||
'br' => false,
|
||||
'button' => false,
|
||||
'cite' => false,
|
||||
'code' => false,
|
||||
'del' => false,
|
||||
'dfn' => false,
|
||||
'em' => false,
|
||||
'font' => false,
|
||||
'i' => false,
|
||||
'img' => false,
|
||||
'ins' => false,
|
||||
'input' => false,
|
||||
'iframe' => false,
|
||||
'kbd' => false,
|
||||
'label' => false,
|
||||
'q' => false,
|
||||
'samp' => false,
|
||||
'script' => false,
|
||||
'select' => false,
|
||||
'small' => false,
|
||||
'span' => false,
|
||||
'strong' => false,
|
||||
'sub' => false,
|
||||
'sup' => false,
|
||||
'textarea' => false,
|
||||
'tt' => false,
|
||||
'u' => false,
|
||||
'var' => false,
|
||||
];
|
||||
|
||||
/**
|
||||
* get next node, set $this->html prior!
|
||||
*
|
||||
* @param void
|
||||
* @return bool
|
||||
*/
|
||||
public function nextNode()
|
||||
{
|
||||
if (empty($this->html)) {
|
||||
// we are done with parsing the html string
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
if ($this->isStartTag && !$this->isEmptyTag) {
|
||||
array_push($this->openTags, $this->tagName);
|
||||
if (in_array($this->tagName, $this->preformattedTags)) {
|
||||
// don't truncate whitespaces for <code> or <pre> contents
|
||||
$this->keepWhitespace++;
|
||||
}
|
||||
}
|
||||
|
||||
if ($this->html[0] == '<') {
|
||||
$token = substr($this->html, 0, 9);
|
||||
if (substr($token, 0, 2) == '<?') {
|
||||
// xml prolog or other pi's
|
||||
/** TODO **/
|
||||
// trigger_error('this might need some work', E_USER_NOTICE);
|
||||
$pos = strpos($this->html, '>');
|
||||
$this->setNode('pi', $pos + 1);
|
||||
|
||||
return true;
|
||||
}
|
||||
if (substr($token, 0, 4) == '<!--') {
|
||||
// comment
|
||||
$pos = strpos($this->html, '-->');
|
||||
if ($pos === false) {
|
||||
// could not find a closing -->, use next gt instead
|
||||
// this is firefox' behaviour
|
||||
$pos = strpos($this->html, '>') + 1;
|
||||
} else {
|
||||
$pos += 3;
|
||||
}
|
||||
$this->setNode('comment', $pos);
|
||||
|
||||
static::$skipWhitespace = true;
|
||||
|
||||
return true;
|
||||
}
|
||||
if ($token == '<!DOCTYPE') {
|
||||
// doctype
|
||||
$this->setNode('doctype', strpos($this->html, '>') + 1);
|
||||
|
||||
static::$skipWhitespace = true;
|
||||
|
||||
return true;
|
||||
}
|
||||
if ($token == '<![CDATA[') {
|
||||
// cdata, use text node
|
||||
|
||||
// remove leading <![CDATA[
|
||||
$this->html = substr($this->html, 9);
|
||||
|
||||
$this->setNode('text', strpos($this->html, ']]>') + 3);
|
||||
|
||||
// remove trailing ]]> and trim
|
||||
$this->node = substr($this->node, 0, -3);
|
||||
$this->handleWhitespaces();
|
||||
|
||||
static::$skipWhitespace = true;
|
||||
|
||||
return true;
|
||||
}
|
||||
if ($this->parseTag()) {
|
||||
// seems to be a tag
|
||||
// handle whitespaces
|
||||
if ($this->isBlockElement) {
|
||||
static::$skipWhitespace = true;
|
||||
} else {
|
||||
static::$skipWhitespace = false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
||||
if ($this->keepWhitespace) {
|
||||
static::$skipWhitespace = false;
|
||||
}
|
||||
// when we get here it seems to be a text node
|
||||
$pos = strpos($this->html, '<');
|
||||
if ($pos === false) {
|
||||
$pos = strlen($this->html);
|
||||
}
|
||||
$this->setNode('text', $pos);
|
||||
$this->handleWhitespaces();
|
||||
if (static::$skipWhitespace && $this->node == ' ') {
|
||||
return $this->nextNode();
|
||||
}
|
||||
$this->isInlineContext = true;
|
||||
static::$skipWhitespace = false;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* parse tag, set tag name and attributes, see if it's a closing tag and so forth...
|
||||
*
|
||||
* @param void
|
||||
* @return bool
|
||||
*/
|
||||
protected function parseTag()
|
||||
{
|
||||
if (!isset(static::$a_ord)) {
|
||||
static::$a_ord = ord('a');
|
||||
static::$z_ord = ord('z');
|
||||
static::$special_ords = [
|
||||
ord(':'), // for xml:lang
|
||||
ord('-'), // for http-equiv
|
||||
];
|
||||
}
|
||||
|
||||
$tagName = '';
|
||||
|
||||
$pos = 1;
|
||||
$isStartTag = $this->html[$pos] != '/';
|
||||
if (!$isStartTag) {
|
||||
$pos++;
|
||||
}
|
||||
// get tagName
|
||||
while (isset($this->html[$pos])) {
|
||||
$pos_ord = ord(strtolower($this->html[$pos]));
|
||||
if (($pos_ord >= static::$a_ord && $pos_ord <= static::$z_ord) || (!empty($tagName) && is_numeric($this->html[$pos]))) {
|
||||
$tagName .= $this->html[$pos];
|
||||
$pos++;
|
||||
} else {
|
||||
$pos--;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
$tagName = strtolower($tagName);
|
||||
if (empty($tagName) || !isset($this->blockElements[$tagName])) {
|
||||
// something went wrong => invalid tag
|
||||
$this->invalidTag();
|
||||
|
||||
return false;
|
||||
}
|
||||
if ($this->noTagsInCode && end($this->openTags) == 'code' && !($tagName == 'code' && !$isStartTag)) {
|
||||
// we supress all HTML tags inside code tags
|
||||
$this->invalidTag();
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
// get tag attributes
|
||||
/** TODO: in html 4 attributes do not need to be quoted **/
|
||||
$isEmptyTag = false;
|
||||
$attributes = [];
|
||||
$currAttrib = '';
|
||||
while (isset($this->html[$pos + 1])) {
|
||||
$pos++;
|
||||
// close tag
|
||||
if ($this->html[$pos] == '>' || $this->html[$pos] . $this->html[$pos + 1] == '/>') {
|
||||
if ($this->html[$pos] == '/') {
|
||||
$isEmptyTag = true;
|
||||
$pos++;
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
$pos_ord = ord(strtolower($this->html[$pos]));
|
||||
if (($pos_ord >= static::$a_ord && $pos_ord <= static::$z_ord) || in_array($pos_ord, static::$special_ords)) {
|
||||
// attribute name
|
||||
$currAttrib .= $this->html[$pos];
|
||||
} elseif (in_array($this->html[$pos], [' ', "\t", "\n"])) {
|
||||
// drop whitespace
|
||||
} elseif (in_array($this->html[$pos] . $this->html[$pos + 1], ['="', "='"])) {
|
||||
// get attribute value
|
||||
$pos++;
|
||||
$await = $this->html[$pos]; // single or double quote
|
||||
$pos++;
|
||||
$value = '';
|
||||
while (isset($this->html[$pos]) && $this->html[$pos] != $await) {
|
||||
$value .= $this->html[$pos];
|
||||
$pos++;
|
||||
}
|
||||
$attributes[$currAttrib] = $value;
|
||||
$currAttrib = '';
|
||||
} else {
|
||||
$this->invalidTag();
|
||||
|
||||
return false;
|
||||
}
|
||||
}
|
||||
if ($this->html[$pos] != '>') {
|
||||
$this->invalidTag();
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
if (!empty($currAttrib)) {
|
||||
// html 4 allows something like <option selected> instead of <option selected="selected">
|
||||
$attributes[$currAttrib] = $currAttrib;
|
||||
}
|
||||
if (!$isStartTag) {
|
||||
if (!empty($attributes) || $tagName != end($this->openTags)) {
|
||||
// end tags must not contain any attributes
|
||||
// or maybe we did not expect a different tag to be closed
|
||||
$this->invalidTag();
|
||||
|
||||
return false;
|
||||
}
|
||||
array_pop($this->openTags);
|
||||
if (in_array($tagName, $this->preformattedTags)) {
|
||||
$this->keepWhitespace--;
|
||||
}
|
||||
}
|
||||
$pos++;
|
||||
$this->node = substr($this->html, 0, $pos);
|
||||
$this->html = substr($this->html, $pos);
|
||||
$this->tagName = $tagName;
|
||||
$this->tagAttributes = $attributes;
|
||||
$this->isStartTag = $isStartTag;
|
||||
$this->isEmptyTag = $isEmptyTag || in_array($tagName, $this->emptyTags);
|
||||
if ($this->isEmptyTag) {
|
||||
// might be not well formed
|
||||
$this->node = preg_replace('# */? *>$#', ' />', $this->node);
|
||||
}
|
||||
$this->nodeType = 'tag';
|
||||
$this->isBlockElement = $this->blockElements[$tagName];
|
||||
$this->isNextToInlineContext = $isStartTag && $this->isInlineContext;
|
||||
$this->isInlineContext = !$this->isBlockElement;
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* handle invalid tags
|
||||
*
|
||||
* @param void
|
||||
* @return void
|
||||
*/
|
||||
protected function invalidTag()
|
||||
{
|
||||
$this->html = substr_replace($this->html, '<', 0, 1);
|
||||
}
|
||||
|
||||
/**
|
||||
* update all vars and make $this->html shorter
|
||||
*
|
||||
* @param string $type see description for $this->nodeType
|
||||
* @param int $pos to which position shall we cut?
|
||||
* @return void
|
||||
*/
|
||||
protected function setNode($type, $pos)
|
||||
{
|
||||
if ($this->nodeType == 'tag') {
|
||||
// set tag specific vars to null
|
||||
// $type == tag should not be called here
|
||||
// see this::parseTag() for more
|
||||
$this->tagName = null;
|
||||
$this->tagAttributes = null;
|
||||
$this->isStartTag = null;
|
||||
$this->isEmptyTag = null;
|
||||
$this->isBlockElement = null;
|
||||
|
||||
}
|
||||
$this->nodeType = $type;
|
||||
$this->node = substr($this->html, 0, $pos);
|
||||
$this->html = substr($this->html, $pos);
|
||||
}
|
||||
|
||||
/**
|
||||
* check if $this->html begins with $str
|
||||
*
|
||||
* @param string $str
|
||||
* @return bool
|
||||
*/
|
||||
protected function match($str)
|
||||
{
|
||||
return substr($this->html, 0, strlen($str)) == $str;
|
||||
}
|
||||
|
||||
/**
|
||||
* truncate whitespaces
|
||||
*
|
||||
* @param void
|
||||
* @return void
|
||||
*/
|
||||
protected function handleWhitespaces()
|
||||
{
|
||||
if ($this->keepWhitespace) {
|
||||
// <pre> or <code> before...
|
||||
|
||||
return;
|
||||
}
|
||||
// truncate multiple whitespaces to a single one
|
||||
$this->node = preg_replace('#\s+#s', ' ', $this->node);
|
||||
}
|
||||
|
||||
/**
|
||||
* normalize self::node
|
||||
*
|
||||
* @param void
|
||||
* @return void
|
||||
*/
|
||||
protected function normalizeNode()
|
||||
{
|
||||
$this->node = '<';
|
||||
if (!$this->isStartTag) {
|
||||
$this->node .= '/' . $this->tagName . '>';
|
||||
|
||||
return;
|
||||
}
|
||||
$this->node .= $this->tagName;
|
||||
foreach ($this->tagAttributes as $name => $value) {
|
||||
$this->node .= ' ' . $name . '="' . str_replace('"', '"', $value) . '"';
|
||||
}
|
||||
if ($this->isEmptyTag) {
|
||||
$this->node .= ' /';
|
||||
}
|
||||
$this->node .= '>';
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"require": {
|
||||
"league/html-to-markdown": "^5.1"
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,108 @@
|
|||
{
|
||||
"_readme": [
|
||||
"This file locks the dependencies of your project to a known state",
|
||||
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
||||
"This file is @generated automatically"
|
||||
],
|
||||
"content-hash": "55d22588d74c4cd2af8b00fa004ab06f",
|
||||
"packages": [
|
||||
{
|
||||
"name": "league/html-to-markdown",
|
||||
"version": "5.1.1",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/thephpleague/html-to-markdown.git",
|
||||
"reference": "0b4066eede55c48f38bcee4fb8f0aa85654390fd"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/thephpleague/html-to-markdown/zipball/0b4066eede55c48f38bcee4fb8f0aa85654390fd",
|
||||
"reference": "0b4066eede55c48f38bcee4fb8f0aa85654390fd",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"ext-dom": "*",
|
||||
"ext-xml": "*",
|
||||
"php": "^7.2.5 || ^8.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"mikehaertl/php-shellcommand": "^1.1.0",
|
||||
"phpstan/phpstan": "^1.8.8",
|
||||
"phpunit/phpunit": "^8.5 || ^9.2",
|
||||
"scrutinizer/ocular": "^1.6",
|
||||
"unleashedtech/php-coding-standard": "^2.7 || ^3.0",
|
||||
"vimeo/psalm": "^4.22 || ^5.0"
|
||||
},
|
||||
"bin": [
|
||||
"bin/html-to-markdown"
|
||||
],
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-master": "5.2-dev"
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"League\\HTMLToMarkdown\\": "src/"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Colin O'Dell",
|
||||
"email": "colinodell@gmail.com",
|
||||
"homepage": "https://www.colinodell.com",
|
||||
"role": "Lead Developer"
|
||||
},
|
||||
{
|
||||
"name": "Nick Cernis",
|
||||
"email": "nick@cern.is",
|
||||
"homepage": "http://modernnerd.net",
|
||||
"role": "Original Author"
|
||||
}
|
||||
],
|
||||
"description": "An HTML-to-markdown conversion helper for PHP",
|
||||
"homepage": "https://github.com/thephpleague/html-to-markdown",
|
||||
"keywords": [
|
||||
"html",
|
||||
"markdown"
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/thephpleague/html-to-markdown/issues",
|
||||
"source": "https://github.com/thephpleague/html-to-markdown/tree/5.1.1"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
"url": "https://www.colinodell.com/sponsor",
|
||||
"type": "custom"
|
||||
},
|
||||
{
|
||||
"url": "https://www.paypal.me/colinpodell/10.00",
|
||||
"type": "custom"
|
||||
},
|
||||
{
|
||||
"url": "https://github.com/colinodell",
|
||||
"type": "github"
|
||||
},
|
||||
{
|
||||
"url": "https://tidelift.com/funding/github/packagist/league/html-to-markdown",
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2023-07-12T21:21:09+00:00"
|
||||
}
|
||||
],
|
||||
"packages-dev": [],
|
||||
"aliases": [],
|
||||
"minimum-stability": "stable",
|
||||
"stability-flags": {},
|
||||
"prefer-stable": false,
|
||||
"prefer-lowest": false,
|
||||
"platform": {},
|
||||
"platform-dev": {},
|
||||
"plugin-api-version": "2.6.0"
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -0,0 +1,22 @@
|
|||
<?php
|
||||
|
||||
// autoload.php @generated by Composer
|
||||
|
||||
if (PHP_VERSION_ID < 50600) {
|
||||
if (!headers_sent()) {
|
||||
header('HTTP/1.1 500 Internal Server Error');
|
||||
}
|
||||
$err = 'Composer 2.3.0 dropped support for autoloading on PHP <5.6 and you are running '.PHP_VERSION.', please upgrade PHP or use Composer 2.2 LTS via "composer self-update --2.2". Aborting.'.PHP_EOL;
|
||||
if (!ini_get('display_errors')) {
|
||||
if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') {
|
||||
fwrite(STDERR, $err);
|
||||
} elseif (!headers_sent()) {
|
||||
echo $err;
|
||||
}
|
||||
}
|
||||
throw new RuntimeException($err);
|
||||
}
|
||||
|
||||
require_once __DIR__ . '/composer/autoload_real.php';
|
||||
|
||||
return ComposerAutoloaderInitdb3a7396952dda2756e33f76aa22435a::getLoader();
|
||||
|
|
@ -0,0 +1,119 @@
|
|||
#!/usr/bin/env php
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Proxy PHP file generated by Composer
|
||||
*
|
||||
* This file includes the referenced bin path (../league/html-to-markdown/bin/html-to-markdown)
|
||||
* using a stream wrapper to prevent the shebang from being output on PHP<8
|
||||
*
|
||||
* @generated
|
||||
*/
|
||||
|
||||
namespace Composer;
|
||||
|
||||
$GLOBALS['_composer_bin_dir'] = __DIR__;
|
||||
$GLOBALS['_composer_autoload_path'] = __DIR__ . '/..'.'/autoload.php';
|
||||
|
||||
if (PHP_VERSION_ID < 80000) {
|
||||
if (!class_exists('Composer\BinProxyWrapper')) {
|
||||
/**
|
||||
* @internal
|
||||
*/
|
||||
final class BinProxyWrapper
|
||||
{
|
||||
private $handle;
|
||||
private $position;
|
||||
private $realpath;
|
||||
|
||||
public function stream_open($path, $mode, $options, &$opened_path)
|
||||
{
|
||||
// get rid of phpvfscomposer:// prefix for __FILE__ & __DIR__ resolution
|
||||
$opened_path = substr($path, 17);
|
||||
$this->realpath = realpath($opened_path) ?: $opened_path;
|
||||
$opened_path = $this->realpath;
|
||||
$this->handle = fopen($this->realpath, $mode);
|
||||
$this->position = 0;
|
||||
|
||||
return (bool) $this->handle;
|
||||
}
|
||||
|
||||
public function stream_read($count)
|
||||
{
|
||||
$data = fread($this->handle, $count);
|
||||
|
||||
if ($this->position === 0) {
|
||||
$data = preg_replace('{^#!.*\r?\n}', '', $data);
|
||||
}
|
||||
|
||||
$this->position += strlen($data);
|
||||
|
||||
return $data;
|
||||
}
|
||||
|
||||
public function stream_cast($castAs)
|
||||
{
|
||||
return $this->handle;
|
||||
}
|
||||
|
||||
public function stream_close()
|
||||
{
|
||||
fclose($this->handle);
|
||||
}
|
||||
|
||||
public function stream_lock($operation)
|
||||
{
|
||||
return $operation ? flock($this->handle, $operation) : true;
|
||||
}
|
||||
|
||||
public function stream_seek($offset, $whence)
|
||||
{
|
||||
if (0 === fseek($this->handle, $offset, $whence)) {
|
||||
$this->position = ftell($this->handle);
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
public function stream_tell()
|
||||
{
|
||||
return $this->position;
|
||||
}
|
||||
|
||||
public function stream_eof()
|
||||
{
|
||||
return feof($this->handle);
|
||||
}
|
||||
|
||||
public function stream_stat()
|
||||
{
|
||||
return array();
|
||||
}
|
||||
|
||||
public function stream_set_option($option, $arg1, $arg2)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
public function url_stat($path, $flags)
|
||||
{
|
||||
$path = substr($path, 17);
|
||||
if (file_exists($path)) {
|
||||
return stat($path);
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (
|
||||
(function_exists('stream_get_wrappers') && in_array('phpvfscomposer', stream_get_wrappers(), true))
|
||||
|| (function_exists('stream_wrapper_register') && stream_wrapper_register('phpvfscomposer', 'Composer\BinProxyWrapper'))
|
||||
) {
|
||||
return include("phpvfscomposer://" . __DIR__ . '/..'.'/league/html-to-markdown/bin/html-to-markdown');
|
||||
}
|
||||
}
|
||||
|
||||
return include __DIR__ . '/..'.'/league/html-to-markdown/bin/html-to-markdown';
|
||||
|
|
@ -0,0 +1,579 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of Composer.
|
||||
*
|
||||
* (c) Nils Adermann <naderman@naderman.de>
|
||||
* Jordi Boggiano <j.boggiano@seld.be>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Composer\Autoload;
|
||||
|
||||
/**
|
||||
* ClassLoader implements a PSR-0, PSR-4 and classmap class loader.
|
||||
*
|
||||
* $loader = new \Composer\Autoload\ClassLoader();
|
||||
*
|
||||
* // register classes with namespaces
|
||||
* $loader->add('Symfony\Component', __DIR__.'/component');
|
||||
* $loader->add('Symfony', __DIR__.'/framework');
|
||||
*
|
||||
* // activate the autoloader
|
||||
* $loader->register();
|
||||
*
|
||||
* // to enable searching the include path (eg. for PEAR packages)
|
||||
* $loader->setUseIncludePath(true);
|
||||
*
|
||||
* In this example, if you try to use a class in the Symfony\Component
|
||||
* namespace or one of its children (Symfony\Component\Console for instance),
|
||||
* the autoloader will first look for the class under the component/
|
||||
* directory, and it will then fallback to the framework/ directory if not
|
||||
* found before giving up.
|
||||
*
|
||||
* This class is loosely based on the Symfony UniversalClassLoader.
|
||||
*
|
||||
* @author Fabien Potencier <fabien@symfony.com>
|
||||
* @author Jordi Boggiano <j.boggiano@seld.be>
|
||||
* @see https://www.php-fig.org/psr/psr-0/
|
||||
* @see https://www.php-fig.org/psr/psr-4/
|
||||
*/
|
||||
class ClassLoader
|
||||
{
|
||||
/** @var \Closure(string):void */
|
||||
private static $includeFile;
|
||||
|
||||
/** @var string|null */
|
||||
private $vendorDir;
|
||||
|
||||
// PSR-4
|
||||
/**
|
||||
* @var array<string, array<string, int>>
|
||||
*/
|
||||
private $prefixLengthsPsr4 = array();
|
||||
/**
|
||||
* @var array<string, list<string>>
|
||||
*/
|
||||
private $prefixDirsPsr4 = array();
|
||||
/**
|
||||
* @var list<string>
|
||||
*/
|
||||
private $fallbackDirsPsr4 = array();
|
||||
|
||||
// PSR-0
|
||||
/**
|
||||
* List of PSR-0 prefixes
|
||||
*
|
||||
* Structured as array('F (first letter)' => array('Foo\Bar (full prefix)' => array('path', 'path2')))
|
||||
*
|
||||
* @var array<string, array<string, list<string>>>
|
||||
*/
|
||||
private $prefixesPsr0 = array();
|
||||
/**
|
||||
* @var list<string>
|
||||
*/
|
||||
private $fallbackDirsPsr0 = array();
|
||||
|
||||
/** @var bool */
|
||||
private $useIncludePath = false;
|
||||
|
||||
/**
|
||||
* @var array<string, string>
|
||||
*/
|
||||
private $classMap = array();
|
||||
|
||||
/** @var bool */
|
||||
private $classMapAuthoritative = false;
|
||||
|
||||
/**
|
||||
* @var array<string, bool>
|
||||
*/
|
||||
private $missingClasses = array();
|
||||
|
||||
/** @var string|null */
|
||||
private $apcuPrefix;
|
||||
|
||||
/**
|
||||
* @var array<string, self>
|
||||
*/
|
||||
private static $registeredLoaders = array();
|
||||
|
||||
/**
|
||||
* @param string|null $vendorDir
|
||||
*/
|
||||
public function __construct($vendorDir = null)
|
||||
{
|
||||
$this->vendorDir = $vendorDir;
|
||||
self::initializeIncludeClosure();
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array<string, list<string>>
|
||||
*/
|
||||
public function getPrefixes()
|
||||
{
|
||||
if (!empty($this->prefixesPsr0)) {
|
||||
return call_user_func_array('array_merge', array_values($this->prefixesPsr0));
|
||||
}
|
||||
|
||||
return array();
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array<string, list<string>>
|
||||
*/
|
||||
public function getPrefixesPsr4()
|
||||
{
|
||||
return $this->prefixDirsPsr4;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return list<string>
|
||||
*/
|
||||
public function getFallbackDirs()
|
||||
{
|
||||
return $this->fallbackDirsPsr0;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return list<string>
|
||||
*/
|
||||
public function getFallbackDirsPsr4()
|
||||
{
|
||||
return $this->fallbackDirsPsr4;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array<string, string> Array of classname => path
|
||||
*/
|
||||
public function getClassMap()
|
||||
{
|
||||
return $this->classMap;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array<string, string> $classMap Class to filename map
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function addClassMap(array $classMap)
|
||||
{
|
||||
if ($this->classMap) {
|
||||
$this->classMap = array_merge($this->classMap, $classMap);
|
||||
} else {
|
||||
$this->classMap = $classMap;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Registers a set of PSR-0 directories for a given prefix, either
|
||||
* appending or prepending to the ones previously set for this prefix.
|
||||
*
|
||||
* @param string $prefix The prefix
|
||||
* @param list<string>|string $paths The PSR-0 root directories
|
||||
* @param bool $prepend Whether to prepend the directories
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function add($prefix, $paths, $prepend = false)
|
||||
{
|
||||
$paths = (array) $paths;
|
||||
if (!$prefix) {
|
||||
if ($prepend) {
|
||||
$this->fallbackDirsPsr0 = array_merge(
|
||||
$paths,
|
||||
$this->fallbackDirsPsr0
|
||||
);
|
||||
} else {
|
||||
$this->fallbackDirsPsr0 = array_merge(
|
||||
$this->fallbackDirsPsr0,
|
||||
$paths
|
||||
);
|
||||
}
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
$first = $prefix[0];
|
||||
if (!isset($this->prefixesPsr0[$first][$prefix])) {
|
||||
$this->prefixesPsr0[$first][$prefix] = $paths;
|
||||
|
||||
return;
|
||||
}
|
||||
if ($prepend) {
|
||||
$this->prefixesPsr0[$first][$prefix] = array_merge(
|
||||
$paths,
|
||||
$this->prefixesPsr0[$first][$prefix]
|
||||
);
|
||||
} else {
|
||||
$this->prefixesPsr0[$first][$prefix] = array_merge(
|
||||
$this->prefixesPsr0[$first][$prefix],
|
||||
$paths
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Registers a set of PSR-4 directories for a given namespace, either
|
||||
* appending or prepending to the ones previously set for this namespace.
|
||||
*
|
||||
* @param string $prefix The prefix/namespace, with trailing '\\'
|
||||
* @param list<string>|string $paths The PSR-4 base directories
|
||||
* @param bool $prepend Whether to prepend the directories
|
||||
*
|
||||
* @throws \InvalidArgumentException
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function addPsr4($prefix, $paths, $prepend = false)
|
||||
{
|
||||
$paths = (array) $paths;
|
||||
if (!$prefix) {
|
||||
// Register directories for the root namespace.
|
||||
if ($prepend) {
|
||||
$this->fallbackDirsPsr4 = array_merge(
|
||||
$paths,
|
||||
$this->fallbackDirsPsr4
|
||||
);
|
||||
} else {
|
||||
$this->fallbackDirsPsr4 = array_merge(
|
||||
$this->fallbackDirsPsr4,
|
||||
$paths
|
||||
);
|
||||
}
|
||||
} elseif (!isset($this->prefixDirsPsr4[$prefix])) {
|
||||
// Register directories for a new namespace.
|
||||
$length = strlen($prefix);
|
||||
if ('\\' !== $prefix[$length - 1]) {
|
||||
throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator.");
|
||||
}
|
||||
$this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length;
|
||||
$this->prefixDirsPsr4[$prefix] = $paths;
|
||||
} elseif ($prepend) {
|
||||
// Prepend directories for an already registered namespace.
|
||||
$this->prefixDirsPsr4[$prefix] = array_merge(
|
||||
$paths,
|
||||
$this->prefixDirsPsr4[$prefix]
|
||||
);
|
||||
} else {
|
||||
// Append directories for an already registered namespace.
|
||||
$this->prefixDirsPsr4[$prefix] = array_merge(
|
||||
$this->prefixDirsPsr4[$prefix],
|
||||
$paths
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Registers a set of PSR-0 directories for a given prefix,
|
||||
* replacing any others previously set for this prefix.
|
||||
*
|
||||
* @param string $prefix The prefix
|
||||
* @param list<string>|string $paths The PSR-0 base directories
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function set($prefix, $paths)
|
||||
{
|
||||
if (!$prefix) {
|
||||
$this->fallbackDirsPsr0 = (array) $paths;
|
||||
} else {
|
||||
$this->prefixesPsr0[$prefix[0]][$prefix] = (array) $paths;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Registers a set of PSR-4 directories for a given namespace,
|
||||
* replacing any others previously set for this namespace.
|
||||
*
|
||||
* @param string $prefix The prefix/namespace, with trailing '\\'
|
||||
* @param list<string>|string $paths The PSR-4 base directories
|
||||
*
|
||||
* @throws \InvalidArgumentException
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function setPsr4($prefix, $paths)
|
||||
{
|
||||
if (!$prefix) {
|
||||
$this->fallbackDirsPsr4 = (array) $paths;
|
||||
} else {
|
||||
$length = strlen($prefix);
|
||||
if ('\\' !== $prefix[$length - 1]) {
|
||||
throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator.");
|
||||
}
|
||||
$this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length;
|
||||
$this->prefixDirsPsr4[$prefix] = (array) $paths;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Turns on searching the include path for class files.
|
||||
*
|
||||
* @param bool $useIncludePath
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function setUseIncludePath($useIncludePath)
|
||||
{
|
||||
$this->useIncludePath = $useIncludePath;
|
||||
}
|
||||
|
||||
/**
|
||||
* Can be used to check if the autoloader uses the include path to check
|
||||
* for classes.
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
public function getUseIncludePath()
|
||||
{
|
||||
return $this->useIncludePath;
|
||||
}
|
||||
|
||||
/**
|
||||
* Turns off searching the prefix and fallback directories for classes
|
||||
* that have not been registered with the class map.
|
||||
*
|
||||
* @param bool $classMapAuthoritative
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function setClassMapAuthoritative($classMapAuthoritative)
|
||||
{
|
||||
$this->classMapAuthoritative = $classMapAuthoritative;
|
||||
}
|
||||
|
||||
/**
|
||||
* Should class lookup fail if not found in the current class map?
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
public function isClassMapAuthoritative()
|
||||
{
|
||||
return $this->classMapAuthoritative;
|
||||
}
|
||||
|
||||
/**
|
||||
* APCu prefix to use to cache found/not-found classes, if the extension is enabled.
|
||||
*
|
||||
* @param string|null $apcuPrefix
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function setApcuPrefix($apcuPrefix)
|
||||
{
|
||||
$this->apcuPrefix = function_exists('apcu_fetch') && filter_var(ini_get('apc.enabled'), FILTER_VALIDATE_BOOLEAN) ? $apcuPrefix : null;
|
||||
}
|
||||
|
||||
/**
|
||||
* The APCu prefix in use, or null if APCu caching is not enabled.
|
||||
*
|
||||
* @return string|null
|
||||
*/
|
||||
public function getApcuPrefix()
|
||||
{
|
||||
return $this->apcuPrefix;
|
||||
}
|
||||
|
||||
/**
|
||||
* Registers this instance as an autoloader.
|
||||
*
|
||||
* @param bool $prepend Whether to prepend the autoloader or not
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function register($prepend = false)
|
||||
{
|
||||
spl_autoload_register(array($this, 'loadClass'), true, $prepend);
|
||||
|
||||
if (null === $this->vendorDir) {
|
||||
return;
|
||||
}
|
||||
|
||||
if ($prepend) {
|
||||
self::$registeredLoaders = array($this->vendorDir => $this) + self::$registeredLoaders;
|
||||
} else {
|
||||
unset(self::$registeredLoaders[$this->vendorDir]);
|
||||
self::$registeredLoaders[$this->vendorDir] = $this;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Unregisters this instance as an autoloader.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function unregister()
|
||||
{
|
||||
spl_autoload_unregister(array($this, 'loadClass'));
|
||||
|
||||
if (null !== $this->vendorDir) {
|
||||
unset(self::$registeredLoaders[$this->vendorDir]);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Loads the given class or interface.
|
||||
*
|
||||
* @param string $class The name of the class
|
||||
* @return true|null True if loaded, null otherwise
|
||||
*/
|
||||
public function loadClass($class)
|
||||
{
|
||||
if ($file = $this->findFile($class)) {
|
||||
$includeFile = self::$includeFile;
|
||||
$includeFile($file);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Finds the path to the file where the class is defined.
|
||||
*
|
||||
* @param string $class The name of the class
|
||||
*
|
||||
* @return string|false The path if found, false otherwise
|
||||
*/
|
||||
public function findFile($class)
|
||||
{
|
||||
// class map lookup
|
||||
if (isset($this->classMap[$class])) {
|
||||
return $this->classMap[$class];
|
||||
}
|
||||
if ($this->classMapAuthoritative || isset($this->missingClasses[$class])) {
|
||||
return false;
|
||||
}
|
||||
if (null !== $this->apcuPrefix) {
|
||||
$file = apcu_fetch($this->apcuPrefix.$class, $hit);
|
||||
if ($hit) {
|
||||
return $file;
|
||||
}
|
||||
}
|
||||
|
||||
$file = $this->findFileWithExtension($class, '.php');
|
||||
|
||||
// Search for Hack files if we are running on HHVM
|
||||
if (false === $file && defined('HHVM_VERSION')) {
|
||||
$file = $this->findFileWithExtension($class, '.hh');
|
||||
}
|
||||
|
||||
if (null !== $this->apcuPrefix) {
|
||||
apcu_add($this->apcuPrefix.$class, $file);
|
||||
}
|
||||
|
||||
if (false === $file) {
|
||||
// Remember that this class does not exist.
|
||||
$this->missingClasses[$class] = true;
|
||||
}
|
||||
|
||||
return $file;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the currently registered loaders keyed by their corresponding vendor directories.
|
||||
*
|
||||
* @return array<string, self>
|
||||
*/
|
||||
public static function getRegisteredLoaders()
|
||||
{
|
||||
return self::$registeredLoaders;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $class
|
||||
* @param string $ext
|
||||
* @return string|false
|
||||
*/
|
||||
private function findFileWithExtension($class, $ext)
|
||||
{
|
||||
// PSR-4 lookup
|
||||
$logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR) . $ext;
|
||||
|
||||
$first = $class[0];
|
||||
if (isset($this->prefixLengthsPsr4[$first])) {
|
||||
$subPath = $class;
|
||||
while (false !== $lastPos = strrpos($subPath, '\\')) {
|
||||
$subPath = substr($subPath, 0, $lastPos);
|
||||
$search = $subPath . '\\';
|
||||
if (isset($this->prefixDirsPsr4[$search])) {
|
||||
$pathEnd = DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $lastPos + 1);
|
||||
foreach ($this->prefixDirsPsr4[$search] as $dir) {
|
||||
if (file_exists($file = $dir . $pathEnd)) {
|
||||
return $file;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// PSR-4 fallback dirs
|
||||
foreach ($this->fallbackDirsPsr4 as $dir) {
|
||||
if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr4)) {
|
||||
return $file;
|
||||
}
|
||||
}
|
||||
|
||||
// PSR-0 lookup
|
||||
if (false !== $pos = strrpos($class, '\\')) {
|
||||
// namespaced class name
|
||||
$logicalPathPsr0 = substr($logicalPathPsr4, 0, $pos + 1)
|
||||
. strtr(substr($logicalPathPsr4, $pos + 1), '_', DIRECTORY_SEPARATOR);
|
||||
} else {
|
||||
// PEAR-like class name
|
||||
$logicalPathPsr0 = strtr($class, '_', DIRECTORY_SEPARATOR) . $ext;
|
||||
}
|
||||
|
||||
if (isset($this->prefixesPsr0[$first])) {
|
||||
foreach ($this->prefixesPsr0[$first] as $prefix => $dirs) {
|
||||
if (0 === strpos($class, $prefix)) {
|
||||
foreach ($dirs as $dir) {
|
||||
if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
|
||||
return $file;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// PSR-0 fallback dirs
|
||||
foreach ($this->fallbackDirsPsr0 as $dir) {
|
||||
if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
|
||||
return $file;
|
||||
}
|
||||
}
|
||||
|
||||
// PSR-0 include paths.
|
||||
if ($this->useIncludePath && $file = stream_resolve_include_path($logicalPathPsr0)) {
|
||||
return $file;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return void
|
||||
*/
|
||||
private static function initializeIncludeClosure()
|
||||
{
|
||||
if (self::$includeFile !== null) {
|
||||
return;
|
||||
}
|
||||
|
||||
/**
|
||||
* Scope isolated include.
|
||||
*
|
||||
* Prevents access to $this/self from included files.
|
||||
*
|
||||
* @param string $file
|
||||
* @return void
|
||||
*/
|
||||
self::$includeFile = \Closure::bind(static function($file) {
|
||||
include $file;
|
||||
}, null, null);
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,396 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of Composer.
|
||||
*
|
||||
* (c) Nils Adermann <naderman@naderman.de>
|
||||
* Jordi Boggiano <j.boggiano@seld.be>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Composer;
|
||||
|
||||
use Composer\Autoload\ClassLoader;
|
||||
use Composer\Semver\VersionParser;
|
||||
|
||||
/**
|
||||
* This class is copied in every Composer installed project and available to all
|
||||
*
|
||||
* See also https://getcomposer.org/doc/07-runtime.md#installed-versions
|
||||
*
|
||||
* To require its presence, you can require `composer-runtime-api ^2.0`
|
||||
*
|
||||
* @final
|
||||
*/
|
||||
class InstalledVersions
|
||||
{
|
||||
/**
|
||||
* @var string|null if set (by reflection by Composer), this should be set to the path where this class is being copied to
|
||||
* @internal
|
||||
*/
|
||||
private static $selfDir = null;
|
||||
|
||||
/**
|
||||
* @var mixed[]|null
|
||||
* @psalm-var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}|array{}|null
|
||||
*/
|
||||
private static $installed;
|
||||
|
||||
/**
|
||||
* @var bool
|
||||
*/
|
||||
private static $installedIsLocalDir;
|
||||
|
||||
/**
|
||||
* @var bool|null
|
||||
*/
|
||||
private static $canGetVendors;
|
||||
|
||||
/**
|
||||
* @var array[]
|
||||
* @psalm-var array<string, array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}>
|
||||
*/
|
||||
private static $installedByVendor = array();
|
||||
|
||||
/**
|
||||
* Returns a list of all package names which are present, either by being installed, replaced or provided
|
||||
*
|
||||
* @return string[]
|
||||
* @psalm-return list<string>
|
||||
*/
|
||||
public static function getInstalledPackages()
|
||||
{
|
||||
$packages = array();
|
||||
foreach (self::getInstalled() as $installed) {
|
||||
$packages[] = array_keys($installed['versions']);
|
||||
}
|
||||
|
||||
if (1 === \count($packages)) {
|
||||
return $packages[0];
|
||||
}
|
||||
|
||||
return array_keys(array_flip(\call_user_func_array('array_merge', $packages)));
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns a list of all package names with a specific type e.g. 'library'
|
||||
*
|
||||
* @param string $type
|
||||
* @return string[]
|
||||
* @psalm-return list<string>
|
||||
*/
|
||||
public static function getInstalledPackagesByType($type)
|
||||
{
|
||||
$packagesByType = array();
|
||||
|
||||
foreach (self::getInstalled() as $installed) {
|
||||
foreach ($installed['versions'] as $name => $package) {
|
||||
if (isset($package['type']) && $package['type'] === $type) {
|
||||
$packagesByType[] = $name;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return $packagesByType;
|
||||
}
|
||||
|
||||
/**
|
||||
* Checks whether the given package is installed
|
||||
*
|
||||
* This also returns true if the package name is provided or replaced by another package
|
||||
*
|
||||
* @param string $packageName
|
||||
* @param bool $includeDevRequirements
|
||||
* @return bool
|
||||
*/
|
||||
public static function isInstalled($packageName, $includeDevRequirements = true)
|
||||
{
|
||||
foreach (self::getInstalled() as $installed) {
|
||||
if (isset($installed['versions'][$packageName])) {
|
||||
return $includeDevRequirements || !isset($installed['versions'][$packageName]['dev_requirement']) || $installed['versions'][$packageName]['dev_requirement'] === false;
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Checks whether the given package satisfies a version constraint
|
||||
*
|
||||
* e.g. If you want to know whether version 2.3+ of package foo/bar is installed, you would call:
|
||||
*
|
||||
* Composer\InstalledVersions::satisfies(new VersionParser, 'foo/bar', '^2.3')
|
||||
*
|
||||
* @param VersionParser $parser Install composer/semver to have access to this class and functionality
|
||||
* @param string $packageName
|
||||
* @param string|null $constraint A version constraint to check for, if you pass one you have to make sure composer/semver is required by your package
|
||||
* @return bool
|
||||
*/
|
||||
public static function satisfies(VersionParser $parser, $packageName, $constraint)
|
||||
{
|
||||
$constraint = $parser->parseConstraints((string) $constraint);
|
||||
$provided = $parser->parseConstraints(self::getVersionRanges($packageName));
|
||||
|
||||
return $provided->matches($constraint);
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns a version constraint representing all the range(s) which are installed for a given package
|
||||
*
|
||||
* It is easier to use this via isInstalled() with the $constraint argument if you need to check
|
||||
* whether a given version of a package is installed, and not just whether it exists
|
||||
*
|
||||
* @param string $packageName
|
||||
* @return string Version constraint usable with composer/semver
|
||||
*/
|
||||
public static function getVersionRanges($packageName)
|
||||
{
|
||||
foreach (self::getInstalled() as $installed) {
|
||||
if (!isset($installed['versions'][$packageName])) {
|
||||
continue;
|
||||
}
|
||||
|
||||
$ranges = array();
|
||||
if (isset($installed['versions'][$packageName]['pretty_version'])) {
|
||||
$ranges[] = $installed['versions'][$packageName]['pretty_version'];
|
||||
}
|
||||
if (array_key_exists('aliases', $installed['versions'][$packageName])) {
|
||||
$ranges = array_merge($ranges, $installed['versions'][$packageName]['aliases']);
|
||||
}
|
||||
if (array_key_exists('replaced', $installed['versions'][$packageName])) {
|
||||
$ranges = array_merge($ranges, $installed['versions'][$packageName]['replaced']);
|
||||
}
|
||||
if (array_key_exists('provided', $installed['versions'][$packageName])) {
|
||||
$ranges = array_merge($ranges, $installed['versions'][$packageName]['provided']);
|
||||
}
|
||||
|
||||
return implode(' || ', $ranges);
|
||||
}
|
||||
|
||||
throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $packageName
|
||||
* @return string|null If the package is being replaced or provided but is not really installed, null will be returned as version, use satisfies or getVersionRanges if you need to know if a given version is present
|
||||
*/
|
||||
public static function getVersion($packageName)
|
||||
{
|
||||
foreach (self::getInstalled() as $installed) {
|
||||
if (!isset($installed['versions'][$packageName])) {
|
||||
continue;
|
||||
}
|
||||
|
||||
if (!isset($installed['versions'][$packageName]['version'])) {
|
||||
return null;
|
||||
}
|
||||
|
||||
return $installed['versions'][$packageName]['version'];
|
||||
}
|
||||
|
||||
throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $packageName
|
||||
* @return string|null If the package is being replaced or provided but is not really installed, null will be returned as version, use satisfies or getVersionRanges if you need to know if a given version is present
|
||||
*/
|
||||
public static function getPrettyVersion($packageName)
|
||||
{
|
||||
foreach (self::getInstalled() as $installed) {
|
||||
if (!isset($installed['versions'][$packageName])) {
|
||||
continue;
|
||||
}
|
||||
|
||||
if (!isset($installed['versions'][$packageName]['pretty_version'])) {
|
||||
return null;
|
||||
}
|
||||
|
||||
return $installed['versions'][$packageName]['pretty_version'];
|
||||
}
|
||||
|
||||
throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $packageName
|
||||
* @return string|null If the package is being replaced or provided but is not really installed, null will be returned as reference
|
||||
*/
|
||||
public static function getReference($packageName)
|
||||
{
|
||||
foreach (self::getInstalled() as $installed) {
|
||||
if (!isset($installed['versions'][$packageName])) {
|
||||
continue;
|
||||
}
|
||||
|
||||
if (!isset($installed['versions'][$packageName]['reference'])) {
|
||||
return null;
|
||||
}
|
||||
|
||||
return $installed['versions'][$packageName]['reference'];
|
||||
}
|
||||
|
||||
throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $packageName
|
||||
* @return string|null If the package is being replaced or provided but is not really installed, null will be returned as install path. Packages of type metapackages also have a null install path.
|
||||
*/
|
||||
public static function getInstallPath($packageName)
|
||||
{
|
||||
foreach (self::getInstalled() as $installed) {
|
||||
if (!isset($installed['versions'][$packageName])) {
|
||||
continue;
|
||||
}
|
||||
|
||||
return isset($installed['versions'][$packageName]['install_path']) ? $installed['versions'][$packageName]['install_path'] : null;
|
||||
}
|
||||
|
||||
throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array
|
||||
* @psalm-return array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}
|
||||
*/
|
||||
public static function getRootPackage()
|
||||
{
|
||||
$installed = self::getInstalled();
|
||||
|
||||
return $installed[0]['root'];
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the raw installed.php data for custom implementations
|
||||
*
|
||||
* @deprecated Use getAllRawData() instead which returns all datasets for all autoloaders present in the process. getRawData only returns the first dataset loaded, which may not be what you expect.
|
||||
* @return array[]
|
||||
* @psalm-return array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}
|
||||
*/
|
||||
public static function getRawData()
|
||||
{
|
||||
@trigger_error('getRawData only returns the first dataset loaded, which may not be what you expect. Use getAllRawData() instead which returns all datasets for all autoloaders present in the process.', E_USER_DEPRECATED);
|
||||
|
||||
if (null === self::$installed) {
|
||||
// only require the installed.php file if this file is loaded from its dumped location,
|
||||
// and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937
|
||||
if (substr(__DIR__, -8, 1) !== 'C') {
|
||||
self::$installed = include __DIR__ . '/installed.php';
|
||||
} else {
|
||||
self::$installed = array();
|
||||
}
|
||||
}
|
||||
|
||||
return self::$installed;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the raw data of all installed.php which are currently loaded for custom implementations
|
||||
*
|
||||
* @return array[]
|
||||
* @psalm-return list<array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}>
|
||||
*/
|
||||
public static function getAllRawData()
|
||||
{
|
||||
return self::getInstalled();
|
||||
}
|
||||
|
||||
/**
|
||||
* Lets you reload the static array from another file
|
||||
*
|
||||
* This is only useful for complex integrations in which a project needs to use
|
||||
* this class but then also needs to execute another project's autoloader in process,
|
||||
* and wants to ensure both projects have access to their version of installed.php.
|
||||
*
|
||||
* A typical case would be PHPUnit, where it would need to make sure it reads all
|
||||
* the data it needs from this class, then call reload() with
|
||||
* `require $CWD/vendor/composer/installed.php` (or similar) as input to make sure
|
||||
* the project in which it runs can then also use this class safely, without
|
||||
* interference between PHPUnit's dependencies and the project's dependencies.
|
||||
*
|
||||
* @param array[] $data A vendor/composer/installed.php data set
|
||||
* @return void
|
||||
*
|
||||
* @psalm-param array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} $data
|
||||
*/
|
||||
public static function reload($data)
|
||||
{
|
||||
self::$installed = $data;
|
||||
self::$installedByVendor = array();
|
||||
|
||||
// when using reload, we disable the duplicate protection to ensure that self::$installed data is
|
||||
// always returned, but we cannot know whether it comes from the installed.php in __DIR__ or not,
|
||||
// so we have to assume it does not, and that may result in duplicate data being returned when listing
|
||||
// all installed packages for example
|
||||
self::$installedIsLocalDir = false;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
private static function getSelfDir()
|
||||
{
|
||||
if (self::$selfDir === null) {
|
||||
self::$selfDir = strtr(__DIR__, '\\', '/');
|
||||
}
|
||||
|
||||
return self::$selfDir;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array[]
|
||||
* @psalm-return list<array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}>
|
||||
*/
|
||||
private static function getInstalled()
|
||||
{
|
||||
if (null === self::$canGetVendors) {
|
||||
self::$canGetVendors = method_exists('Composer\Autoload\ClassLoader', 'getRegisteredLoaders');
|
||||
}
|
||||
|
||||
$installed = array();
|
||||
$copiedLocalDir = false;
|
||||
|
||||
if (self::$canGetVendors) {
|
||||
$selfDir = self::getSelfDir();
|
||||
foreach (ClassLoader::getRegisteredLoaders() as $vendorDir => $loader) {
|
||||
$vendorDir = strtr($vendorDir, '\\', '/');
|
||||
if (isset(self::$installedByVendor[$vendorDir])) {
|
||||
$installed[] = self::$installedByVendor[$vendorDir];
|
||||
} elseif (is_file($vendorDir.'/composer/installed.php')) {
|
||||
/** @var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} $required */
|
||||
$required = require $vendorDir.'/composer/installed.php';
|
||||
self::$installedByVendor[$vendorDir] = $required;
|
||||
$installed[] = $required;
|
||||
if (self::$installed === null && $vendorDir.'/composer' === $selfDir) {
|
||||
self::$installed = $required;
|
||||
self::$installedIsLocalDir = true;
|
||||
}
|
||||
}
|
||||
if (self::$installedIsLocalDir && $vendorDir.'/composer' === $selfDir) {
|
||||
$copiedLocalDir = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (null === self::$installed) {
|
||||
// only require the installed.php file if this file is loaded from its dumped location,
|
||||
// and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937
|
||||
if (substr(__DIR__, -8, 1) !== 'C') {
|
||||
/** @var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} $required */
|
||||
$required = require __DIR__ . '/installed.php';
|
||||
self::$installed = $required;
|
||||
} else {
|
||||
self::$installed = array();
|
||||
}
|
||||
}
|
||||
|
||||
if (self::$installed !== array() && !$copiedLocalDir) {
|
||||
$installed[] = self::$installed;
|
||||
}
|
||||
|
||||
return $installed;
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,21 @@
|
|||
|
||||
Copyright (c) Nils Adermann, Jordi Boggiano
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is furnished
|
||||
to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
||||
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
|
||||
// autoload_classmap.php @generated by Composer
|
||||
|
||||
$vendorDir = dirname(__DIR__);
|
||||
$baseDir = dirname($vendorDir);
|
||||
|
||||
return array(
|
||||
'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php',
|
||||
);
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
<?php
|
||||
|
||||
// autoload_namespaces.php @generated by Composer
|
||||
|
||||
$vendorDir = dirname(__DIR__);
|
||||
$baseDir = dirname($vendorDir);
|
||||
|
||||
return array(
|
||||
);
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
|
||||
// autoload_psr4.php @generated by Composer
|
||||
|
||||
$vendorDir = dirname(__DIR__);
|
||||
$baseDir = dirname($vendorDir);
|
||||
|
||||
return array(
|
||||
'League\\HTMLToMarkdown\\' => array($vendorDir . '/league/html-to-markdown/src'),
|
||||
);
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
<?php
|
||||
|
||||
// autoload_real.php @generated by Composer
|
||||
|
||||
class ComposerAutoloaderInitdb3a7396952dda2756e33f76aa22435a
|
||||
{
|
||||
private static $loader;
|
||||
|
||||
public static function loadClassLoader($class)
|
||||
{
|
||||
if ('Composer\Autoload\ClassLoader' === $class) {
|
||||
require __DIR__ . '/ClassLoader.php';
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @return \Composer\Autoload\ClassLoader
|
||||
*/
|
||||
public static function getLoader()
|
||||
{
|
||||
if (null !== self::$loader) {
|
||||
return self::$loader;
|
||||
}
|
||||
|
||||
require __DIR__ . '/platform_check.php';
|
||||
|
||||
spl_autoload_register(array('ComposerAutoloaderInitdb3a7396952dda2756e33f76aa22435a', 'loadClassLoader'), true, true);
|
||||
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
|
||||
spl_autoload_unregister(array('ComposerAutoloaderInitdb3a7396952dda2756e33f76aa22435a', 'loadClassLoader'));
|
||||
|
||||
require __DIR__ . '/autoload_static.php';
|
||||
call_user_func(\Composer\Autoload\ComposerStaticInitdb3a7396952dda2756e33f76aa22435a::getInitializer($loader));
|
||||
|
||||
$loader->register(true);
|
||||
|
||||
return $loader;
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,36 @@
|
|||
<?php
|
||||
|
||||
// autoload_static.php @generated by Composer
|
||||
|
||||
namespace Composer\Autoload;
|
||||
|
||||
class ComposerStaticInitdb3a7396952dda2756e33f76aa22435a
|
||||
{
|
||||
public static $prefixLengthsPsr4 = array (
|
||||
'L' =>
|
||||
array (
|
||||
'League\\HTMLToMarkdown\\' => 22,
|
||||
),
|
||||
);
|
||||
|
||||
public static $prefixDirsPsr4 = array (
|
||||
'League\\HTMLToMarkdown\\' =>
|
||||
array (
|
||||
0 => __DIR__ . '/..' . '/league/html-to-markdown/src',
|
||||
),
|
||||
);
|
||||
|
||||
public static $classMap = array (
|
||||
'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
|
||||
);
|
||||
|
||||
public static function getInitializer(ClassLoader $loader)
|
||||
{
|
||||
return \Closure::bind(function () use ($loader) {
|
||||
$loader->prefixLengthsPsr4 = ComposerStaticInitdb3a7396952dda2756e33f76aa22435a::$prefixLengthsPsr4;
|
||||
$loader->prefixDirsPsr4 = ComposerStaticInitdb3a7396952dda2756e33f76aa22435a::$prefixDirsPsr4;
|
||||
$loader->classMap = ComposerStaticInitdb3a7396952dda2756e33f76aa22435a::$classMap;
|
||||
|
||||
}, null, ClassLoader::class);
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,98 @@
|
|||
{
|
||||
"packages": [
|
||||
{
|
||||
"name": "league/html-to-markdown",
|
||||
"version": "5.1.1",
|
||||
"version_normalized": "5.1.1.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/thephpleague/html-to-markdown.git",
|
||||
"reference": "0b4066eede55c48f38bcee4fb8f0aa85654390fd"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/thephpleague/html-to-markdown/zipball/0b4066eede55c48f38bcee4fb8f0aa85654390fd",
|
||||
"reference": "0b4066eede55c48f38bcee4fb8f0aa85654390fd",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"ext-dom": "*",
|
||||
"ext-xml": "*",
|
||||
"php": "^7.2.5 || ^8.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"mikehaertl/php-shellcommand": "^1.1.0",
|
||||
"phpstan/phpstan": "^1.8.8",
|
||||
"phpunit/phpunit": "^8.5 || ^9.2",
|
||||
"scrutinizer/ocular": "^1.6",
|
||||
"unleashedtech/php-coding-standard": "^2.7 || ^3.0",
|
||||
"vimeo/psalm": "^4.22 || ^5.0"
|
||||
},
|
||||
"time": "2023-07-12T21:21:09+00:00",
|
||||
"bin": [
|
||||
"bin/html-to-markdown"
|
||||
],
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-master": "5.2-dev"
|
||||
}
|
||||
},
|
||||
"installation-source": "dist",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"League\\HTMLToMarkdown\\": "src/"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Colin O'Dell",
|
||||
"email": "colinodell@gmail.com",
|
||||
"homepage": "https://www.colinodell.com",
|
||||
"role": "Lead Developer"
|
||||
},
|
||||
{
|
||||
"name": "Nick Cernis",
|
||||
"email": "nick@cern.is",
|
||||
"homepage": "http://modernnerd.net",
|
||||
"role": "Original Author"
|
||||
}
|
||||
],
|
||||
"description": "An HTML-to-markdown conversion helper for PHP",
|
||||
"homepage": "https://github.com/thephpleague/html-to-markdown",
|
||||
"keywords": [
|
||||
"html",
|
||||
"markdown"
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/thephpleague/html-to-markdown/issues",
|
||||
"source": "https://github.com/thephpleague/html-to-markdown/tree/5.1.1"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
"url": "https://www.colinodell.com/sponsor",
|
||||
"type": "custom"
|
||||
},
|
||||
{
|
||||
"url": "https://www.paypal.me/colinpodell/10.00",
|
||||
"type": "custom"
|
||||
},
|
||||
{
|
||||
"url": "https://github.com/colinodell",
|
||||
"type": "github"
|
||||
},
|
||||
{
|
||||
"url": "https://tidelift.com/funding/github/packagist/league/html-to-markdown",
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"install-path": "../league/html-to-markdown"
|
||||
}
|
||||
],
|
||||
"dev": true,
|
||||
"dev-package-names": []
|
||||
}
|
||||
|
|
@ -0,0 +1,32 @@
|
|||
<?php return array(
|
||||
'root' => array(
|
||||
'name' => '__root__',
|
||||
'pretty_version' => '1.0.0+no-version-set',
|
||||
'version' => '1.0.0.0',
|
||||
'reference' => null,
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../../',
|
||||
'aliases' => array(),
|
||||
'dev' => true,
|
||||
),
|
||||
'versions' => array(
|
||||
'__root__' => array(
|
||||
'pretty_version' => '1.0.0+no-version-set',
|
||||
'version' => '1.0.0.0',
|
||||
'reference' => null,
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../../',
|
||||
'aliases' => array(),
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'league/html-to-markdown' => array(
|
||||
'pretty_version' => '5.1.1',
|
||||
'version' => '5.1.1.0',
|
||||
'reference' => '0b4066eede55c48f38bcee4fb8f0aa85654390fd',
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../league/html-to-markdown',
|
||||
'aliases' => array(),
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
),
|
||||
);
|
||||
|
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
// platform_check.php @generated by Composer
|
||||
|
||||
$issues = array();
|
||||
|
||||
if (!(PHP_VERSION_ID >= 70205)) {
|
||||
$issues[] = 'Your Composer dependencies require a PHP version ">= 7.2.5". You are running ' . PHP_VERSION . '.';
|
||||
}
|
||||
|
||||
if ($issues) {
|
||||
if (!headers_sent()) {
|
||||
header('HTTP/1.1 500 Internal Server Error');
|
||||
}
|
||||
if (!ini_get('display_errors')) {
|
||||
if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') {
|
||||
fwrite(STDERR, 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . implode(PHP_EOL, $issues) . PHP_EOL.PHP_EOL);
|
||||
} elseif (!headers_sent()) {
|
||||
echo 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . str_replace('You are running '.PHP_VERSION.'.', '', implode(PHP_EOL, $issues)) . PHP_EOL.PHP_EOL;
|
||||
}
|
||||
}
|
||||
throw new \RuntimeException(
|
||||
'Composer detected issues in your platform: ' . implode(' ', $issues)
|
||||
);
|
||||
}
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
github: colinodell
|
||||
tidelift: "packagist/league/html-to-markdown"
|
||||
custom: ["https://www.colinodell.com/sponsor", "https://www.paypal.me/colinpodell/10.00"]
|
||||
|
|
@ -0,0 +1,25 @@
|
|||
name: "📃 Bug Report (Incorrect Markdown)"
|
||||
description: I'm not getting the Markdown I expect
|
||||
body:
|
||||
- type: input
|
||||
id: affected-versions
|
||||
attributes:
|
||||
label: Version(s) affected
|
||||
placeholder: x.y.z
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: description
|
||||
attributes:
|
||||
label: Description
|
||||
description: A clear and concise description of the problem.
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: how-to-reproduce
|
||||
attributes:
|
||||
label: How to reproduce
|
||||
description: |
|
||||
Provide the HTML input and any other information that would help us reproduce the problem.
|
||||
validations:
|
||||
required: true
|
||||
43
ActividadesWP/v5/items/vendor/league/html-to-markdown/.github/ISSUE_TEMPLATE/2_Bug_report.yaml
vendored
Normal file
43
ActividadesWP/v5/items/vendor/league/html-to-markdown/.github/ISSUE_TEMPLATE/2_Bug_report.yaml
vendored
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
name: "🐛 Bug Report (Other)"
|
||||
description: Report all other errors and problems
|
||||
body:
|
||||
- type: input
|
||||
id: affected-versions
|
||||
attributes:
|
||||
label: Version(s) affected
|
||||
placeholder: x.y.z
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: description
|
||||
attributes:
|
||||
label: Description
|
||||
description: A clear and concise description of the problem.
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: how-to-reproduce
|
||||
attributes:
|
||||
label: How to reproduce
|
||||
description: |
|
||||
HTML and/or any other information needed to reproduce the problem.
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: possible-solution
|
||||
attributes:
|
||||
label: Possible solution
|
||||
description: |
|
||||
Optional: only if you have suggestions on a fix/reason for the bug
|
||||
- type: textarea
|
||||
id: additional-context
|
||||
attributes:
|
||||
label: Additional context
|
||||
description: |
|
||||
Optional: any other context about the problem: log messages, screenshots, etc.
|
||||
- type: textarea
|
||||
id: feedback
|
||||
attributes:
|
||||
label: Did this project help you today? Did it make you happy in any way?
|
||||
description: |
|
||||
Optional: Sometimes we get tired of reading bug reports and working on complex features, so if you have anything positive to share about how this library might have helped you we'd love to hear it!
|
||||
|
|
@ -0,0 +1,27 @@
|
|||
name: "🚀 Feature Request"
|
||||
description: RFC and ideas for new features and improvements
|
||||
labels:
|
||||
- enhancement
|
||||
body:
|
||||
- type: textarea
|
||||
id: description
|
||||
attributes:
|
||||
label: Description
|
||||
description: A clear and concise description of the problem.
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: example
|
||||
attributes:
|
||||
label: Example
|
||||
description: |
|
||||
A simple example of the new feature in action (include PHP code, sample HTML/Markdown, etc.)
|
||||
If the new feature changes an existing feature, include a simple before/after comparison.
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: feedback
|
||||
attributes:
|
||||
label: Did this project help you today? Did it make you happy in any way?
|
||||
description: |
|
||||
Optional: Sometimes we get tired of reading bug reports and working on complex features, so if you have anything positive to share about how this library might have helped you we'd love to hear it!
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
# SECURITY POLICY
|
||||
|
||||
## Supported Versions
|
||||
|
||||
When a new **minor** version (`5.x`) is released, the previous one will continue to receive security and bug fixes for *at least* 3 months.
|
||||
|
||||
When a new **major** version is released (`4.0`, `5.0`, etc), the previous one will receive bug fixes for *at least* 3 months and security updates for 6 months after that new release comes out.
|
||||
|
||||
(This policy may change in the future and exceptions may be made on a case-by-case basis.)
|
||||
|
||||
## Reporting a Vulnerability
|
||||
|
||||
If you discover a security vulnerability within this package, please use the [Tidelift security contact form](https://tidelift.com/security) or email Colin O'Dell at <colinodell@gmail.com>. All security vulnerabilities will be promptly addressed. Please do not disclose security-related issues publicly until a fix has been announced.
|
||||
|
|
@ -0,0 +1,25 @@
|
|||
{
|
||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||
"extends": [
|
||||
"config:base",
|
||||
":disableDependencyDashboard"
|
||||
],
|
||||
"enabledManagers": ["github-actions", "composer"],
|
||||
"packageRules": [
|
||||
{
|
||||
"matchManagers": ["github-actions"],
|
||||
"extends": ["schedule:weekly"],
|
||||
"automerge": true
|
||||
},
|
||||
{
|
||||
"matchManagers": ["composer"],
|
||||
"matchDepTypes": ["devDependencies"],
|
||||
"rangeStrategy": "widen",
|
||||
"automerge": true
|
||||
},
|
||||
{
|
||||
"matchManagers": ["composer"],
|
||||
"rangeStrategy": "widen"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
# Number of days of inactivity before an issue becomes stale
|
||||
daysUntilStale: 90
|
||||
# Number of days of inactivity before a stale issue is closed
|
||||
daysUntilClose: 30
|
||||
# Issues with these labels will never be considered stale
|
||||
exemptLabels:
|
||||
- pinned
|
||||
- on hold
|
||||
- security
|
||||
# Label to use when marking an issue as stale
|
||||
staleLabel: stale
|
||||
# Comment to post when marking an issue as stale. Set to `false` to disable
|
||||
markComment: >
|
||||
This issue has been automatically marked as stale because it has not had
|
||||
recent activity. It will be closed if no further activity occurs. Thank you
|
||||
for your contributions.
|
||||
# Comment to post when closing a stale issue. Set to `false` to disable
|
||||
closeComment: false
|
||||
104
ActividadesWP/v5/items/vendor/league/html-to-markdown/.github/workflows/tests.yml
vendored
Normal file
104
ActividadesWP/v5/items/vendor/league/html-to-markdown/.github/workflows/tests.yml
vendored
Normal file
|
|
@ -0,0 +1,104 @@
|
|||
name: Tests
|
||||
|
||||
on:
|
||||
push: ~
|
||||
pull_request: ~
|
||||
|
||||
jobs:
|
||||
phpcs:
|
||||
name: PHPCS
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- uses: shivammathur/setup-php@v2
|
||||
with:
|
||||
php-version: 7.2
|
||||
extensions: curl, mbstring
|
||||
coverage: none
|
||||
tools: composer:v2, cs2pr
|
||||
|
||||
- run: composer update --no-progress
|
||||
|
||||
- run: vendor/bin/phpcs -q --report=checkstyle | cs2pr
|
||||
|
||||
phpunit:
|
||||
name: PHPUnit on ${{ matrix.php }} ${{ matrix.composer-flags }}
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
php: ['7.2', '7.3', '7.4', '8.0', '8.1']
|
||||
coverage: [true]
|
||||
composer-flags: ['']
|
||||
include:
|
||||
- php: '8.2'
|
||||
coverage: false
|
||||
composer-flags: '--ignore-platform-req=php'
|
||||
- php: '7.2'
|
||||
coverage: false
|
||||
composer-flags: '--prefer-lowest'
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- uses: shivammathur/setup-php@v2
|
||||
with:
|
||||
php-version: ${{ matrix.php }}
|
||||
extensions: curl, mbstring
|
||||
coverage: pcov
|
||||
tools: composer:v2
|
||||
|
||||
- run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
|
||||
|
||||
- name: "Use PHPUnit 9.3+ on PHP 8"
|
||||
run: composer require --no-update --dev phpunit/phpunit:^9.3
|
||||
if: "matrix.php >= '8.0'"
|
||||
|
||||
- run: composer update --no-progress ${{ matrix.composer-flags }}
|
||||
|
||||
- run: vendor/bin/phpunit --no-coverage
|
||||
if: ${{ !matrix.coverage }}
|
||||
|
||||
- run: vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover
|
||||
if: ${{ matrix.coverage }}
|
||||
|
||||
- run: php vendor/bin/ocular code-coverage:upload --format=php-clover coverage.clover
|
||||
if: ${{ matrix.coverage }}
|
||||
continue-on-error: true
|
||||
|
||||
phpstan:
|
||||
name: PHPStan
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- uses: shivammathur/setup-php@v2
|
||||
with:
|
||||
php-version: 7.2
|
||||
extensions: curl, mbstring
|
||||
coverage: none
|
||||
tools: composer:v2
|
||||
|
||||
- run: composer update --no-progress
|
||||
|
||||
- run: vendor/bin/phpstan analyse --no-progress
|
||||
|
||||
psalm:
|
||||
name: Psalm
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- uses: shivammathur/setup-php@v2
|
||||
with:
|
||||
php-version: 7.2
|
||||
extensions: curl, mbstring
|
||||
coverage: none
|
||||
tools: composer:v2
|
||||
|
||||
- run: composer update --no-progress
|
||||
|
||||
- run: vendor/bin/psalm --no-progress --output-format=github
|
||||
|
|
@ -0,0 +1,365 @@
|
|||
# Change Log
|
||||
All notable changes to this project will be documented in this file.
|
||||
Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) principles.
|
||||
|
||||
## [Unreleased][unreleased]
|
||||
|
||||
## [5.1.1] - 2023-07-12
|
||||
|
||||
### Fixed
|
||||
|
||||
- Fixed `<pre>` tags with attributes not being parsed (#215, #238)
|
||||
- Fixed missing type checks and coercions
|
||||
|
||||
## [5.1.0] - 2022-03-02
|
||||
|
||||
### Changed
|
||||
|
||||
- Changed horizontal rule style (#218, #219)
|
||||
|
||||
### Fixed
|
||||
|
||||
- Fixed `Element::getValue()` not handling possible nulls
|
||||
|
||||
## [5.0.2] - 2021-11-06
|
||||
|
||||
### Fixed
|
||||
|
||||
- Fixed missplaced comment nodes appearing at the start of the HTML input (#212)
|
||||
|
||||
## [5.0.1] - 2021-09-17
|
||||
|
||||
### Fixed
|
||||
|
||||
- Fixed lists not using the correct amount of indentation (#211)
|
||||
|
||||
## [5.0.0] - 2021-03-28
|
||||
|
||||
### Added
|
||||
|
||||
- Added support for tables (#203)
|
||||
- This feature is disable by default - see README for how to enable it
|
||||
- Added new `strip_placeholder_links` option to strip `<a>` tags without `href` attributes (#196)
|
||||
- Added new methods to `ElementInterface`:
|
||||
- `hasParent()`
|
||||
- `getNextSibling()`
|
||||
- `getPreviousSibling()`
|
||||
- `getListItemLevel()`
|
||||
- Added several parameter and return types across all classes
|
||||
- Added new `PreConverterInterface` to allow converters to perform any necessary pre-parsing
|
||||
|
||||
### Changed
|
||||
|
||||
- Supported PHP versions increased to PHP 7.2 - 8.0
|
||||
- `HtmlConverter::convert()` may now throw a `\RuntimeException` when unexpected `DOMDocument`-related errors occur
|
||||
|
||||
### Fixed
|
||||
|
||||
- Fixed complex nested lists containing heading and paragraphs (#198)
|
||||
- Fixed consecutive emphasis producing incorrect markdown (#202)
|
||||
|
||||
## [4.10.0] - 2020-06-30
|
||||
### Added
|
||||
|
||||
- Added the ability to disable autolinking with a configuration option (#187, #188)
|
||||
|
||||
## [4.9.1] - 2019-12-27
|
||||
### Fixed
|
||||
- Fixed issue with HTML entity escaping in text (#184)
|
||||
|
||||
## [4.9.0] - 2019-11-02
|
||||
### Added
|
||||
- Added new option to preserve comments (#177, #179)
|
||||
|
||||
## [4.8.3] - 2019-10-31
|
||||
### Fixed
|
||||
- Fixed whitespace preservation around `<code>` tags (#174, #178)
|
||||
|
||||
## [4.8.2] - 2019-08-02
|
||||
### Fixed
|
||||
- Fixed headers not being placed onto a new line in some cases (#172)
|
||||
- Fixed handling of links containing spaces (#175)
|
||||
|
||||
### Removed
|
||||
- Removed support for HHVM
|
||||
|
||||
## [4.8.1] - 2018-12-24
|
||||
### Added
|
||||
- Added support for PHP 7.3
|
||||
|
||||
### Fixed
|
||||
- Fixed paragraphs following tables (#165, #166)
|
||||
- Fixed incorrect list item escaping (#168, #169)
|
||||
|
||||
## [4.8.0] - 2018-09-18
|
||||
### Added
|
||||
- Added support for email auto-linking
|
||||
- Added a new interface (`HtmlConverterInterface`) for the main `HtmlConverter` class
|
||||
- Added additional test cases (#14)
|
||||
|
||||
### Changed
|
||||
- The `italic_style` option now defaults to `'*'` so that in-word emphasis is handled properly (#75)
|
||||
|
||||
### Fixed
|
||||
- Fixed several issues of `<code>` and `<pre>` tags not converting to blocks or inlines properly (#26, #70, #102, #140, #161, #162)
|
||||
- Fixed in-word emphasis using underscores as delimiter (#75)
|
||||
- Fixed character escaping inside of `<div>` elements
|
||||
- Fixed header edge cases
|
||||
|
||||
### Deprecated
|
||||
- The `bold_style` and `italic_style` options have been deprecated (#75)
|
||||
|
||||
## [4.7.0] - 2018-05-19
|
||||
### Added
|
||||
- Added `setOptions()` function for chainable calling (#149)
|
||||
- Added new `list_item_style_alternate` option for converting every-other list with a different character (#155)
|
||||
|
||||
### Fixed
|
||||
- Fixed insufficient newlines after code blocks (#144, #148)
|
||||
- Fixed trailing spaces not being preserved in link anchors (#157)
|
||||
- Fixed list-like lines not being escaped inside of lists items (#159)
|
||||
|
||||
## [4.6.2]
|
||||
### Fixed
|
||||
- Fixed issue with emphasized spaces (#146)
|
||||
|
||||
## [4.6.1]
|
||||
### Fixed
|
||||
- Fixed conversion of `<pre>` tags (#145)
|
||||
|
||||
## [4.6.0]
|
||||
### Added
|
||||
- Added support for ordered lists starting at numbers other than 1
|
||||
|
||||
### Fixed
|
||||
- Fixed overly-eager escaping of list-like text (#141)
|
||||
|
||||
## [4.5.0]
|
||||
### Added
|
||||
- Added configuration option for list item style (#135, #136)
|
||||
|
||||
## [4.4.1]
|
||||
|
||||
### Fixed
|
||||
- Fixed autolinking of invalid URLs (#129)
|
||||
|
||||
## [4.4.0]
|
||||
|
||||
### Added
|
||||
- Added `hard_break` configuration option (#112, #115)
|
||||
- The `HtmlConverter` can now be instantiated with an `Environment` (#118)
|
||||
|
||||
### Fixed
|
||||
- Fixed handling of paragraphs in list item elements (#47, #110)
|
||||
- Fixed phantom spaces when newlines follow `br` elements (#116, #117)
|
||||
- Fixed link converter not sanitizing inner spaces properly (#119, #120)
|
||||
|
||||
## [4.3.1]
|
||||
### Changed
|
||||
- Revised the sanitization implementation (#109)
|
||||
|
||||
### Fixed
|
||||
- Fixed tag-like content not being escaped (#67, #109)
|
||||
- Fixed thematic break-like content not being escaped (#65, #109)
|
||||
- Fixed codefence-like content not being escaped (#64, #109)
|
||||
|
||||
## [4.3.0]
|
||||
### Added
|
||||
- Added full support for PHP 7.0 and 7.1
|
||||
|
||||
### Changed
|
||||
- Changed `<pre>` and `<pre><code>` conversions to use backticks instead of indendation (#102)
|
||||
|
||||
### Fixed
|
||||
- Fixed issue where specified code language was not preserved (#70, #102)
|
||||
- Fixed issue where `<code>` tags nested in `<pre>` was not converted properly (#70, #102)
|
||||
- Fixed header-like content not being escaped (#76, #105)
|
||||
- Fixed blockquote-like content not being escaped (#77, #103)
|
||||
- Fixed ordered list-like content not being escaped (#73, #106)
|
||||
- Fixed unordered list-like content not being escaped (#71, #107)
|
||||
|
||||
## [4.2.2]
|
||||
### Fixed
|
||||
- Fixed sanitization bug which sometimes removes desired content (#63, #101)
|
||||
|
||||
## [4.2.1]
|
||||
### Fixed
|
||||
- Fixed path to autoload.php when used as a library (#98)
|
||||
- Fixed edge case for tags containing only whitespace (#99)
|
||||
|
||||
### Removed
|
||||
- Removed double HTML entity decoding, as this is not desireable (#60)
|
||||
|
||||
## [4.2.0]
|
||||
|
||||
### Added
|
||||
- Added the ability to invoke HtmlConverter objects as functions (#85)
|
||||
|
||||
### Fixed
|
||||
- Fixed improper handling of nested list items (#19 and #84)
|
||||
- Fixed preceeding or trailing spaces within emphasis tags (#83)
|
||||
|
||||
## [4.1.1]
|
||||
|
||||
### Fixed
|
||||
- Fixed conversion of empty paragraphs (#78)
|
||||
- Fixed `preg_replace` so it wouldn't break UTF-8 characters (#79)
|
||||
|
||||
## [4.1.0]
|
||||
|
||||
### Added
|
||||
- Added `bin/html-to-markdown` script
|
||||
|
||||
### Changed
|
||||
- Changed default italic character to `_` (#58)
|
||||
|
||||
## [4.0.1]
|
||||
|
||||
### Fixed
|
||||
- Added escaping to avoid * and _ in a text being rendered as emphasis (#48)
|
||||
|
||||
### Removed
|
||||
- Removed the demo (#51)
|
||||
- `.styleci.yml` and `CONTRIBUTING.md` are no longer included in distributions (#50)
|
||||
|
||||
## [4.0.0]
|
||||
|
||||
This release changes the visibility of several methods/properties. #42 and #43 brought to light that some visiblities were
|
||||
not ideally set, so this releases fixes that. Moving forwards this should reduce the chance of introducing BC-breaking changes.
|
||||
|
||||
### Added
|
||||
- Added new `HtmlConverter::getEnvironment()` method to expose the `Environment` (#42, #43)
|
||||
|
||||
### Changed
|
||||
- Changed `Environment::addConverter()` from `protected` to `public`, enabling custom converters to be added (#42, #43)
|
||||
- Changed `HtmlConverter::createDOMDocument()` from `protected` to `private`
|
||||
- Changed `Element::nextCached` from `protected` to `private`
|
||||
- Made the `Environment` class `final`
|
||||
|
||||
## [3.1.1]
|
||||
### Fixed
|
||||
- Empty HTML strings now result in empty Markdown documents (#40, #41)
|
||||
|
||||
## [3.1.0]
|
||||
### Added
|
||||
- Added new `equals` method to `Element` to check for equality
|
||||
|
||||
### Changes
|
||||
- Use Linux line endings consistently instead of plaform-specific line endings (#36)
|
||||
|
||||
### Fixed
|
||||
- Cleaned up code style
|
||||
|
||||
## [3.0.0]
|
||||
### Changed
|
||||
- Changed namespace to `League\HTMLToMarkdown`
|
||||
- Changed packagist name to `league/html-to-markdown`
|
||||
- Re-organized code into several separate classes
|
||||
- `<a>` tags with identical href and inner text are now rendered using angular bracket syntax (#31)
|
||||
- `<div>` elements are now treated as block-level elements (#33)
|
||||
|
||||
## [2.2.2]
|
||||
### Added
|
||||
- Added support for PHP 5.6 and HHVM
|
||||
- Enabled testing against PHP 7 nightlies
|
||||
- Added this CHANGELOG.md
|
||||
|
||||
### Fixed
|
||||
- Fixed whitespace preservation between inline elements (#9 and #10)
|
||||
|
||||
## [2.2.1]
|
||||
### Fixed
|
||||
- Preserve placeholder links (#22)
|
||||
|
||||
## [2.2.0]
|
||||
### Added
|
||||
- Added CircleCI config
|
||||
|
||||
### Changed
|
||||
- `<pre>` blocks are now treated as code elements
|
||||
|
||||
### Removed
|
||||
- Dropped support for PHP 5.2
|
||||
- Removed incorrect README comment regarding `#text` nodes (#17)
|
||||
|
||||
## [2.1.2]
|
||||
### Added
|
||||
- Added the ability to blacklist/remove specific node types (#11)
|
||||
|
||||
### Changed
|
||||
- Line breaks are now placed after divs instead of before them
|
||||
- Newlines inside of link texts are now removed
|
||||
- Updated the minimum PHPUnit version to 4.*
|
||||
|
||||
## [2.1.1]
|
||||
### Added
|
||||
- Added options to customize emphasis characters
|
||||
|
||||
## [2.1.0]
|
||||
### Added
|
||||
- Added option to strip HTML tags without Markdown equivalents
|
||||
- Added `convert()` method for converter reuse
|
||||
- Added ability to set options after instance construction
|
||||
- Documented the required PHP extensions (#4)
|
||||
|
||||
### Changed
|
||||
- ATX style now used for h1 and h2 tags inside blockquotes
|
||||
|
||||
### Fixed
|
||||
- Newlines inside blockquotes are now started with a bracket
|
||||
- Fixed some incorrect docblocks
|
||||
- `__toString()` now returns an empty string if input is empty
|
||||
- Convert head tag if body tag is empty (#7)
|
||||
- Preserve special characters inside tags without md equivalents (#6)
|
||||
|
||||
|
||||
## [2.0.1]
|
||||
### Fixed
|
||||
- Fixed first line indentation for multi-line code blocks
|
||||
- Fixed consecutive anchors get separating spaces stripped (#3)
|
||||
|
||||
## [2.0.0]
|
||||
### Added
|
||||
- Initial release
|
||||
|
||||
[unreleased]: https://github.com/thephpleague/html-to-markdown/compare/5.1.1...master
|
||||
[5.1.1]: https://github.com/thephpleague/html-to-markdown/compare/5.1.0...5.1.1
|
||||
[5.1.0]: https://github.com/thephpleague/html-to-markdown/compare/5.0.2...5.1.0
|
||||
[5.0.2]: https://github.com/thephpleague/html-to-markdown/compare/5.0.1...5.0.2
|
||||
[5.0.1]: https://github.com/thephpleague/html-to-markdown/compare/5.0.0...5.0.1
|
||||
[5.0.0]: https://github.com/thephpleague/html-to-markdown/compare/4.10.0...5.0.0
|
||||
[4.10.0]: https://github.com/thephpleague/html-to-markdown/compare/4.9.1...4.10.0
|
||||
[4.9.1]: https://github.com/thephpleague/html-to-markdown/compare/4.9.0...4.9.1
|
||||
[4.9.0]: https://github.com/thephpleague/html-to-markdown/compare/4.8.3...4.9.0
|
||||
[4.8.3]: https://github.com/thephpleague/html-to-markdown/compare/4.8.2...4.8.3
|
||||
[4.8.2]: https://github.com/thephpleague/html-to-markdown/compare/4.8.1...4.8.2
|
||||
[4.8.1]: https://github.com/thephpleague/html-to-markdown/compare/4.8.0...4.8.1
|
||||
[4.8.0]: https://github.com/thephpleague/html-to-markdown/compare/4.7.0...4.8.0
|
||||
[4.7.0]: https://github.com/thephpleague/html-to-markdown/compare/4.6.2...4.7.0
|
||||
[4.6.2]: https://github.com/thephpleague/html-to-markdown/compare/4.6.1...4.6.2
|
||||
[4.6.1]: https://github.com/thephpleague/html-to-markdown/compare/4.6.0...4.6.1
|
||||
[4.6.0]: https://github.com/thephpleague/html-to-markdown/compare/4.5.0...4.6.0
|
||||
[4.5.0]: https://github.com/thephpleague/html-to-markdown/compare/4.4.1...4.5.0
|
||||
[4.4.1]: https://github.com/thephpleague/html-to-markdown/compare/4.4.0...4.4.1
|
||||
[4.4.0]: https://github.com/thephpleague/html-to-markdown/compare/4.3.1...4.4.0
|
||||
[4.3.1]: https://github.com/thephpleague/html-to-markdown/compare/4.3.0...4.3.1
|
||||
[4.3.0]: https://github.com/thephpleague/html-to-markdown/compare/4.2.2...4.3.0
|
||||
[4.2.2]: https://github.com/thephpleague/html-to-markdown/compare/4.2.1...4.2.2
|
||||
[4.2.1]: https://github.com/thephpleague/html-to-markdown/compare/4.2.0...4.2.1
|
||||
[4.2.0]: https://github.com/thephpleague/html-to-markdown/compare/4.1.1...4.2.0
|
||||
[4.1.1]: https://github.com/thephpleague/html-to-markdown/compare/4.1.0...4.1.1
|
||||
[4.1.0]: https://github.com/thephpleague/html-to-markdown/compare/4.0.1...4.1.0
|
||||
[4.0.1]: https://github.com/thephpleague/html-to-markdown/compare/4.0.0...4.0.1
|
||||
[4.0.0]: https://github.com/thephpleague/html-to-markdown/compare/3.1.1...4.0.0
|
||||
[3.1.1]: https://github.com/thephpleague/html-to-markdown/compare/3.1.0...3.1.1
|
||||
[3.1.0]: https://github.com/thephpleague/html-to-markdown/compare/3.0.0...3.1.0
|
||||
[3.0.0]: https://github.com/thephpleague/html-to-markdown/compare/2.2.2...3.0.0
|
||||
[2.2.2]: https://github.com/thephpleague/html-to-markdown/compare/2.2.1...2.2.2
|
||||
[2.2.1]: https://github.com/thephpleague/html-to-markdown/compare/2.2.0...2.2.1
|
||||
[2.2.0]: https://github.com/thephpleague/html-to-markdown/compare/2.1.2...2.2.0
|
||||
[2.1.2]: https://github.com/thephpleague/html-to-markdown/compare/2.1.1...2.1.2
|
||||
[2.1.1]: https://github.com/thephpleague/html-to-markdown/compare/2.1.0...2.1.1
|
||||
[2.1.0]: https://github.com/thephpleague/html-to-markdown/compare/2.0.1...2.1.0
|
||||
[2.0.1]: https://github.com/thephpleague/html-to-markdown/compare/2.0.0...2.0.1
|
||||
[2.0.0]: https://github.com/thephpleague/html-to-markdown/compare/775f91e...2.0.0
|
||||
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
# Contributor Code of Conduct
|
||||
|
||||
As contributors and maintainers of this project, and in the interest of fostering an open and welcoming community, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
|
||||
|
||||
We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, religion, or nationality.
|
||||
|
||||
Examples of unacceptable behavior by participants include:
|
||||
|
||||
* The use of sexualized language or imagery
|
||||
* Personal attacks
|
||||
* Trolling or insulting/derogatory comments
|
||||
* Public or private harassment
|
||||
* Publishing other's private information, such as physical or electronic addresses, without explicit permission
|
||||
* Other unethical or unprofessional conduct.
|
||||
|
||||
Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. By adopting this Code of Conduct, project maintainers commit themselves to fairly and consistently applying these principles to every aspect of managing this project. Project maintainers who do not follow or enforce the Code of Conduct may be permanently removed from the project team.
|
||||
|
||||
This code of conduct applies both within project spaces and in public spaces when an individual is representing the project or its community.
|
||||
|
||||
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
|
||||
|
||||
This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.2.0, available at [http://contributor-covenant.org/version/1/2/0/](http://contributor-covenant.org/version/1/2/0/)
|
||||
|
|
@ -0,0 +1,20 @@
|
|||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2015 Colin O'Dell; Originally created by Nick Cernis
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||
this software and associated documentation files (the "Software"), to deal in
|
||||
the Software without restriction, including without limitation the rights to
|
||||
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
||||
the Software, and to permit persons to whom the Software is furnished to do so,
|
||||
subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
||||
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
||||
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
||||
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
|
@ -0,0 +1,242 @@
|
|||
HTML To Markdown for PHP
|
||||
========================
|
||||
|
||||
[](https://packagist.org/packages/league/html-to-markdown)
|
||||
[](LICENSE)
|
||||
[](https://github.com/thephpleague/html-to-markdown/actions?query=workflow%3ATests+branch%3Amaster)
|
||||
[](https://scrutinizer-ci.com/g/thephpleague/html-to-markdown/code-structure)
|
||||
[](https://scrutinizer-ci.com/g/thephpleague/html-to-markdown)
|
||||
[](https://packagist.org/packages/league/html-to-markdown)
|
||||
|
||||
Library which converts HTML to [Markdown](http://daringfireball.net/projects/markdown/) for your sanity and convenience.
|
||||
|
||||
|
||||
**Requires**: PHP 7.2+
|
||||
|
||||
**Lead Developer**: [@colinodell](http://twitter.com/colinodell)
|
||||
|
||||
**Original Author**: [@nickcernis](http://twitter.com/nickcernis)
|
||||
|
||||
|
||||
### Why convert HTML to Markdown?
|
||||
|
||||
*"What alchemy is this?"* you mutter. *"I can see why you'd convert [Markdown to HTML](https://github.com/thephpleague/commonmark),"* you continue, already labouring the question somewhat, *"but why go the other way?"*
|
||||
|
||||
Typically you would convert HTML to Markdown if:
|
||||
|
||||
1. You have an existing HTML document that needs to be edited by people with good taste.
|
||||
2. You want to store new content in HTML format but edit it as Markdown.
|
||||
3. You want to convert HTML email to plain text email.
|
||||
4. You know a guy who's been converting HTML to Markdown for years, and now he can speak Elvish. You'd quite like to be able to speak Elvish.
|
||||
5. You just really like Markdown.
|
||||
|
||||
### How to use it
|
||||
|
||||
Require the library by issuing this command:
|
||||
|
||||
```bash
|
||||
composer require league/html-to-markdown
|
||||
```
|
||||
|
||||
Add `require 'vendor/autoload.php';` to the top of your script.
|
||||
|
||||
Next, create a new HtmlConverter instance, passing in your valid HTML code to its `convert()` function:
|
||||
|
||||
```php
|
||||
use League\HTMLToMarkdown\HtmlConverter;
|
||||
|
||||
$converter = new HtmlConverter();
|
||||
|
||||
$html = "<h3>Quick, to the Batpoles!</h3>";
|
||||
$markdown = $converter->convert($html);
|
||||
```
|
||||
|
||||
The `$markdown` variable now contains the Markdown version of your HTML as a string:
|
||||
|
||||
```php
|
||||
echo $markdown; // ==> ### Quick, to the Batpoles!
|
||||
```
|
||||
|
||||
The included `demo` directory contains an HTML->Markdown conversion form to try out.
|
||||
|
||||
### Conversion options
|
||||
|
||||
By default, HTML To Markdown preserves HTML tags without Markdown equivalents, like `<span>` and `<div>`.
|
||||
|
||||
To strip HTML tags that don't have a Markdown equivalent while preserving the content inside them, set `strip_tags` to true, like this:
|
||||
|
||||
```php
|
||||
$converter = new HtmlConverter(array('strip_tags' => true));
|
||||
|
||||
$html = '<span>Turnips!</span>';
|
||||
$markdown = $converter->convert($html); // $markdown now contains "Turnips!"
|
||||
```
|
||||
|
||||
Or more explicitly, like this:
|
||||
|
||||
```php
|
||||
$converter = new HtmlConverter();
|
||||
$converter->getConfig()->setOption('strip_tags', true);
|
||||
|
||||
$html = '<span>Turnips!</span>';
|
||||
$markdown = $converter->convert($html); // $markdown now contains "Turnips!"
|
||||
```
|
||||
|
||||
Note that only the tags themselves are stripped, not the content they hold.
|
||||
|
||||
To strip tags and their content, pass a space-separated list of tags in `remove_nodes`, like this:
|
||||
|
||||
```php
|
||||
$converter = new HtmlConverter(array('remove_nodes' => 'span div'));
|
||||
|
||||
$html = '<span>Turnips!</span><div>Monkeys!</div>';
|
||||
$markdown = $converter->convert($html); // $markdown now contains ""
|
||||
```
|
||||
|
||||
By default, all comments are stripped from the content. To preserve them, use the `preserve_comments` option, like this:
|
||||
|
||||
```php
|
||||
$converter = new HtmlConverter(array('preserve_comments' => true));
|
||||
|
||||
$html = '<span>Turnips!</span><!-- Monkeys! -->';
|
||||
$markdown = $converter->convert($html); // $markdown now contains "Turnips!<!-- Monkeys! -->"
|
||||
```
|
||||
|
||||
To preserve only specific comments, set `preserve_comments` with an array of strings, like this:
|
||||
|
||||
```php
|
||||
$converter = new HtmlConverter(array('preserve_comments' => array('Eggs!')));
|
||||
|
||||
$html = '<span>Turnips!</span><!-- Monkeys! --><!-- Eggs! -->';
|
||||
$markdown = $converter->convert($html); // $markdown now contains "Turnips!<!-- Eggs! -->"
|
||||
```
|
||||
|
||||
By default, placeholder links are preserved. To strip the placeholder links, use the `strip_placeholder_links` option, like this:
|
||||
|
||||
```php
|
||||
$converter = new HtmlConverter(array('strip_placeholder_links' => true));
|
||||
|
||||
$html = '<a>Github</a>';
|
||||
$markdown = $converter->convert($html); // $markdown now contains "Github"
|
||||
```
|
||||
|
||||
### Style options
|
||||
|
||||
By default bold tags are converted using the asterisk syntax, and italic tags are converted using the underlined syntax. Change these by using the `bold_style` and `italic_style` options.
|
||||
|
||||
```php
|
||||
$converter = new HtmlConverter();
|
||||
$converter->getConfig()->setOption('italic_style', '*');
|
||||
$converter->getConfig()->setOption('bold_style', '__');
|
||||
|
||||
$html = '<em>Italic</em> and a <strong>bold</strong>';
|
||||
$markdown = $converter->convert($html); // $markdown now contains "*Italic* and a __bold__"
|
||||
```
|
||||
|
||||
### Line break options
|
||||
|
||||
By default, `br` tags are converted to two spaces followed by a newline character as per [traditional Markdown](https://daringfireball.net/projects/markdown/syntax#p). Set `hard_break` to `true` to omit the two spaces, as per GitHub Flavored Markdown (GFM).
|
||||
|
||||
```php
|
||||
$converter = new HtmlConverter();
|
||||
$html = '<p>test<br>line break</p>';
|
||||
|
||||
$converter->getConfig()->setOption('hard_break', true);
|
||||
$markdown = $converter->convert($html); // $markdown now contains "test\nline break"
|
||||
|
||||
$converter->getConfig()->setOption('hard_break', false); // default
|
||||
$markdown = $converter->convert($html); // $markdown now contains "test \nline break"
|
||||
```
|
||||
|
||||
### Autolinking options
|
||||
|
||||
By default, `a` tags are converted to the easiest possible link syntax, i.e. if no text or title is available, then the `<url>` syntax will be used rather than the full `[url](url)` syntax. Set `use_autolinks` to `false` to change this behavior to always use the full link syntax.
|
||||
|
||||
```php
|
||||
$converter = new HtmlConverter();
|
||||
$html = '<p><a href="https://thephpleague.com">https://thephpleague.com</a></p>';
|
||||
|
||||
$converter->getConfig()->setOption('use_autolinks', true);
|
||||
$markdown = $converter->convert($html); // $markdown now contains "<https://thephpleague.com>"
|
||||
|
||||
$converter->getConfig()->setOption('use_autolinks', false); // default
|
||||
$markdown = $converter->convert($html); // $markdown now contains "[https://google.com](https://google.com)"
|
||||
```
|
||||
|
||||
### Passing custom Environment object
|
||||
|
||||
You can pass current `Environment` object to customize i.e. which converters should be used.
|
||||
|
||||
```php
|
||||
$environment = new Environment(array(
|
||||
// your configuration here
|
||||
));
|
||||
$environment->addConverter(new HeaderConverter()); // optionally - add converter manually
|
||||
|
||||
$converter = new HtmlConverter($environment);
|
||||
|
||||
$html = '<h3>Header</h3>
|
||||
<img src="" />
|
||||
';
|
||||
$markdown = $converter->convert($html); // $markdown now contains "### Header" and "<img src="" />"
|
||||
```
|
||||
|
||||
### Table support
|
||||
|
||||
Support for Markdown tables is not enabled by default because it is not part of the original Markdown syntax. To use tables add the converter explicitly:
|
||||
|
||||
```php
|
||||
use League\HTMLToMarkdown\HtmlConverter;
|
||||
use League\HTMLToMarkdown\Converter\TableConverter;
|
||||
|
||||
$converter = new HtmlConverter();
|
||||
$converter->getEnvironment()->addConverter(new TableConverter());
|
||||
|
||||
$html = "<table><tr><th>A</th></tr><tr><td>a</td></tr></table>";
|
||||
$markdown = $converter->convert($html);
|
||||
```
|
||||
|
||||
### Limitations
|
||||
|
||||
- Markdown Extra, MultiMarkdown and other variants aren't supported – just Markdown.
|
||||
|
||||
### Style notes
|
||||
|
||||
- Setext (underlined) headers are the default for H1 and H2. If you prefer the ATX style for H1 and H2 (# Header 1 and ## Header 2), set `header_style` to 'atx' in the options array when you instantiate the object:
|
||||
|
||||
`$converter = new HtmlConverter(array('header_style'=>'atx'));`
|
||||
|
||||
Headers of H3 priority and lower always use atx style.
|
||||
|
||||
- Links and images are referenced inline. Footnote references (where image src and anchor href attributes are listed in the footnotes) are not used.
|
||||
- Blockquotes aren't line wrapped – it makes the converted Markdown easier to edit.
|
||||
|
||||
### Dependencies
|
||||
|
||||
HTML To Markdown requires PHP's [xml](http://www.php.net/manual/en/xml.installation.php), [lib-xml](http://www.php.net/manual/en/libxml.installation.php), and [dom](http://www.php.net/manual/en/dom.installation.php) extensions, all of which are enabled by default on most distributions.
|
||||
|
||||
Errors such as "Fatal error: Class 'DOMDocument' not found" on distributions such as CentOS that disable PHP's xml extension can be resolved by installing php-xml.
|
||||
|
||||
### Contributors
|
||||
|
||||
Many thanks to all [contributors](https://github.com/thephpleague/html-to-markdown/graphs/contributors) so far. Further improvements and feature suggestions are very welcome.
|
||||
|
||||
### How it works
|
||||
|
||||
HTML To Markdown creates a DOMDocument from the supplied HTML, walks through the tree, and converts each node to a text node containing the equivalent markdown, starting from the most deeply nested node and working inwards towards the root node.
|
||||
|
||||
### To-do
|
||||
|
||||
- Support for nested lists and lists inside blockquotes.
|
||||
- Offer an option to preserve tags as HTML if they contain attributes that can't be represented with Markdown (e.g. `style`).
|
||||
|
||||
### Trying to convert Markdown to HTML?
|
||||
|
||||
Use one of these great libraries:
|
||||
|
||||
- [league/commonmark](https://github.com/thephpleague/commonmark) (recommended)
|
||||
- [cebe/markdown](https://github.com/cebe/markdown)
|
||||
- [PHP Markdown](https://michelf.ca/projects/php-markdown/)
|
||||
- [Parsedown](https://github.com/erusev/parsedown)
|
||||
|
||||
No guarantees about the Elvish, though.
|
||||
108
ActividadesWP/v5/items/vendor/league/html-to-markdown/bin/html-to-markdown
vendored
Executable file
108
ActividadesWP/v5/items/vendor/league/html-to-markdown/bin/html-to-markdown
vendored
Executable file
|
|
@ -0,0 +1,108 @@
|
|||
#!/usr/bin/env php
|
||||
<?php
|
||||
|
||||
requireAutoloader();
|
||||
|
||||
ini_set('display_errors', 'stderr');
|
||||
|
||||
foreach ($argv as $i => $arg) {
|
||||
if ($i === 0) {
|
||||
continue;
|
||||
}
|
||||
|
||||
if (substr($arg, 0, 1) === '-') {
|
||||
switch ($arg) {
|
||||
case '-h':
|
||||
case '--help':
|
||||
echo getHelpText();
|
||||
exit(0);
|
||||
default:
|
||||
fail('Unknown option: ' . $arg);
|
||||
}
|
||||
} else {
|
||||
$src = $argv[1];
|
||||
}
|
||||
}
|
||||
|
||||
if (isset($src)) {
|
||||
if (!file_exists($src)) {
|
||||
fail('File not found: ' . $src);
|
||||
}
|
||||
|
||||
$html = file_get_contents($src);
|
||||
} else {
|
||||
$stdin = fopen('php://stdin', 'r');
|
||||
stream_set_blocking($stdin, false);
|
||||
$html = stream_get_contents($stdin);
|
||||
fclose($stdin);
|
||||
|
||||
if (empty($html)) {
|
||||
fail(getHelpText());
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
$converter = new League\HTMLToMarkdown\HtmlConverter();
|
||||
echo $converter->convert($html);
|
||||
|
||||
/**
|
||||
* Get help and usage info
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
function getHelpText()
|
||||
{
|
||||
return <<<HELP
|
||||
HTML To Markdown
|
||||
|
||||
Usage: html-to-markdown [OPTIONS] [FILE]
|
||||
|
||||
-h, --help Shows help and usage information
|
||||
|
||||
If no file is given, input will be read from STDIN
|
||||
|
||||
Examples:
|
||||
|
||||
Converting a file named document.html:
|
||||
|
||||
html-to-markdown document.html
|
||||
|
||||
Converting a file and saving its output:
|
||||
|
||||
html-to-markdown document.html > output.md
|
||||
|
||||
Converting from STDIN:
|
||||
|
||||
echo -e '<h1>Hello World!</h1>' | html-to-markdown
|
||||
|
||||
Converting from STDIN and saving the output:
|
||||
|
||||
echo -e '<h1>Hello World!</h1>' | html-to-markdown > output.md
|
||||
|
||||
HELP;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $message Error message
|
||||
*/
|
||||
function fail($message)
|
||||
{
|
||||
fwrite(STDERR, $message . "\n");
|
||||
exit(1);
|
||||
}
|
||||
|
||||
function requireAutoloader()
|
||||
{
|
||||
$autoloadPaths = array(
|
||||
// Local package usage
|
||||
__DIR__ . '/../vendor/autoload.php',
|
||||
// Package was included as a library
|
||||
__DIR__ . '/../../../autoload.php',
|
||||
);
|
||||
foreach ($autoloadPaths as $path) {
|
||||
if (file_exists($path)) {
|
||||
require_once $path;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,68 @@
|
|||
{
|
||||
"name": "league/html-to-markdown",
|
||||
"type": "library",
|
||||
"description": "An HTML-to-markdown conversion helper for PHP",
|
||||
"keywords": ["markdown", "html"],
|
||||
"homepage": "https://github.com/thephpleague/html-to-markdown",
|
||||
"license": "MIT",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Colin O'Dell",
|
||||
"email": "colinodell@gmail.com",
|
||||
"homepage": "https://www.colinodell.com",
|
||||
"role": "Lead Developer"
|
||||
},
|
||||
{
|
||||
"name": "Nick Cernis",
|
||||
"email": "nick@cern.is",
|
||||
"homepage": "http://modernnerd.net",
|
||||
"role": "Original Author"
|
||||
}
|
||||
],
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"League\\HTMLToMarkdown\\": "src/"
|
||||
}
|
||||
},
|
||||
"autoload-dev": {
|
||||
"psr-4": {
|
||||
"League\\HTMLToMarkdown\\Test\\": "tests"
|
||||
}
|
||||
},
|
||||
"require": {
|
||||
"php": "^7.2.5 || ^8.0",
|
||||
"ext-dom": "*",
|
||||
"ext-xml": "*"
|
||||
},
|
||||
"require-dev": {
|
||||
"mikehaertl/php-shellcommand": "^1.1.0",
|
||||
"phpstan/phpstan": "^1.8.8",
|
||||
"phpunit/phpunit": "^8.5 || ^9.2",
|
||||
"scrutinizer/ocular": "^1.6",
|
||||
"unleashedtech/php-coding-standard": "^2.7 || ^3.0",
|
||||
"vimeo/psalm": "^4.22 || ^5.0"
|
||||
},
|
||||
"bin": ["bin/html-to-markdown"],
|
||||
"scripts": {
|
||||
"phpcs": "phpcs",
|
||||
"phpstan": "phpstan analyse",
|
||||
"phpunit": "phpunit --no-coverage",
|
||||
"psalm": "psalm --stats",
|
||||
"test": [
|
||||
"@phpcs",
|
||||
"@phpstan",
|
||||
"@psalm",
|
||||
"@phpunit"
|
||||
]
|
||||
},
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-master": "5.2-dev"
|
||||
}
|
||||
},
|
||||
"config": {
|
||||
"allow-plugins": {
|
||||
"dealerdirect/phpcodesniffer-composer-installer": true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,27 @@
|
|||
<?xml version="1.0"?>
|
||||
<ruleset>
|
||||
<arg name="basepath" value="."/>
|
||||
<arg name="extensions" value="php"/>
|
||||
<arg name="parallel" value="80"/>
|
||||
<arg name="cache" value=".phpcs-cache"/>
|
||||
<arg name="colors"/>
|
||||
|
||||
<!-- Ignore warnings, show progress of the run and show sniff names -->
|
||||
<arg value="nps"/>
|
||||
|
||||
<!-- Directories to be checked -->
|
||||
<file>src</file>
|
||||
<file>tests</file>
|
||||
|
||||
<!-- Include full Unleashed Coding Standard -->
|
||||
<rule ref="Unleashed"/>
|
||||
|
||||
<rule ref="SlevomatCodingStandard.Commenting.ForbiddenAnnotations.AnnotationForbidden">
|
||||
<exclude-pattern>src/HtmlConverter*\.php</exclude-pattern>
|
||||
</rule>
|
||||
|
||||
<rule ref="SlevomatCodingStandard.Commenting.DocCommentSpacing.IncorrectOrderOfAnnotationsGroup">
|
||||
<exclude-pattern>src/HtmlConverter*\.php</exclude-pattern>
|
||||
</rule>
|
||||
|
||||
</ruleset>
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
parameters:
|
||||
level: max
|
||||
paths:
|
||||
- src
|
||||
|
|
@ -0,0 +1,15 @@
|
|||
<?xml version="1.0"?>
|
||||
<psalm
|
||||
errorLevel="3"
|
||||
resolveFromConfigFile="true"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xmlns="https://getpsalm.org/schema/config"
|
||||
xsi:schemaLocation="https://getpsalm.org/schema/config vendor/vimeo/psalm/config.xsd"
|
||||
>
|
||||
<projectFiles>
|
||||
<directory name="src" />
|
||||
<ignoreFiles>
|
||||
<directory name="vendor" />
|
||||
</ignoreFiles>
|
||||
</projectFiles>
|
||||
</psalm>
|
||||
|
|
@ -0,0 +1,35 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace League\HTMLToMarkdown;
|
||||
|
||||
/**
|
||||
* @internal
|
||||
*/
|
||||
final class Coerce
|
||||
{
|
||||
private function __construct()
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* @param mixed $val
|
||||
*/
|
||||
public static function toString($val): string
|
||||
{
|
||||
switch (true) {
|
||||
case \is_string($val):
|
||||
return $val;
|
||||
case \is_bool($val):
|
||||
case \is_float($val):
|
||||
case \is_int($val):
|
||||
case $val === null:
|
||||
return \strval($val);
|
||||
case \is_object($val) && \method_exists($val, '__toString'):
|
||||
return $val->__toString();
|
||||
default:
|
||||
throw new \InvalidArgumentException('Cannot coerce this value to string');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,80 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace League\HTMLToMarkdown;
|
||||
|
||||
class Configuration
|
||||
{
|
||||
/** @var array<string, mixed> */
|
||||
protected $config;
|
||||
|
||||
/**
|
||||
* @param array<string, mixed> $config
|
||||
*/
|
||||
public function __construct(array $config = [])
|
||||
{
|
||||
$this->config = $config;
|
||||
|
||||
$this->checkForDeprecatedOptions($config);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array<string, mixed> $config
|
||||
*/
|
||||
public function merge(array $config = []): void
|
||||
{
|
||||
$this->checkForDeprecatedOptions($config);
|
||||
$this->config = \array_replace_recursive($this->config, $config);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array<string, mixed> $config
|
||||
*/
|
||||
public function replace(array $config = []): void
|
||||
{
|
||||
$this->checkForDeprecatedOptions($config);
|
||||
$this->config = $config;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param mixed $value
|
||||
*/
|
||||
public function setOption(string $key, $value): void
|
||||
{
|
||||
$this->checkForDeprecatedOptions([$key => $value]);
|
||||
$this->config[$key] = $value;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param mixed|null $default
|
||||
*
|
||||
* @return mixed|null
|
||||
*/
|
||||
public function getOption(?string $key = null, $default = null)
|
||||
{
|
||||
if ($key === null) {
|
||||
return $this->config;
|
||||
}
|
||||
|
||||
if (! isset($this->config[$key])) {
|
||||
return $default;
|
||||
}
|
||||
|
||||
return $this->config[$key];
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array<string, mixed> $config
|
||||
*/
|
||||
private function checkForDeprecatedOptions(array $config): void
|
||||
{
|
||||
foreach ($config as $key => $value) {
|
||||
if ($key === 'bold_style' && $value !== '**') {
|
||||
@\trigger_error('Customizing the bold_style option is deprecated and may be removed in the next major version', E_USER_DEPRECATED);
|
||||
} elseif ($key === 'italic_style' && $value !== '*') {
|
||||
@\trigger_error('Customizing the italic_style option is deprecated and may be removed in the next major version', E_USER_DEPRECATED);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
10
ActividadesWP/v5/items/vendor/league/html-to-markdown/src/ConfigurationAwareInterface.php
vendored
Normal file
10
ActividadesWP/v5/items/vendor/league/html-to-markdown/src/ConfigurationAwareInterface.php
vendored
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace League\HTMLToMarkdown;
|
||||
|
||||
interface ConfigurationAwareInterface
|
||||
{
|
||||
public function setConfig(Configuration $config): void;
|
||||
}
|
||||
42
ActividadesWP/v5/items/vendor/league/html-to-markdown/src/Converter/BlockquoteConverter.php
vendored
Normal file
42
ActividadesWP/v5/items/vendor/league/html-to-markdown/src/Converter/BlockquoteConverter.php
vendored
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace League\HTMLToMarkdown\Converter;
|
||||
|
||||
use League\HTMLToMarkdown\ElementInterface;
|
||||
|
||||
class BlockquoteConverter implements ConverterInterface
|
||||
{
|
||||
public function convert(ElementInterface $element): string
|
||||
{
|
||||
// Contents should have already been converted to Markdown by this point,
|
||||
// so we just need to add '>' symbols to each line.
|
||||
|
||||
$markdown = '';
|
||||
|
||||
$quoteContent = \trim($element->getValue());
|
||||
|
||||
$lines = \preg_split('/\r\n|\r|\n/', $quoteContent);
|
||||
\assert(\is_array($lines));
|
||||
|
||||
$totalLines = \count($lines);
|
||||
|
||||
foreach ($lines as $i => $line) {
|
||||
$markdown .= '> ' . $line . "\n";
|
||||
if ($i + 1 === $totalLines) {
|
||||
$markdown .= "\n";
|
||||
}
|
||||
}
|
||||
|
||||
return $markdown;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string[]
|
||||
*/
|
||||
public function getSupportedTags(): array
|
||||
{
|
||||
return ['blockquote'];
|
||||
}
|
||||
}
|
||||
68
ActividadesWP/v5/items/vendor/league/html-to-markdown/src/Converter/CodeConverter.php
vendored
Normal file
68
ActividadesWP/v5/items/vendor/league/html-to-markdown/src/Converter/CodeConverter.php
vendored
Normal file
|
|
@ -0,0 +1,68 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace League\HTMLToMarkdown\Converter;
|
||||
|
||||
use League\HTMLToMarkdown\ElementInterface;
|
||||
|
||||
class CodeConverter implements ConverterInterface
|
||||
{
|
||||
public function convert(ElementInterface $element): string
|
||||
{
|
||||
$language = '';
|
||||
|
||||
// Checking for language class on the code block
|
||||
$classes = $element->getAttribute('class');
|
||||
|
||||
if ($classes) {
|
||||
// Since tags can have more than one class, we need to find the one that starts with 'language-'
|
||||
$classes = \explode(' ', $classes);
|
||||
foreach ($classes as $class) {
|
||||
if (\strpos($class, 'language-') !== false) {
|
||||
// Found one, save it as the selected language and stop looping over the classes.
|
||||
$language = \str_replace('language-', '', $class);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
$markdown = '';
|
||||
$code = \html_entity_decode($element->getChildrenAsString());
|
||||
|
||||
// In order to remove the code tags we need to search for them and, in the case of the opening tag
|
||||
// use a regular expression to find the tag and the other attributes it might have
|
||||
$code = \preg_replace('/<code\b[^>]*>/', '', $code);
|
||||
\assert($code !== null);
|
||||
$code = \str_replace('</code>', '', $code);
|
||||
|
||||
// Checking if it's a code block or span
|
||||
if ($this->shouldBeBlock($element, $code)) {
|
||||
// Code block detected, newlines will be added in parent
|
||||
$markdown .= '```' . $language . "\n" . $code . "\n" . '```';
|
||||
} else {
|
||||
// One line of code, wrapping it on one backtick, removing new lines
|
||||
$markdown .= '`' . \preg_replace('/\r\n|\r|\n/', '', $code) . '`';
|
||||
}
|
||||
|
||||
return $markdown;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string[]
|
||||
*/
|
||||
public function getSupportedTags(): array
|
||||
{
|
||||
return ['code'];
|
||||
}
|
||||
|
||||
private function shouldBeBlock(ElementInterface $element, string $code): bool
|
||||
{
|
||||
$parent = $element->getParent();
|
||||
if ($parent !== null && $parent->getTagName() === 'pre') {
|
||||
return true;
|
||||
}
|
||||
|
||||
return \preg_match('/[^\s]` `/', $code) === 1;
|
||||
}
|
||||
}
|
||||
53
ActividadesWP/v5/items/vendor/league/html-to-markdown/src/Converter/CommentConverter.php
vendored
Normal file
53
ActividadesWP/v5/items/vendor/league/html-to-markdown/src/Converter/CommentConverter.php
vendored
Normal file
|
|
@ -0,0 +1,53 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace League\HTMLToMarkdown\Converter;
|
||||
|
||||
use League\HTMLToMarkdown\Configuration;
|
||||
use League\HTMLToMarkdown\ConfigurationAwareInterface;
|
||||
use League\HTMLToMarkdown\ElementInterface;
|
||||
|
||||
class CommentConverter implements ConverterInterface, ConfigurationAwareInterface
|
||||
{
|
||||
/** @var Configuration */
|
||||
protected $config;
|
||||
|
||||
public function setConfig(Configuration $config): void
|
||||
{
|
||||
$this->config = $config;
|
||||
}
|
||||
|
||||
public function convert(ElementInterface $element): string
|
||||
{
|
||||
if ($this->shouldPreserve($element)) {
|
||||
return '<!--' . $element->getValue() . '-->';
|
||||
}
|
||||
|
||||
return '';
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string[]
|
||||
*/
|
||||
public function getSupportedTags(): array
|
||||
{
|
||||
return ['#comment'];
|
||||
}
|
||||
|
||||
private function shouldPreserve(ElementInterface $element): bool
|
||||
{
|
||||
$preserve = $this->config->getOption('preserve_comments');
|
||||
if ($preserve === true) {
|
||||
return true;
|
||||
}
|
||||
|
||||
if (\is_array($preserve)) {
|
||||
$value = \trim($element->getValue());
|
||||
|
||||
return \in_array($value, $preserve, true);
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
}
|
||||
17
ActividadesWP/v5/items/vendor/league/html-to-markdown/src/Converter/ConverterInterface.php
vendored
Normal file
17
ActividadesWP/v5/items/vendor/league/html-to-markdown/src/Converter/ConverterInterface.php
vendored
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace League\HTMLToMarkdown\Converter;
|
||||
|
||||
use League\HTMLToMarkdown\ElementInterface;
|
||||
|
||||
interface ConverterInterface
|
||||
{
|
||||
public function convert(ElementInterface $element): string;
|
||||
|
||||
/**
|
||||
* @return string[]
|
||||
*/
|
||||
public function getSupportedTags(): array;
|
||||
}
|
||||
49
ActividadesWP/v5/items/vendor/league/html-to-markdown/src/Converter/DefaultConverter.php
vendored
Normal file
49
ActividadesWP/v5/items/vendor/league/html-to-markdown/src/Converter/DefaultConverter.php
vendored
Normal file
|
|
@ -0,0 +1,49 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace League\HTMLToMarkdown\Converter;
|
||||
|
||||
use League\HTMLToMarkdown\Configuration;
|
||||
use League\HTMLToMarkdown\ConfigurationAwareInterface;
|
||||
use League\HTMLToMarkdown\ElementInterface;
|
||||
|
||||
class DefaultConverter implements ConverterInterface, ConfigurationAwareInterface
|
||||
{
|
||||
public const DEFAULT_CONVERTER = '_default';
|
||||
|
||||
/** @var Configuration */
|
||||
protected $config;
|
||||
|
||||
public function setConfig(Configuration $config): void
|
||||
{
|
||||
$this->config = $config;
|
||||
}
|
||||
|
||||
public function convert(ElementInterface $element): string
|
||||
{
|
||||
// If strip_tags is false (the default), preserve tags that don't have Markdown equivalents,
|
||||
// such as <span> nodes on their own. C14N() canonicalizes the node to a string.
|
||||
// See: http://www.php.net/manual/en/domnode.c14n.php
|
||||
if ($this->config->getOption('strip_tags', false)) {
|
||||
return $element->getValue();
|
||||
}
|
||||
|
||||
$markdown = \html_entity_decode($element->getChildrenAsString());
|
||||
|
||||
// Tables are only handled here if TableConverter is not used
|
||||
if ($element->getTagName() === 'table') {
|
||||
$markdown .= "\n\n";
|
||||
}
|
||||
|
||||
return $markdown;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string[]
|
||||
*/
|
||||
public function getSupportedTags(): array
|
||||
{
|
||||
return [self::DEFAULT_CONVERTER];
|
||||
}
|
||||
}
|
||||
37
ActividadesWP/v5/items/vendor/league/html-to-markdown/src/Converter/DivConverter.php
vendored
Normal file
37
ActividadesWP/v5/items/vendor/league/html-to-markdown/src/Converter/DivConverter.php
vendored
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace League\HTMLToMarkdown\Converter;
|
||||
|
||||
use League\HTMLToMarkdown\Configuration;
|
||||
use League\HTMLToMarkdown\ConfigurationAwareInterface;
|
||||
use League\HTMLToMarkdown\ElementInterface;
|
||||
|
||||
class DivConverter implements ConverterInterface, ConfigurationAwareInterface
|
||||
{
|
||||
/** @var Configuration */
|
||||
protected $config;
|
||||
|
||||
public function setConfig(Configuration $config): void
|
||||
{
|
||||
$this->config = $config;
|
||||
}
|
||||
|
||||
public function convert(ElementInterface $element): string
|
||||
{
|
||||
if ($this->config->getOption('strip_tags', false)) {
|
||||
return $element->getValue() . "\n\n";
|
||||
}
|
||||
|
||||
return \html_entity_decode($element->getChildrenAsString());
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string[]
|
||||
*/
|
||||
public function getSupportedTags(): array
|
||||
{
|
||||
return ['div'];
|
||||
}
|
||||
}
|
||||
72
ActividadesWP/v5/items/vendor/league/html-to-markdown/src/Converter/EmphasisConverter.php
vendored
Normal file
72
ActividadesWP/v5/items/vendor/league/html-to-markdown/src/Converter/EmphasisConverter.php
vendored
Normal file
|
|
@ -0,0 +1,72 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace League\HTMLToMarkdown\Converter;
|
||||
|
||||
use League\HTMLToMarkdown\Configuration;
|
||||
use League\HTMLToMarkdown\ConfigurationAwareInterface;
|
||||
use League\HTMLToMarkdown\ElementInterface;
|
||||
|
||||
class EmphasisConverter implements ConverterInterface, ConfigurationAwareInterface
|
||||
{
|
||||
/** @var Configuration */
|
||||
protected $config;
|
||||
|
||||
protected function getNormTag(?ElementInterface $element): string
|
||||
{
|
||||
if ($element !== null && ! $element->isText()) {
|
||||
$tag = $element->getTagName();
|
||||
if ($tag === 'i' || $tag === 'em') {
|
||||
return 'em';
|
||||
}
|
||||
|
||||
if ($tag === 'b' || $tag === 'strong') {
|
||||
return 'strong';
|
||||
}
|
||||
}
|
||||
|
||||
return '';
|
||||
}
|
||||
|
||||
public function setConfig(Configuration $config): void
|
||||
{
|
||||
$this->config = $config;
|
||||
}
|
||||
|
||||
public function convert(ElementInterface $element): string
|
||||
{
|
||||
$tag = $this->getNormTag($element);
|
||||
$value = $element->getValue();
|
||||
|
||||
if (! \trim($value)) {
|
||||
return $value;
|
||||
}
|
||||
|
||||
if ($tag === 'em') {
|
||||
$style = $this->config->getOption('italic_style');
|
||||
} else {
|
||||
$style = $this->config->getOption('bold_style');
|
||||
}
|
||||
|
||||
$prefix = \ltrim($value) !== $value ? ' ' : '';
|
||||
$suffix = \rtrim($value) !== $value ? ' ' : '';
|
||||
|
||||
/* If this node is immediately preceded or followed by one of the same type don't emit
|
||||
* the start or end $style, respectively. This prevents <em>foo</em><em>bar</em> from
|
||||
* being converted to *foo**bar* which is incorrect. We want *foobar* instead.
|
||||
*/
|
||||
$preStyle = $this->getNormTag($element->getPreviousSibling()) === $tag ? '' : $style;
|
||||
$postStyle = $this->getNormTag($element->getNextSibling()) === $tag ? '' : $style;
|
||||
|
||||
return $prefix . $preStyle . \trim($value) . $postStyle . $suffix;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string[]
|
||||
*/
|
||||
public function getSupportedTags(): array
|
||||
{
|
||||
return ['em', 'i', 'strong', 'b'];
|
||||
}
|
||||
}
|
||||
48
ActividadesWP/v5/items/vendor/league/html-to-markdown/src/Converter/HardBreakConverter.php
vendored
Normal file
48
ActividadesWP/v5/items/vendor/league/html-to-markdown/src/Converter/HardBreakConverter.php
vendored
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace League\HTMLToMarkdown\Converter;
|
||||
|
||||
use League\HTMLToMarkdown\Configuration;
|
||||
use League\HTMLToMarkdown\ConfigurationAwareInterface;
|
||||
use League\HTMLToMarkdown\ElementInterface;
|
||||
|
||||
class HardBreakConverter implements ConverterInterface, ConfigurationAwareInterface
|
||||
{
|
||||
/** @var Configuration */
|
||||
protected $config;
|
||||
|
||||
public function setConfig(Configuration $config): void
|
||||
{
|
||||
$this->config = $config;
|
||||
}
|
||||
|
||||
public function convert(ElementInterface $element): string
|
||||
{
|
||||
$return = $this->config->getOption('hard_break') ? "\n" : " \n";
|
||||
|
||||
$next = $element->getNext();
|
||||
if ($next) {
|
||||
$nextValue = $next->getValue();
|
||||
if ($nextValue) {
|
||||
if (\in_array(\substr($nextValue, 0, 2), ['- ', '* ', '+ '], true)) {
|
||||
$parent = $element->getParent();
|
||||
if ($parent && $parent->getTagName() === 'li') {
|
||||
$return .= '\\';
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return $return;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string[]
|
||||
*/
|
||||
public function getSupportedTags(): array
|
||||
{
|
||||
return ['br'];
|
||||
}
|
||||
}
|
||||
62
ActividadesWP/v5/items/vendor/league/html-to-markdown/src/Converter/HeaderConverter.php
vendored
Normal file
62
ActividadesWP/v5/items/vendor/league/html-to-markdown/src/Converter/HeaderConverter.php
vendored
Normal file
|
|
@ -0,0 +1,62 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace League\HTMLToMarkdown\Converter;
|
||||
|
||||
use League\HTMLToMarkdown\Configuration;
|
||||
use League\HTMLToMarkdown\ConfigurationAwareInterface;
|
||||
use League\HTMLToMarkdown\ElementInterface;
|
||||
|
||||
class HeaderConverter implements ConverterInterface, ConfigurationAwareInterface
|
||||
{
|
||||
public const STYLE_ATX = 'atx';
|
||||
public const STYLE_SETEXT = 'setext';
|
||||
|
||||
/** @var Configuration */
|
||||
protected $config;
|
||||
|
||||
public function setConfig(Configuration $config): void
|
||||
{
|
||||
$this->config = $config;
|
||||
}
|
||||
|
||||
public function convert(ElementInterface $element): string
|
||||
{
|
||||
$level = (int) \substr($element->getTagName(), 1, 1);
|
||||
$style = $this->config->getOption('header_style', self::STYLE_SETEXT);
|
||||
|
||||
if (\strlen($element->getValue()) === 0) {
|
||||
return "\n";
|
||||
}
|
||||
|
||||
if (($level === 1 || $level === 2) && ! $element->isDescendantOf('blockquote') && $style === self::STYLE_SETEXT) {
|
||||
return $this->createSetextHeader($level, $element->getValue());
|
||||
}
|
||||
|
||||
return $this->createAtxHeader($level, $element->getValue());
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string[]
|
||||
*/
|
||||
public function getSupportedTags(): array
|
||||
{
|
||||
return ['h1', 'h2', 'h3', 'h4', 'h5', 'h6'];
|
||||
}
|
||||
|
||||
private function createSetextHeader(int $level, string $content): string
|
||||
{
|
||||
$length = \function_exists('mb_strlen') ? \mb_strlen($content, 'utf-8') : \strlen($content);
|
||||
$underline = $level === 1 ? '=' : '-';
|
||||
|
||||
return $content . "\n" . \str_repeat($underline, $length) . "\n\n";
|
||||
}
|
||||
|
||||
private function createAtxHeader(int $level, string $content): string
|
||||
{
|
||||
$prefix = \str_repeat('#', $level) . ' ';
|
||||
|
||||
return $prefix . $content . "\n\n";
|
||||
}
|
||||
}
|
||||
23
ActividadesWP/v5/items/vendor/league/html-to-markdown/src/Converter/HorizontalRuleConverter.php
vendored
Normal file
23
ActividadesWP/v5/items/vendor/league/html-to-markdown/src/Converter/HorizontalRuleConverter.php
vendored
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace League\HTMLToMarkdown\Converter;
|
||||
|
||||
use League\HTMLToMarkdown\ElementInterface;
|
||||
|
||||
class HorizontalRuleConverter implements ConverterInterface
|
||||
{
|
||||
public function convert(ElementInterface $element): string
|
||||
{
|
||||
return "---\n\n";
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string[]
|
||||
*/
|
||||
public function getSupportedTags(): array
|
||||
{
|
||||
return ['hr'];
|
||||
}
|
||||
}
|
||||
32
ActividadesWP/v5/items/vendor/league/html-to-markdown/src/Converter/ImageConverter.php
vendored
Normal file
32
ActividadesWP/v5/items/vendor/league/html-to-markdown/src/Converter/ImageConverter.php
vendored
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace League\HTMLToMarkdown\Converter;
|
||||
|
||||
use League\HTMLToMarkdown\ElementInterface;
|
||||
|
||||
class ImageConverter implements ConverterInterface
|
||||
{
|
||||
public function convert(ElementInterface $element): string
|
||||
{
|
||||
$src = $element->getAttribute('src');
|
||||
$alt = $element->getAttribute('alt');
|
||||
$title = $element->getAttribute('title');
|
||||
|
||||
if ($title !== '') {
|
||||
// No newlines added. <img> should be in a block-level element.
|
||||
return '';
|
||||
}
|
||||
|
||||
return '';
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string[]
|
||||
*/
|
||||
public function getSupportedTags(): array
|
||||
{
|
||||
return ['img'];
|
||||
}
|
||||
}
|
||||
77
ActividadesWP/v5/items/vendor/league/html-to-markdown/src/Converter/LinkConverter.php
vendored
Normal file
77
ActividadesWP/v5/items/vendor/league/html-to-markdown/src/Converter/LinkConverter.php
vendored
Normal file
|
|
@ -0,0 +1,77 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace League\HTMLToMarkdown\Converter;
|
||||
|
||||
use League\HTMLToMarkdown\Configuration;
|
||||
use League\HTMLToMarkdown\ConfigurationAwareInterface;
|
||||
use League\HTMLToMarkdown\ElementInterface;
|
||||
|
||||
class LinkConverter implements ConverterInterface, ConfigurationAwareInterface
|
||||
{
|
||||
/** @var Configuration */
|
||||
protected $config;
|
||||
|
||||
public function setConfig(Configuration $config): void
|
||||
{
|
||||
$this->config = $config;
|
||||
}
|
||||
|
||||
public function convert(ElementInterface $element): string
|
||||
{
|
||||
$href = $element->getAttribute('href');
|
||||
$title = $element->getAttribute('title');
|
||||
$text = \trim($element->getValue(), "\t\n\r\0\x0B");
|
||||
|
||||
if ($title !== '') {
|
||||
$markdown = '[' . $text . '](' . $href . ' "' . $title . '")';
|
||||
} elseif ($href === $text && $this->isValidAutolink($href)) {
|
||||
$markdown = '<' . $href . '>';
|
||||
} elseif ($href === 'mailto:' . $text && $this->isValidEmail($text)) {
|
||||
$markdown = '<' . $text . '>';
|
||||
} else {
|
||||
if (\stristr($href, ' ')) {
|
||||
$href = '<' . $href . '>';
|
||||
}
|
||||
|
||||
$markdown = '[' . $text . '](' . $href . ')';
|
||||
}
|
||||
|
||||
if (! $href) {
|
||||
if ($this->shouldStrip()) {
|
||||
$markdown = $text;
|
||||
} else {
|
||||
$markdown = \html_entity_decode($element->getChildrenAsString());
|
||||
}
|
||||
}
|
||||
|
||||
return $markdown;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string[]
|
||||
*/
|
||||
public function getSupportedTags(): array
|
||||
{
|
||||
return ['a'];
|
||||
}
|
||||
|
||||
private function isValidAutolink(string $href): bool
|
||||
{
|
||||
$useAutolinks = $this->config->getOption('use_autolinks');
|
||||
|
||||
return $useAutolinks && (\preg_match('/^[A-Za-z][A-Za-z0-9.+-]{1,31}:[^<>\x00-\x20]*/i', $href) === 1);
|
||||
}
|
||||
|
||||
private function isValidEmail(string $email): bool
|
||||
{
|
||||
// Email validation is messy business, but this should cover most cases
|
||||
return \filter_var($email, FILTER_VALIDATE_EMAIL) !== false;
|
||||
}
|
||||
|
||||
private function shouldStrip(): bool
|
||||
{
|
||||
return \boolval($this->config->getOption('strip_placeholder_links') ?? false);
|
||||
}
|
||||
}
|
||||
23
ActividadesWP/v5/items/vendor/league/html-to-markdown/src/Converter/ListBlockConverter.php
vendored
Normal file
23
ActividadesWP/v5/items/vendor/league/html-to-markdown/src/Converter/ListBlockConverter.php
vendored
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace League\HTMLToMarkdown\Converter;
|
||||
|
||||
use League\HTMLToMarkdown\ElementInterface;
|
||||
|
||||
class ListBlockConverter implements ConverterInterface
|
||||
{
|
||||
public function convert(ElementInterface $element): string
|
||||
{
|
||||
return $element->getValue() . "\n";
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string[]
|
||||
*/
|
||||
public function getSupportedTags(): array
|
||||
{
|
||||
return ['ol', 'ul'];
|
||||
}
|
||||
}
|
||||
71
ActividadesWP/v5/items/vendor/league/html-to-markdown/src/Converter/ListItemConverter.php
vendored
Normal file
71
ActividadesWP/v5/items/vendor/league/html-to-markdown/src/Converter/ListItemConverter.php
vendored
Normal file
|
|
@ -0,0 +1,71 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace League\HTMLToMarkdown\Converter;
|
||||
|
||||
use League\HTMLToMarkdown\Coerce;
|
||||
use League\HTMLToMarkdown\Configuration;
|
||||
use League\HTMLToMarkdown\ConfigurationAwareInterface;
|
||||
use League\HTMLToMarkdown\ElementInterface;
|
||||
|
||||
class ListItemConverter implements ConverterInterface, ConfigurationAwareInterface
|
||||
{
|
||||
/** @var Configuration */
|
||||
protected $config;
|
||||
|
||||
/** @var string|null */
|
||||
protected $listItemStyle;
|
||||
|
||||
public function setConfig(Configuration $config): void
|
||||
{
|
||||
$this->config = $config;
|
||||
}
|
||||
|
||||
public function convert(ElementInterface $element): string
|
||||
{
|
||||
// If parent is an ol, use numbers, otherwise, use dashes
|
||||
$listType = ($parent = $element->getParent()) ? $parent->getTagName() : 'ul';
|
||||
|
||||
// Add spaces to start for nested list items
|
||||
$level = $element->getListItemLevel();
|
||||
|
||||
$value = \trim(\implode("\n" . ' ', \explode("\n", \trim($element->getValue()))));
|
||||
|
||||
// If list item is the first in a nested list, add a newline before it
|
||||
$prefix = '';
|
||||
if ($level > 0 && $element->getSiblingPosition() === 1) {
|
||||
$prefix = "\n";
|
||||
}
|
||||
|
||||
if ($listType === 'ul') {
|
||||
$listItemStyle = Coerce::toString($this->config->getOption('list_item_style', '-'));
|
||||
$listItemStyleAlternate = Coerce::toString($this->config->getOption('list_item_style_alternate', ''));
|
||||
if (! isset($this->listItemStyle)) {
|
||||
$this->listItemStyle = $listItemStyleAlternate ?: $listItemStyle;
|
||||
}
|
||||
|
||||
if ($listItemStyleAlternate && $level === 0 && $element->getSiblingPosition() === 1) {
|
||||
$this->listItemStyle = $this->listItemStyle === $listItemStyle ? $listItemStyleAlternate : $listItemStyle;
|
||||
}
|
||||
|
||||
return $prefix . $this->listItemStyle . ' ' . $value . "\n";
|
||||
}
|
||||
|
||||
if ($listType === 'ol' && ($parent = $element->getParent()) && ($start = \intval($parent->getAttribute('start')))) {
|
||||
$number = $start + $element->getSiblingPosition() - 1;
|
||||
} else {
|
||||
$number = $element->getSiblingPosition();
|
||||
}
|
||||
|
||||
return $prefix . $number . '. ' . $value . "\n";
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string[]
|
||||
*/
|
||||
public function getSupportedTags(): array
|
||||
{
|
||||
return ['li'];
|
||||
}
|
||||
}
|
||||
108
ActividadesWP/v5/items/vendor/league/html-to-markdown/src/Converter/ParagraphConverter.php
vendored
Normal file
108
ActividadesWP/v5/items/vendor/league/html-to-markdown/src/Converter/ParagraphConverter.php
vendored
Normal file
|
|
@ -0,0 +1,108 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace League\HTMLToMarkdown\Converter;
|
||||
|
||||
use League\HTMLToMarkdown\ElementInterface;
|
||||
|
||||
class ParagraphConverter implements ConverterInterface
|
||||
{
|
||||
public function convert(ElementInterface $element): string
|
||||
{
|
||||
$value = $element->getValue();
|
||||
|
||||
$markdown = '';
|
||||
|
||||
$lines = \preg_split('/\r\n|\r|\n/', $value);
|
||||
\assert($lines !== false);
|
||||
|
||||
foreach ($lines as $line) {
|
||||
/*
|
||||
* Some special characters need to be escaped based on the position that they appear
|
||||
* The following function will deal with those special cases.
|
||||
*/
|
||||
$markdown .= $this->escapeSpecialCharacters($line);
|
||||
$markdown .= "\n";
|
||||
}
|
||||
|
||||
return \trim($markdown) !== '' ? \rtrim($markdown) . "\n\n" : '';
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string[]
|
||||
*/
|
||||
public function getSupportedTags(): array
|
||||
{
|
||||
return ['p'];
|
||||
}
|
||||
|
||||
private function escapeSpecialCharacters(string $line): string
|
||||
{
|
||||
$line = $this->escapeFirstCharacters($line);
|
||||
$line = $this->escapeOtherCharacters($line);
|
||||
$line = $this->escapeOtherCharactersRegex($line);
|
||||
|
||||
return $line;
|
||||
}
|
||||
|
||||
private function escapeFirstCharacters(string $line): string
|
||||
{
|
||||
$escapable = [
|
||||
'>',
|
||||
'- ',
|
||||
'+ ',
|
||||
'--',
|
||||
'~~~',
|
||||
'---',
|
||||
'- - -',
|
||||
];
|
||||
|
||||
foreach ($escapable as $i) {
|
||||
if (\strpos(\ltrim($line), $i) === 0) {
|
||||
// Found a character that must be escaped, adding a backslash before
|
||||
return '\\' . \ltrim($line);
|
||||
}
|
||||
}
|
||||
|
||||
return $line;
|
||||
}
|
||||
|
||||
private function escapeOtherCharacters(string $line): string
|
||||
{
|
||||
$escapable = [
|
||||
'<!--',
|
||||
];
|
||||
|
||||
foreach ($escapable as $i) {
|
||||
if (($pos = \strpos($line, $i)) === false) {
|
||||
continue;
|
||||
}
|
||||
|
||||
// Found an escapable character, escaping it
|
||||
$line = \substr_replace($line, '\\', $pos, 0);
|
||||
}
|
||||
|
||||
return $line;
|
||||
}
|
||||
|
||||
private function escapeOtherCharactersRegex(string $line): string
|
||||
{
|
||||
$regExs = [
|
||||
// Match numbers ending on ')' or '.' that are at the beginning of the line.
|
||||
// They will be escaped if immediately followed by a space or newline.
|
||||
'/^[0-9]+(?=(\)|\.)( |$))/',
|
||||
];
|
||||
|
||||
foreach ($regExs as $i) {
|
||||
if (! \preg_match($i, $line, $match)) {
|
||||
continue;
|
||||
}
|
||||
|
||||
// Matched an escapable character, adding a backslash on the string before the offending character
|
||||
$line = \substr_replace($line, '\\', \strlen($match[0]), 0);
|
||||
}
|
||||
|
||||
return $line;
|
||||
}
|
||||
}
|
||||
58
ActividadesWP/v5/items/vendor/league/html-to-markdown/src/Converter/PreformattedConverter.php
vendored
Normal file
58
ActividadesWP/v5/items/vendor/league/html-to-markdown/src/Converter/PreformattedConverter.php
vendored
Normal file
|
|
@ -0,0 +1,58 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace League\HTMLToMarkdown\Converter;
|
||||
|
||||
use League\HTMLToMarkdown\ElementInterface;
|
||||
|
||||
class PreformattedConverter implements ConverterInterface
|
||||
{
|
||||
public function convert(ElementInterface $element): string
|
||||
{
|
||||
$preContent = \html_entity_decode($element->getChildrenAsString());
|
||||
$preContent = \preg_replace('/<pre\b[^>]*>/', '', $preContent);
|
||||
\assert($preContent !== null);
|
||||
$preContent = \str_replace('</pre>', '', $preContent);
|
||||
|
||||
/*
|
||||
* Checking for the code tag.
|
||||
* Usually pre tags are used along with code tags. This conditional will check for already converted code tags,
|
||||
* which use backticks, and if those backticks are at the beginning and at the end of the string it means
|
||||
* there's no more information to convert.
|
||||
*/
|
||||
|
||||
$firstBacktick = \strpos(\trim($preContent), '`');
|
||||
$lastBacktick = \strrpos(\trim($preContent), '`');
|
||||
if ($firstBacktick === 0 && $lastBacktick === \strlen(\trim($preContent)) - 1) {
|
||||
return $preContent . "\n\n";
|
||||
}
|
||||
|
||||
// If the execution reaches this point it means it's just a pre tag, with no code tag nested
|
||||
|
||||
// Empty lines are a special case
|
||||
if ($preContent === '') {
|
||||
return "```\n```\n\n";
|
||||
}
|
||||
|
||||
// Normalizing new lines
|
||||
$preContent = \preg_replace('/\r\n|\r|\n/', "\n", $preContent);
|
||||
\assert(\is_string($preContent));
|
||||
|
||||
// Ensure there's a newline at the end
|
||||
if (\strrpos($preContent, "\n") !== \strlen($preContent) - \strlen("\n")) {
|
||||
$preContent .= "\n";
|
||||
}
|
||||
|
||||
// Use three backticks
|
||||
return "```\n" . $preContent . "```\n\n";
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string[]
|
||||
*/
|
||||
public function getSupportedTags(): array
|
||||
{
|
||||
return ['pre'];
|
||||
}
|
||||
}
|
||||
114
ActividadesWP/v5/items/vendor/league/html-to-markdown/src/Converter/TableConverter.php
vendored
Normal file
114
ActividadesWP/v5/items/vendor/league/html-to-markdown/src/Converter/TableConverter.php
vendored
Normal file
|
|
@ -0,0 +1,114 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace League\HTMLToMarkdown\Converter;
|
||||
|
||||
use League\HTMLToMarkdown\Coerce;
|
||||
use League\HTMLToMarkdown\Configuration;
|
||||
use League\HTMLToMarkdown\ConfigurationAwareInterface;
|
||||
use League\HTMLToMarkdown\ElementInterface;
|
||||
use League\HTMLToMarkdown\PreConverterInterface;
|
||||
|
||||
class TableConverter implements ConverterInterface, PreConverterInterface, ConfigurationAwareInterface
|
||||
{
|
||||
/** @var Configuration */
|
||||
protected $config;
|
||||
|
||||
public function setConfig(Configuration $config): void
|
||||
{
|
||||
$this->config = $config;
|
||||
}
|
||||
|
||||
/** @var array<string, string> */
|
||||
private static $alignments = [
|
||||
'left' => ':--',
|
||||
'right' => '--:',
|
||||
'center' => ':-:',
|
||||
];
|
||||
|
||||
/** @var array<int, string>|null */
|
||||
private $columnAlignments = [];
|
||||
|
||||
/** @var string|null */
|
||||
private $caption = null;
|
||||
|
||||
public function preConvert(ElementInterface $element): void
|
||||
{
|
||||
$tag = $element->getTagName();
|
||||
// Only table cells and caption are allowed to contain content.
|
||||
// Remove all text between other table elements.
|
||||
if ($tag === 'th' || $tag === 'td' || $tag === 'caption') {
|
||||
return;
|
||||
}
|
||||
|
||||
foreach ($element->getChildren() as $child) {
|
||||
if ($child->isText()) {
|
||||
$child->setFinalMarkdown('');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public function convert(ElementInterface $element): string
|
||||
{
|
||||
$value = $element->getValue();
|
||||
|
||||
switch ($element->getTagName()) {
|
||||
case 'table':
|
||||
$this->columnAlignments = [];
|
||||
if ($this->caption) {
|
||||
$side = $this->config->getOption('table_caption_side');
|
||||
if ($side === 'top') {
|
||||
$value = $this->caption . "\n" . $value;
|
||||
} elseif ($side === 'bottom') {
|
||||
$value .= $this->caption;
|
||||
}
|
||||
|
||||
$this->caption = null;
|
||||
}
|
||||
|
||||
return $value . "\n";
|
||||
case 'caption':
|
||||
$this->caption = \trim($value);
|
||||
|
||||
return '';
|
||||
case 'tr':
|
||||
$value .= "|\n";
|
||||
if ($this->columnAlignments !== null) {
|
||||
$value .= '|' . \implode('|', $this->columnAlignments) . "|\n";
|
||||
|
||||
$this->columnAlignments = null;
|
||||
}
|
||||
|
||||
return $value;
|
||||
case 'th':
|
||||
case 'td':
|
||||
if ($this->columnAlignments !== null) {
|
||||
$align = $element->getAttribute('align');
|
||||
|
||||
$this->columnAlignments[] = self::$alignments[$align] ?? '---';
|
||||
}
|
||||
|
||||
$value = \str_replace("\n", ' ', $value);
|
||||
$value = \str_replace('|', Coerce::toString($this->config->getOption('table_pipe_escape') ?? '\|'), $value);
|
||||
|
||||
return '| ' . \trim($value) . ' ';
|
||||
case 'thead':
|
||||
case 'tbody':
|
||||
case 'tfoot':
|
||||
case 'colgroup':
|
||||
case 'col':
|
||||
return $value;
|
||||
default:
|
||||
return '';
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string[]
|
||||
*/
|
||||
public function getSupportedTags(): array
|
||||
{
|
||||
return ['table', 'tr', 'th', 'td', 'thead', 'tbody', 'tfoot', 'colgroup', 'col', 'caption'];
|
||||
}
|
||||
}
|
||||
48
ActividadesWP/v5/items/vendor/league/html-to-markdown/src/Converter/TextConverter.php
vendored
Normal file
48
ActividadesWP/v5/items/vendor/league/html-to-markdown/src/Converter/TextConverter.php
vendored
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace League\HTMLToMarkdown\Converter;
|
||||
|
||||
use League\HTMLToMarkdown\ElementInterface;
|
||||
|
||||
class TextConverter implements ConverterInterface
|
||||
{
|
||||
public function convert(ElementInterface $element): string
|
||||
{
|
||||
$markdown = $element->getValue();
|
||||
|
||||
// Remove leftover \n at the beginning of the line
|
||||
$markdown = \ltrim($markdown, "\n");
|
||||
|
||||
// Replace sequences of invisible characters with spaces
|
||||
$markdown = \preg_replace('~\s+~u', ' ', $markdown);
|
||||
\assert(\is_string($markdown));
|
||||
|
||||
// Escape the following characters: '*', '_', '[', ']' and '\'
|
||||
if (($parent = $element->getParent()) && $parent->getTagName() !== 'div') {
|
||||
$markdown = \preg_replace('~([*_\\[\\]\\\\])~u', '\\\\$1', $markdown);
|
||||
\assert(\is_string($markdown));
|
||||
}
|
||||
|
||||
$markdown = \preg_replace('~^#~u', '\\\\#', $markdown);
|
||||
\assert(\is_string($markdown));
|
||||
|
||||
if ($markdown === ' ') {
|
||||
$next = $element->getNext();
|
||||
if (! $next || $next->isBlock()) {
|
||||
$markdown = '';
|
||||
}
|
||||
}
|
||||
|
||||
return \htmlspecialchars($markdown, ENT_NOQUOTES, 'UTF-8');
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string[]
|
||||
*/
|
||||
public function getSupportedTags(): array
|
||||
{
|
||||
return ['#text'];
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,233 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace League\HTMLToMarkdown;
|
||||
|
||||
class Element implements ElementInterface
|
||||
{
|
||||
/** @var \DOMNode */
|
||||
protected $node;
|
||||
|
||||
/** @var ElementInterface|null */
|
||||
private $nextCached;
|
||||
|
||||
/** @var \DOMNode|null */
|
||||
private $previousSiblingCached;
|
||||
|
||||
public function __construct(\DOMNode $node)
|
||||
{
|
||||
$this->node = $node;
|
||||
|
||||
$this->previousSiblingCached = $this->node->previousSibling;
|
||||
}
|
||||
|
||||
public function isBlock(): bool
|
||||
{
|
||||
switch ($this->getTagName()) {
|
||||
case 'blockquote':
|
||||
case 'body':
|
||||
case 'div':
|
||||
case 'h1':
|
||||
case 'h2':
|
||||
case 'h3':
|
||||
case 'h4':
|
||||
case 'h5':
|
||||
case 'h6':
|
||||
case 'hr':
|
||||
case 'html':
|
||||
case 'li':
|
||||
case 'p':
|
||||
case 'ol':
|
||||
case 'ul':
|
||||
return true;
|
||||
default:
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
public function isText(): bool
|
||||
{
|
||||
return $this->getTagName() === '#text';
|
||||
}
|
||||
|
||||
public function isWhitespace(): bool
|
||||
{
|
||||
return $this->getTagName() === '#text' && \trim($this->getValue()) === '';
|
||||
}
|
||||
|
||||
public function getTagName(): string
|
||||
{
|
||||
return $this->node->nodeName;
|
||||
}
|
||||
|
||||
public function getValue(): string
|
||||
{
|
||||
return $this->node->nodeValue ?? '';
|
||||
}
|
||||
|
||||
public function hasParent(): bool
|
||||
{
|
||||
return $this->node->parentNode !== null;
|
||||
}
|
||||
|
||||
public function getParent(): ?ElementInterface
|
||||
{
|
||||
return $this->node->parentNode ? new self($this->node->parentNode) : null;
|
||||
}
|
||||
|
||||
public function getNextSibling(): ?ElementInterface
|
||||
{
|
||||
return $this->node->nextSibling !== null ? new self($this->node->nextSibling) : null;
|
||||
}
|
||||
|
||||
public function getPreviousSibling(): ?ElementInterface
|
||||
{
|
||||
return $this->previousSiblingCached !== null ? new self($this->previousSiblingCached) : null;
|
||||
}
|
||||
|
||||
public function hasChildren(): bool
|
||||
{
|
||||
return $this->node->hasChildNodes();
|
||||
}
|
||||
|
||||
/**
|
||||
* @return ElementInterface[]
|
||||
*/
|
||||
public function getChildren(): array
|
||||
{
|
||||
$ret = [];
|
||||
foreach ($this->node->childNodes as $node) {
|
||||
/** @psalm-suppress RedundantCondition */
|
||||
\assert($node instanceof \DOMNode);
|
||||
$ret[] = new self($node);
|
||||
}
|
||||
|
||||
return $ret;
|
||||
}
|
||||
|
||||
public function getNext(): ?ElementInterface
|
||||
{
|
||||
if ($this->nextCached === null) {
|
||||
$nextNode = $this->getNextNode($this->node);
|
||||
if ($nextNode !== null) {
|
||||
$this->nextCached = new self($nextNode);
|
||||
}
|
||||
}
|
||||
|
||||
return $this->nextCached;
|
||||
}
|
||||
|
||||
private function getNextNode(\DOMNode $node, bool $checkChildren = true): ?\DOMNode
|
||||
{
|
||||
if ($checkChildren && $node->firstChild) {
|
||||
return $node->firstChild;
|
||||
}
|
||||
|
||||
if ($node->nextSibling) {
|
||||
return $node->nextSibling;
|
||||
}
|
||||
|
||||
if ($node->parentNode) {
|
||||
return $this->getNextNode($node->parentNode, false);
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string[]|string $tagNames
|
||||
*/
|
||||
public function isDescendantOf($tagNames): bool
|
||||
{
|
||||
if (! \is_array($tagNames)) {
|
||||
$tagNames = [$tagNames];
|
||||
}
|
||||
|
||||
for ($p = $this->node->parentNode; $p !== null; $p = $p->parentNode) {
|
||||
if (\in_array($p->nodeName, $tagNames, true)) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
public function setFinalMarkdown(string $markdown): void
|
||||
{
|
||||
if ($this->node->ownerDocument === null) {
|
||||
throw new \RuntimeException('Unowned node');
|
||||
}
|
||||
|
||||
if ($this->node->parentNode === null) {
|
||||
throw new \RuntimeException('Cannot setFinalMarkdown() on a node without a parent');
|
||||
}
|
||||
|
||||
$markdownNode = $this->node->ownerDocument->createTextNode($markdown);
|
||||
$this->node->parentNode->replaceChild($markdownNode, $this->node);
|
||||
}
|
||||
|
||||
public function getChildrenAsString(): string
|
||||
{
|
||||
return $this->node->C14N();
|
||||
}
|
||||
|
||||
public function getSiblingPosition(): int
|
||||
{
|
||||
$position = 0;
|
||||
|
||||
$parent = $this->getParent();
|
||||
if ($parent === null) {
|
||||
return $position;
|
||||
}
|
||||
|
||||
// Loop through all nodes and find the given $node
|
||||
foreach ($parent->getChildren() as $currentNode) {
|
||||
if (! $currentNode->isWhitespace()) {
|
||||
$position++;
|
||||
}
|
||||
|
||||
// TODO: Need a less-buggy way of comparing these
|
||||
// Perhaps we can somehow ensure that we always have the exact same object and use === instead?
|
||||
if ($this->equals($currentNode)) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
return $position;
|
||||
}
|
||||
|
||||
public function getListItemLevel(): int
|
||||
{
|
||||
$level = 0;
|
||||
$parent = $this->getParent();
|
||||
|
||||
while ($parent !== null && $parent->hasParent()) {
|
||||
if ($parent->getTagName() === 'li') {
|
||||
$level++;
|
||||
}
|
||||
|
||||
$parent = $parent->getParent();
|
||||
}
|
||||
|
||||
return $level;
|
||||
}
|
||||
|
||||
public function getAttribute(string $name): string
|
||||
{
|
||||
if ($this->node instanceof \DOMElement) {
|
||||
return $this->node->getAttribute($name);
|
||||
}
|
||||
|
||||
return '';
|
||||
}
|
||||
|
||||
public function equals(ElementInterface $element): bool
|
||||
{
|
||||
if ($element instanceof self) {
|
||||
return $element->node === $this->node;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
}
|
||||
50
ActividadesWP/v5/items/vendor/league/html-to-markdown/src/ElementInterface.php
vendored
Normal file
50
ActividadesWP/v5/items/vendor/league/html-to-markdown/src/ElementInterface.php
vendored
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace League\HTMLToMarkdown;
|
||||
|
||||
interface ElementInterface
|
||||
{
|
||||
public function isBlock(): bool;
|
||||
|
||||
public function isText(): bool;
|
||||
|
||||
public function isWhitespace(): bool;
|
||||
|
||||
public function getTagName(): string;
|
||||
|
||||
public function getValue(): string;
|
||||
|
||||
public function hasParent(): bool;
|
||||
|
||||
public function getParent(): ?ElementInterface;
|
||||
|
||||
public function getNextSibling(): ?ElementInterface;
|
||||
|
||||
public function getPreviousSibling(): ?ElementInterface;
|
||||
|
||||
/**
|
||||
* @param string|string[] $tagNames
|
||||
*/
|
||||
public function isDescendantOf($tagNames): bool;
|
||||
|
||||
public function hasChildren(): bool;
|
||||
|
||||
/**
|
||||
* @return ElementInterface[]
|
||||
*/
|
||||
public function getChildren(): array;
|
||||
|
||||
public function getNext(): ?ElementInterface;
|
||||
|
||||
public function getSiblingPosition(): int;
|
||||
|
||||
public function getChildrenAsString(): string;
|
||||
|
||||
public function setFinalMarkdown(string $markdown): void;
|
||||
|
||||
public function getListItemLevel(): int;
|
||||
|
||||
public function getAttribute(string $name): string;
|
||||
}
|
||||
|
|
@ -0,0 +1,92 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace League\HTMLToMarkdown;
|
||||
|
||||
use League\HTMLToMarkdown\Converter\BlockquoteConverter;
|
||||
use League\HTMLToMarkdown\Converter\CodeConverter;
|
||||
use League\HTMLToMarkdown\Converter\CommentConverter;
|
||||
use League\HTMLToMarkdown\Converter\ConverterInterface;
|
||||
use League\HTMLToMarkdown\Converter\DefaultConverter;
|
||||
use League\HTMLToMarkdown\Converter\DivConverter;
|
||||
use League\HTMLToMarkdown\Converter\EmphasisConverter;
|
||||
use League\HTMLToMarkdown\Converter\HardBreakConverter;
|
||||
use League\HTMLToMarkdown\Converter\HeaderConverter;
|
||||
use League\HTMLToMarkdown\Converter\HorizontalRuleConverter;
|
||||
use League\HTMLToMarkdown\Converter\ImageConverter;
|
||||
use League\HTMLToMarkdown\Converter\LinkConverter;
|
||||
use League\HTMLToMarkdown\Converter\ListBlockConverter;
|
||||
use League\HTMLToMarkdown\Converter\ListItemConverter;
|
||||
use League\HTMLToMarkdown\Converter\ParagraphConverter;
|
||||
use League\HTMLToMarkdown\Converter\PreformattedConverter;
|
||||
use League\HTMLToMarkdown\Converter\TextConverter;
|
||||
|
||||
final class Environment
|
||||
{
|
||||
/** @var Configuration */
|
||||
protected $config;
|
||||
|
||||
/** @var ConverterInterface[] */
|
||||
protected $converters = [];
|
||||
|
||||
/**
|
||||
* @param array<string, mixed> $config
|
||||
*/
|
||||
public function __construct(array $config = [])
|
||||
{
|
||||
$this->config = new Configuration($config);
|
||||
$this->addConverter(new DefaultConverter());
|
||||
}
|
||||
|
||||
public function getConfig(): Configuration
|
||||
{
|
||||
return $this->config;
|
||||
}
|
||||
|
||||
public function addConverter(ConverterInterface $converter): void
|
||||
{
|
||||
if ($converter instanceof ConfigurationAwareInterface) {
|
||||
$converter->setConfig($this->config);
|
||||
}
|
||||
|
||||
foreach ($converter->getSupportedTags() as $tag) {
|
||||
$this->converters[$tag] = $converter;
|
||||
}
|
||||
}
|
||||
|
||||
public function getConverterByTag(string $tag): ConverterInterface
|
||||
{
|
||||
if (isset($this->converters[$tag])) {
|
||||
return $this->converters[$tag];
|
||||
}
|
||||
|
||||
return $this->converters[DefaultConverter::DEFAULT_CONVERTER];
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array<string, mixed> $config
|
||||
*/
|
||||
public static function createDefaultEnvironment(array $config = []): Environment
|
||||
{
|
||||
$environment = new static($config);
|
||||
|
||||
$environment->addConverter(new BlockquoteConverter());
|
||||
$environment->addConverter(new CodeConverter());
|
||||
$environment->addConverter(new CommentConverter());
|
||||
$environment->addConverter(new DivConverter());
|
||||
$environment->addConverter(new EmphasisConverter());
|
||||
$environment->addConverter(new HardBreakConverter());
|
||||
$environment->addConverter(new HeaderConverter());
|
||||
$environment->addConverter(new HorizontalRuleConverter());
|
||||
$environment->addConverter(new ImageConverter());
|
||||
$environment->addConverter(new LinkConverter());
|
||||
$environment->addConverter(new ListBlockConverter());
|
||||
$environment->addConverter(new ListItemConverter());
|
||||
$environment->addConverter(new ParagraphConverter());
|
||||
$environment->addConverter(new PreformattedConverter());
|
||||
$environment->addConverter(new TextConverter());
|
||||
|
||||
return $environment;
|
||||
}
|
||||
}
|
||||
277
ActividadesWP/v5/items/vendor/league/html-to-markdown/src/HtmlConverter.php
vendored
Normal file
277
ActividadesWP/v5/items/vendor/league/html-to-markdown/src/HtmlConverter.php
vendored
Normal file
|
|
@ -0,0 +1,277 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace League\HTMLToMarkdown;
|
||||
|
||||
/**
|
||||
* A helper class to convert HTML to Markdown.
|
||||
*
|
||||
* @author Colin O'Dell <colinodell@gmail.com>
|
||||
* @author Nick Cernis <nick@cern.is>
|
||||
*
|
||||
* @link https://github.com/thephpleague/html-to-markdown/ Latest version on GitHub.
|
||||
*
|
||||
* @license http://www.opensource.org/licenses/mit-license.php MIT
|
||||
*/
|
||||
class HtmlConverter implements HtmlConverterInterface
|
||||
{
|
||||
/** @var Environment */
|
||||
protected $environment;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
* @param Environment|array<string, mixed> $options Environment object or configuration options
|
||||
*/
|
||||
public function __construct($options = [])
|
||||
{
|
||||
if ($options instanceof Environment) {
|
||||
$this->environment = $options;
|
||||
} elseif (\is_array($options)) {
|
||||
$defaults = [
|
||||
'header_style' => 'setext', // Set to 'atx' to output H1 and H2 headers as # Header1 and ## Header2
|
||||
'suppress_errors' => true, // Set to false to show warnings when loading malformed HTML
|
||||
'strip_tags' => false, // Set to true to strip tags that don't have markdown equivalents. N.B. Strips tags, not their content. Useful to clean MS Word HTML output.
|
||||
'strip_placeholder_links' => false, // Set to true to remove <a> that doesn't have href.
|
||||
'bold_style' => '**', // DEPRECATED: Set to '__' if you prefer the underlined style
|
||||
'italic_style' => '*', // DEPRECATED: Set to '_' if you prefer the underlined style
|
||||
'remove_nodes' => '', // space-separated list of dom nodes that should be removed. example: 'meta style script'
|
||||
'hard_break' => false, // Set to true to turn <br> into `\n` instead of ` \n`
|
||||
'list_item_style' => '-', // Set the default character for each <li> in a <ul>. Can be '-', '*', or '+'
|
||||
'preserve_comments' => false, // Set to true to preserve comments, or set to an array of strings to preserve specific comments
|
||||
'use_autolinks' => true, // Set to true to use simple link syntax if possible. Will always use []() if set to false
|
||||
'table_pipe_escape' => '\|', // Replacement string for pipe characters inside markdown table cells
|
||||
'table_caption_side' => 'top', // Set to 'top' or 'bottom' to show <caption> content before or after table, null to suppress
|
||||
];
|
||||
|
||||
$this->environment = Environment::createDefaultEnvironment($defaults);
|
||||
|
||||
$this->environment->getConfig()->merge($options);
|
||||
}
|
||||
}
|
||||
|
||||
public function getEnvironment(): Environment
|
||||
{
|
||||
return $this->environment;
|
||||
}
|
||||
|
||||
public function getConfig(): Configuration
|
||||
{
|
||||
return $this->environment->getConfig();
|
||||
}
|
||||
|
||||
/**
|
||||
* Convert
|
||||
*
|
||||
* @see HtmlConverter::convert
|
||||
*
|
||||
* @return string The Markdown version of the html
|
||||
*/
|
||||
public function __invoke(string $html): string
|
||||
{
|
||||
return $this->convert($html);
|
||||
}
|
||||
|
||||
/**
|
||||
* Convert
|
||||
*
|
||||
* Loads HTML and passes to getMarkdown()
|
||||
*
|
||||
* @return string The Markdown version of the html
|
||||
*
|
||||
* @throws \InvalidArgumentException|\RuntimeException
|
||||
*/
|
||||
public function convert(string $html): string
|
||||
{
|
||||
if (\trim($html) === '') {
|
||||
return '';
|
||||
}
|
||||
|
||||
$document = $this->createDOMDocument($html);
|
||||
|
||||
// Work on the entire DOM tree (including head and body)
|
||||
if (! ($root = $document->getElementsByTagName('html')->item(0))) {
|
||||
throw new \InvalidArgumentException('Invalid HTML was provided');
|
||||
}
|
||||
|
||||
$rootElement = new Element($root);
|
||||
$this->convertChildren($rootElement);
|
||||
|
||||
// Store the now-modified DOMDocument as a string
|
||||
$markdown = $document->saveHTML();
|
||||
|
||||
if ($markdown === false) {
|
||||
throw new \RuntimeException('Unknown error occurred during HTML to Markdown conversion');
|
||||
}
|
||||
|
||||
return $this->sanitize($markdown);
|
||||
}
|
||||
|
||||
private function createDOMDocument(string $html): \DOMDocument
|
||||
{
|
||||
$document = new \DOMDocument();
|
||||
|
||||
if ($this->getConfig()->getOption('suppress_errors')) {
|
||||
// Suppress conversion errors (from http://bit.ly/pCCRSX)
|
||||
\libxml_use_internal_errors(true);
|
||||
}
|
||||
|
||||
// Hack to load utf-8 HTML (from http://bit.ly/pVDyCt)
|
||||
$document->loadHTML('<?xml encoding="UTF-8">' . $html);
|
||||
$document->encoding = 'UTF-8';
|
||||
|
||||
$this->replaceMisplacedComments($document);
|
||||
|
||||
if ($this->getConfig()->getOption('suppress_errors')) {
|
||||
\libxml_clear_errors();
|
||||
}
|
||||
|
||||
return $document;
|
||||
}
|
||||
|
||||
/**
|
||||
* Finds any comment nodes outside <html> element and moves them into <body>.
|
||||
*
|
||||
* @see https://github.com/thephpleague/html-to-markdown/issues/212
|
||||
* @see https://3v4l.org/7bC33
|
||||
*/
|
||||
private function replaceMisplacedComments(\DOMDocument $document): void
|
||||
{
|
||||
// Find ny comment nodes at the root of the document.
|
||||
$misplacedComments = (new \DOMXPath($document))->query('/comment()');
|
||||
if ($misplacedComments === false) {
|
||||
return;
|
||||
}
|
||||
|
||||
$body = $document->getElementsByTagName('body')->item(0);
|
||||
if ($body === null) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Loop over comment nodes in reverse so we put them inside <body> in
|
||||
// their original order.
|
||||
for ($index = $misplacedComments->length - 1; $index >= 0; $index--) {
|
||||
if ($body->firstChild === null) {
|
||||
$body->insertBefore($misplacedComments[$index]);
|
||||
} else {
|
||||
$body->insertBefore($misplacedComments[$index], $body->firstChild);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Convert Children
|
||||
*
|
||||
* Recursive function to drill into the DOM and convert each node into Markdown from the inside out.
|
||||
*
|
||||
* Finds children of each node and convert those to #text nodes containing their Markdown equivalent,
|
||||
* starting with the innermost element and working up to the outermost element.
|
||||
*/
|
||||
private function convertChildren(ElementInterface $element): void
|
||||
{
|
||||
// Don't convert HTML code inside <code> and <pre> blocks to Markdown - that should stay as HTML
|
||||
// except if the current node is a code tag, which needs to be converted by the CodeConverter.
|
||||
if ($element->isDescendantOf(['pre', 'code']) && $element->getTagName() !== 'code') {
|
||||
return;
|
||||
}
|
||||
|
||||
// Give converter a chance to inspect/modify the DOM before children are converted
|
||||
$converter = $this->environment->getConverterByTag($element->getTagName());
|
||||
if ($converter instanceof PreConverterInterface) {
|
||||
$converter->preConvert($element);
|
||||
}
|
||||
|
||||
// If the node has children, convert those to Markdown first
|
||||
if ($element->hasChildren()) {
|
||||
foreach ($element->getChildren() as $child) {
|
||||
$this->convertChildren($child);
|
||||
}
|
||||
}
|
||||
|
||||
// Now that child nodes have been converted, convert the original node
|
||||
$markdown = $this->convertToMarkdown($element);
|
||||
|
||||
// Create a DOM text node containing the Markdown equivalent of the original node
|
||||
|
||||
// Replace the old $node e.g. '<h3>Title</h3>' with the new $markdown_node e.g. '### Title'
|
||||
$element->setFinalMarkdown($markdown);
|
||||
}
|
||||
|
||||
/**
|
||||
* Convert to Markdown
|
||||
*
|
||||
* Converts an individual node into a #text node containing a string of its Markdown equivalent.
|
||||
*
|
||||
* Example: An <h3> node with text content of 'Title' becomes a text node with content of '### Title'
|
||||
*
|
||||
* @return string The converted HTML as Markdown
|
||||
*/
|
||||
protected function convertToMarkdown(ElementInterface $element): string
|
||||
{
|
||||
$tag = $element->getTagName();
|
||||
|
||||
// Strip nodes named in remove_nodes
|
||||
$tagsToRemove = \explode(' ', Coerce::toString($this->getConfig()->getOption('remove_nodes') ?? ''));
|
||||
if (\in_array($tag, $tagsToRemove, true)) {
|
||||
return '';
|
||||
}
|
||||
|
||||
$converter = $this->environment->getConverterByTag($tag);
|
||||
|
||||
return $converter->convert($element);
|
||||
}
|
||||
|
||||
protected function sanitize(string $markdown): string
|
||||
{
|
||||
$markdown = \html_entity_decode($markdown, ENT_QUOTES, 'UTF-8');
|
||||
$markdown = \preg_replace('/<!DOCTYPE [^>]+>/', '', $markdown); // Strip doctype declaration
|
||||
\assert($markdown !== null);
|
||||
$markdown = \trim($markdown); // Remove blank spaces at the beggining of the html
|
||||
|
||||
/*
|
||||
* Removing unwanted tags. Tags should be added to the array in the order they are expected.
|
||||
* XML, html and body opening tags should be in that order. Same case with closing tags
|
||||
*/
|
||||
$unwanted = ['<?xml encoding="UTF-8">', '<html>', '</html>', '<body>', '</body>', '<head>', '</head>', '
'];
|
||||
|
||||
foreach ($unwanted as $tag) {
|
||||
if (\strpos($tag, '/') === false) {
|
||||
// Opening tags
|
||||
if (\strpos($markdown, $tag) === 0) {
|
||||
$markdown = \substr($markdown, \strlen($tag));
|
||||
}
|
||||
} else {
|
||||
// Closing tags
|
||||
if (\strpos($markdown, $tag) === \strlen($markdown) - \strlen($tag)) {
|
||||
$markdown = \substr($markdown, 0, -\strlen($tag));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return \trim($markdown, "\n\r\0\x0B");
|
||||
}
|
||||
|
||||
/**
|
||||
* Pass a series of key-value pairs in an array; these will be passed
|
||||
* through the config and set.
|
||||
* The advantage of this is that it can allow for static use (IE in Laravel).
|
||||
* An example being:
|
||||
*
|
||||
* HtmlConverter::setOptions(['strip_tags' => true])->convert('<h1>test</h1>');
|
||||
*
|
||||
* @param array<string, mixed> $options
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setOptions(array $options)
|
||||
{
|
||||
$config = $this->getConfig();
|
||||
|
||||
foreach ($options as $key => $option) {
|
||||
$config->setOption($key, $option);
|
||||
}
|
||||
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
26
ActividadesWP/v5/items/vendor/league/html-to-markdown/src/HtmlConverterInterface.php
vendored
Normal file
26
ActividadesWP/v5/items/vendor/league/html-to-markdown/src/HtmlConverterInterface.php
vendored
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace League\HTMLToMarkdown;
|
||||
|
||||
/**
|
||||
* Interface for an HTML-to-Markdown converter.
|
||||
*
|
||||
* @author Colin O'Dell <colinodell@gmail.com>
|
||||
*
|
||||
* @link https://github.com/thephpleague/html-to-markdown/ Latest version on GitHub.
|
||||
*
|
||||
* @license http://www.opensource.org/licenses/mit-license.php MIT
|
||||
*/
|
||||
interface HtmlConverterInterface
|
||||
{
|
||||
/**
|
||||
* Convert the given $html to Markdown
|
||||
*
|
||||
* @return string The Markdown version of the html
|
||||
*
|
||||
* @throws \InvalidArgumentException
|
||||
*/
|
||||
public function convert(string $html): string;
|
||||
}
|
||||
10
ActividadesWP/v5/items/vendor/league/html-to-markdown/src/PreConverterInterface.php
vendored
Normal file
10
ActividadesWP/v5/items/vendor/league/html-to-markdown/src/PreConverterInterface.php
vendored
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace League\HTMLToMarkdown;
|
||||
|
||||
interface PreConverterInterface
|
||||
{
|
||||
public function preConvert(ElementInterface $element): void;
|
||||
}
|
||||
Loading…
Reference in New Issue