# wpdeepl/1.7.5/client/deepl-data.class.php

Translation with DeepL API, version 1.7.5. 212 lines.

- Page: https://pluginprobe.com/plugins/wpdeepl/1.7.5/code/client/deepl-data.class.php
- Raw: https://pluginprobe.com/plugins/wpdeepl/1.7.5/raw/client/deepl-data.class.php
- Modified: 2025-12-08T03:16:26+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wpdeepl/1.7.5/code/client/deepl-data.class.php#L10-L20`.

```php
<?php

abstract class DeepLData {
	public $allow_cache = true;

	protected function isCacheValid( $cache_file, $max_age = false ) {
		if( !$this->allow_cache ) {
			$this->why_no_cache = "Cache not allowed";
			return false;
		}
		elseif( !file_exists( $cache_file ) ) {
			$this->why_no_cache = "No cache file $this->cache_file";
			return false;
		}
		elseif( filesize( $cache_file ) < 10 ) {
			$this->why_no_cache = "Cache file too small";
			return false;
		}
		elseif( !file_get_contents( $cache_file ) ) {
			$this->why_no_cache = "Cache file not readable";
			return false;
		}
		return true;
	}

	protected function getCacheDirectory() {
		return WPDEEPL_FILES;
	}

	// http://nadeausoftware.com/articles/2008/05/php_tip_how_convert_relative_url_absolute_url
	protected function url_to_absolute( $baseUrl, $relativeUrl ) {
			// If relative URL has a scheme, clean path and return.
			$r = $this->split_url( $relativeUrl );
			if ( $r === FALSE )
					return FALSE;
			if ( !empty( $r['scheme'] ) ) {
					if ( !empty( $r['path'] ) && $r['path'][0] == '/' )
							$r['path'] = $this->url_remove_dot_segments( $r['path'] );
					return $this->join_url( $r );
			}

			// Make sure the base URL is absolute.
			$b = $this->split_url( $baseUrl );
			if ( $b === FALSE || empty( $b['scheme'] ) || empty( $b['host'] ) )
					return FALSE;
			$r['scheme'] = $b['scheme'];

			// If relative URL has an authority, clean path and return.
			if ( isset( $r['host'] ) ) {
					if ( !empty( $r['path'] ) )
							$r['path'] = $this->url_remove_dot_segments( $r['path'] );
					return $this->join_url( $r );
			}
			unset( $r['port'] );
			unset( $r['user'] );
			unset( $r['pass'] );

			// Copy base authority.
			$r['host'] = $b['host'];
			if ( isset( $b['port'] ) ) $r['port'] = $b['port'];
			if ( isset( $b['user'] ) ) $r['user'] = $b['user'];
			if ( isset( $b['pass'] ) ) $r['pass'] = $b['pass'];

			// If relative URL has no path, use base path
			if ( empty( $r['path'] ) ) {
					if ( !empty( $b['path'] ) )
							$r['path'] = $b['path'];
					if ( !isset( $r['query'] ) && isset( $b['query'] ) )
							$r['query'] = $b['query'];
					return $this->join_url( $r );
			}

			// If relative URL path doesn't start with /, merge with base path
			if ( $r['path'][0] != '/' ) {
					$base = mb_strrchr( $b['path'], '/', TRUE, 'UTF-8' );
					if ( $base === FALSE ) $base = '';
					$r['path'] = $base . '/' . $r['path'];
			}
			$r['path'] = $this->url_remove_dot_segments( $r['path'] );
			return $this->join_url( $r );
	}
	protected function url_remove_dot_segments( $path ) {
		// multi-byte character explode
		$inSegs = preg_split( '!/!u', $path );
		$outSegs = array( );
		foreach ( $inSegs as $seg ) {
			if ( $seg == '' || $seg == '.' ) {
				continue;
			}
			if ( $seg == '..' ) {
				array_pop( $outSegs );
			}
			else {
				array_push( $outSegs, $seg );
			}
		}
		$outPath = implode( '/', $outSegs );
		if ( $path[0] == '/' ) {
			$outPath = '/' . $outPath;
		}
		// compare last multi-byte character against '/'
		if ( $outPath != '/' && ( mb_strlen( $path )-1 ) == mb_strrpos( $path, '/', 'UTF-8' ) ) {
				$outPath .= '/';
		}
		return $outPath;
	}

	protected function split_url( $url, $decode=TRUE ) {
			$xunressub		= 'a-zA-Z\d\-._~\!$&\'()*+, ;=';
			$xpchar			= $xunressub . ':@%';
			$xscheme		= '( [a-zA-Z][a-zA-Z\d+-.]* )';
			$xuserinfo		= '( ( [' . $xunressub . '%]* )' . '( :( [' . $xunressub . ':%]* ) )? )';
			$xipv4			= '( \d{1, 3}\.\d{1, 3}\.\d{1, 3}\.\d{1, 3} )';
			$xipv6			= '( \[( [a-fA-F\d.:]+ )\] )';
			$xhost_name		= '( [a-zA-Z\d-.%]+ )';
			$xhost			= '( ' . $xhost_name . '|' . $xipv4 . '|' . $xipv6 . ' )';
			$xport			= '( \d* )';
			$xauthority		= '( ( ' . $xuserinfo . '@ )?' . $xhost . '?( :' . $xport . ' )? )';
			$xslash_seg		= '( /[' . $xpchar . ']* )';
			$xpath_authabs 	= '( ( //' . $xauthority . ' )( ( /[' . $xpchar . ']* )* ) )';
			$xpath_rel		= '( [' . $xpchar . ']+' . $xslash_seg . '* )';
			$xpath_abs		= '( /( ' . $xpath_rel . ' )? )';
			$xapath			= '( ' . $xpath_authabs . '|' . $xpath_abs . '|' . $xpath_rel . ' )';
			$xqueryfrag		= '( [' . $xpchar . '/?' . ']* )';
			$xurl			= '^( ' . $xscheme . ': )?' . $xapath . '?' . '( \?' . $xqueryfrag . ' )?( #' . $xqueryfrag . ' )?$';

			// Split the URL into components.
			if ( !preg_match( '!' . $xurl . '!', $url, $m ) )
					return FALSE;

			if ( !empty( $m[2] ) )				$parts['scheme'] = strtolower( $m[2] );

			if ( !empty( $m[7] ) ) {
					if ( isset( $m[9] ) ) $parts['user']		= $m[9];
					else						$parts['user']		= '';
			}
			if ( !empty( $m[10] ) )			 $parts['pass']		= $m[11];

			if ( !empty( $m[13] ) )			 $h=$parts['host'] = $m[13];
			else if ( !empty( $m[14] ) ) $parts['host']		= $m[14];
			else if ( !empty( $m[16] ) ) $parts['host']		= $m[16];
			else if ( !empty( $m[5] ) ) $parts['host']		= '';
			if ( !empty( $m[17] ) )			 $parts['port']		= $m[18];

			if ( !empty( $m[19] ) )			 $parts['path']		= $m[19];
			else if ( !empty( $m[21] ) ) $parts['path']		= $m[21];
			else if ( !empty( $m[25] ) ) $parts['path']		= $m[25];

			if ( !empty( $m[27] ) )			 $parts['query'] = $m[28];
			if ( !empty( $m[29] ) )			 $parts['fragment']= $m[30];

			if ( !$decode )
					return $parts;
			if ( !empty( $parts['user'] ) )
					$parts['user']		 = rawurldecode( $parts['user'] );
			if ( !empty( $parts['pass'] ) )
					$parts['pass']		 = rawurldecode( $parts['pass'] );
			if ( !empty( $parts['path'] ) )
					$parts['path']		 = rawurldecode( $parts['path'] );
			if ( isset( $h ) )
					$parts['host']		 = rawurldecode( $parts['host'] );
			if ( !empty( $parts['query'] ) )
					$parts['query']		= rawurldecode( $parts['query'] );
			if ( !empty( $parts['fragment'] ) )
					$parts['fragment'] = rawurldecode( $parts['fragment'] );
			return $parts;
	}
	protected function join_url( $parts, $encode=TRUE ) {
		if ( $encode ) {
			if ( isset( $parts['user'] ) )
				$parts['user']		 = rawurlencode( $parts['user'] );
			if ( isset( $parts['pass'] ) )
				$parts['pass']		 = rawurlencode( $parts['pass'] );
			if ( isset( $parts['host'] ) && !preg_match( '!^( \[[\da-f.:]+\]] )|( [\da-f.:]+ )$!ui', $parts['host'] ) )
				$parts['host']		 = rawurlencode( $parts['host'] );
			if ( !empty( $parts['path'] ) )
				$parts['path']		 = preg_replace( '!%2F!ui', '/', rawurlencode( $parts['path'] ) );
			if ( isset( $parts['query'] ) )
				$parts['query']		= rawurlencode( $parts['query'] );
			if ( isset( $parts['fragment'] ) )
				$parts['fragment'] = rawurlencode( $parts['fragment'] );
		}

		$url = '';
		if ( !empty( $parts['scheme'] ) )
				$url .= $parts['scheme'] . ':';
		if ( isset( $parts['host'] ) ) {
			$url .= '//';
			if ( isset( $parts['user'] ) ) {
				$url .= $parts['user'];
				if ( isset( $parts['pass'] ) )
						$url .= ':' . $parts['pass'];
				$url .= '@';
			}
			if ( preg_match( '!^[\da-f]*:[\da-f.:]+$!ui', $parts['host'] ) )
				$url .= '[' . $parts['host'] . ']'; // IPv6
			else
				$url .= $parts['host'];						 // IPv4 or name
			if ( isset( $parts['port'] ) )
				$url .= ':' . $parts['port'];
			if ( !empty( $parts['path'] ) && $parts['path'][0] != '/' )
				$url .= '/';
		}
		if ( !empty( $parts['path'] ) )
			$url .= $parts['path'];
		if ( isset( $parts['query'] ) )
			$url .= '?' . $parts['query'];
		if ( isset( $parts['fragment'] ) )
			$url .= '#' . $parts['fragment'];
		return $url;
	}
}
```
