first version

This commit is contained in:
Bastian Allgeier
2019-01-13 23:17:34 +01:00
commit 01277f79f2
595 changed files with 82913 additions and 0 deletions

485
kirby/src/Cms/Language.php Executable file
View File

@@ -0,0 +1,485 @@
<?php
namespace Kirby\Cms;
use Kirby\Exception\DuplicateException;
use Kirby\Exception\Exception;
use Kirby\Exception\InvalidArgumentException;
use Kirby\Exception\LogicException;
use Kirby\Exception\PermissionException;
use Kirby\Toolkit\F;
use Kirby\Toolkit\Str;
/**
* Represents a content language
* in a multi-language setup
*/
class Language extends Model
{
/**
* @var string
*/
protected $code;
/**
* @var bool
*/
protected $default;
/**
* @var string
*/
protected $direction;
/**
* @var string
*/
protected $locale;
/**
* @var string
*/
protected $name;
/**
* @var array|null
*/
protected $translations;
/**
* @var string
*/
protected $url;
/**
* Creates a new language object
*
* @param array $props
*/
public function __construct(array $props)
{
$this->setRequiredProperties($props, [
'code'
]);
$this->setOptionalProperties($props, [
'default',
'direction',
'locale',
'name',
'translations',
'url',
]);
}
/**
* Improved var_dump output
*
* @return array
*/
public function __debuginfo(): array
{
return $this->toArray();
}
/**
* Returns the language code
* when the language is converted to a string
*
* @return string
*/
public function __toString(): string
{
return $this->code();
}
/**
* Returns the language code/id.
* The language code is used in
* text file names as appendix.
*
* @return string
*/
public function code(): string
{
return $this->code;
}
/**
* Internal converter to create or remove
* translation files.
*
* @param string $from
* @param string $to
* @return boolean
*/
protected static function converter(string $from, string $to): bool
{
$kirby = App::instance();
$site = $kirby->site();
F::move($site->contentFile($from, true), $site->contentFile($to, true));
// convert all pages
foreach ($kirby->site()->index(true) as $page) {
foreach ($page->files() as $file) {
F::move($file->contentFile($from, true), $file->contentFile($to, true));
}
F::move($page->contentFile($from, true), $page->contentFile($to, true));
}
// convert all users
foreach ($kirby->users() as $user) {
foreach ($user->files() as $file) {
F::move($file->contentFile($from, true), $file->contentFile($to, true));
}
F::move($user->contentFile($from, true), $user->contentFile($to, true));
}
return true;
}
/**
* Creates a new language object
*
* @param array $props
* @return self
*/
public static function create(array $props): self
{
$props['code'] = Str::slug($props['code'] ?? null);
$kirby = App::instance();
$languages = $kirby->languages();
$site = $kirby->site();
// make the first language the default language
if ($languages->count() === 0) {
$props['default'] = true;
}
$language = new static($props);
if ($language->exists() === true) {
throw new DuplicateException('The language already exists');
}
$language->save();
if ($languages->count() === 0) {
static::converter('', $language->code());
}
return $language;
}
/**
* Delete the current language and
* all its translation files
*
* @return boolean
*/
public function delete(): bool
{
if ($this->exists() === false) {
return true;
}
$kirby = App::instance();
$languages = $kirby->languages();
$site = $kirby->site();
$code = $this->code();
if (F::remove($this->root()) !== true) {
throw new Exception('The language could not be deleted');
}
if ($languages->count() === 1) {
return $this->converter($code, '');
} else {
return $this->deleteContentFiles($code);
}
}
/**
* When the language is deleted, all content files with
* the language code must be removed as well.
*
* @return bool
*/
protected function deleteContentFiles($code): bool
{
$kirby = App::instance();
$site = $kirby->site();
F::remove($site->contentFile($code, true));
foreach ($kirby->site()->index(true) as $page) {
foreach ($page->files() as $file) {
F::remove($file->contentFile($code, true));
}
F::remove($page->contentFile($code, true));
}
foreach ($kirby->users() as $user) {
foreach ($user->files() as $file) {
F::remove($file->contentFile($code, true));
}
F::remove($user->contentFile($code, true));
}
return true;
}
/**
* Reading direction of this language
*
* @return string
*/
public function direction(): string
{
return $this->direction;
}
/**
* Check if the language file exists
*
* @return boolean
*/
public function exists(): bool
{
return file_exists($this->root());
}
/**
* Checks if this is the default language
* for the site.
*
* @return boolean
*/
public function isDefault(): bool
{
return $this->default;
}
/**
* The id is required for collections
* to work properly. The code is used as id
*
* @return string
*/
public function id(): string
{
return $this->code;
}
/**
* Returns the PHP locale setting string
*
* @return string
*/
public function locale(): string
{
return $this->locale;
}
/**
* Returns the human-readable name
* of the language
*
* @return string
*/
public function name(): string
{
return $this->name;
}
/**
* Returns the routing pattern for the language
*
* @return string
*/
public function pattern(): string
{
return $this->url;
}
/**
* Returns the absolute path to the language file
*
* @return string
*/
public function root(): string
{
return App::instance()->root('languages') . '/' . $this->code() . '.php';
}
/**
* Saves the language settings in the languages folder
*
* @return self
*/
public function save(): self
{
$data = $this->toArray();
unset($data['url']);
$export = '<?php' . PHP_EOL . PHP_EOL . 'return ' . var_export($data, true) . ';';
F::write($this->root(), $export);
return $this;
}
/**
* @param string $code
* @return self
*/
protected function setCode(string $code): self
{
$this->code = $code;
return $this;
}
/**
* @param boolean $default
* @return self
*/
protected function setDefault(bool $default = false): self
{
$this->default = $default;
return $this;
}
/**
* @param string $direction
* @return self
*/
protected function setDirection(string $direction = 'ltr'): self
{
$this->direction = $direction === 'rtl' ? 'rtl' : 'ltr';
return $this;
}
/**
* @param string $locale
* @return self
*/
protected function setLocale(string $locale = null): self
{
$this->locale = $locale ?? $this->code;
return $this;
}
/**
* @param string $name
* @return self
*/
protected function setName(string $name = null): self
{
$this->name = $name ?? $this->code;
return $this;
}
/**
* @param array $translations
* @return self
*/
protected function setTranslations(array $translations = null): self
{
$this->translations = $translations ?? [];
return $this;
}
/**
* @param string $url
* @return self
*/
protected function setUrl(string $url = null): self
{
$this->url = $url !== null ? trim($url, '/') : $this->code;
return $this;
}
/**
* Returns the most important
* properties as array
*
* @return array
*/
public function toArray(): array
{
return [
'code' => $this->code(),
'default' => $this->isDefault(),
'direction' => $this->direction(),
'locale' => $this->locale(),
'name' => $this->name(),
'url' => $this->url()
];
}
/**
* Returns the translation strings for this language
*
* @return array
*/
public function translations(): array
{
return $this->translations;
}
/**
* Returns the absolute Url for the language
*
* @return string
*/
public function url(): string
{
return Url::to($this->url);
}
/**
* Update language properties and save them
*
* @param array $props
* @return self
*/
public function update(array $props = null): self
{
$props['slug'] = Str::slug($props['slug'] ?? null);
$kirby = App::instance();
$updated = $this->clone($props);
// convert the current default to a non-default language
if ($updated->isDefault() === true) {
if ($oldDefault = $kirby->defaultLanguage()) {
$oldDefault->clone(['default' => false])->save();
}
$code = $this->code();
$site = $kirby->site();
touch($site->contentFile($code));
foreach ($kirby->site()->index(true) as $page) {
$files = $page->files();
foreach ($files as $file) {
touch($file->contentFile($code));
}
touch($page->contentFile($code));
}
} elseif ($this->isDefault() === true) {
throw new PermissionException('Please select another language to be the primary language');
}
return $updated->save();
}
}