Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
9ef953a8
Commit
9ef953a8
authored
Oct 07, 2013
by
Qiang Xue
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Yii extension composer installer WIP.
parent
1005b1ad
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
164 additions
and
0 deletions
+164
-0
Installer.php
extensions/composer/yii/composer/Installer.php
+134
-0
InstallerPlugin.php
extensions/composer/yii/composer/InstallerPlugin.php
+30
-0
No files found.
extensions/composer/yii/composer/Installer.php
0 → 100644
View file @
9ef953a8
<?php
/**
* @link http://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license http://www.yiiframework.com/license/
*/
namespace
yii\composer
;
use
Composer\Package\PackageInterface
;
use
Composer\Installer\LibraryInstaller
;
use
Composer\Repository\InstalledRepositoryInterface
;
/**
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
*/
class
Installer
extends
LibraryInstaller
{
/**
* @inheritdoc
*/
public
function
supports
(
$packageType
)
{
return
$packageType
===
'yii2-extension'
;
}
/**
* @inheritdoc
*/
public
function
install
(
InstalledRepositoryInterface
$repo
,
PackageInterface
$package
)
{
parent
::
install
(
$repo
,
$package
);
$this
->
addPackage
(
$package
);
}
/**
* @inheritdoc
*/
public
function
update
(
InstalledRepositoryInterface
$repo
,
PackageInterface
$initial
,
PackageInterface
$target
)
{
parent
::
update
(
$repo
,
$initial
,
$target
);
$this
->
removePackage
(
$initial
);
$this
->
addPackage
(
$target
);
}
/**
* @inheritdoc
*/
public
function
uninstall
(
InstalledRepositoryInterface
$repo
,
PackageInterface
$package
)
{
parent
::
uninstall
(
$repo
,
$package
);
$this
->
removePackage
(
$package
);
}
protected
function
addPackage
(
PackageInterface
$package
)
{
$extension
=
array
(
'name'
=>
$package
->
getPrettyName
());
$root
=
$package
->
getPrettyName
();
if
(
$targetDir
=
$package
->
getTargetDir
())
{
$root
.=
'/'
.
trim
(
$targetDir
,
'/'
);
}
$root
=
trim
(
$root
,
'/'
);
$extra
=
$package
->
getExtra
();
if
(
isset
(
$extra
[
'preinit'
])
&&
is_string
(
$extra
[
'preinit'
]))
{
$extension
[
'preinit'
]
=
"<vendor-dir>/
$root
/"
.
ltrim
(
str_replace
(
'\\'
,
'/'
,
$extra
[
'preinit'
]),
'/'
);
}
if
(
isset
(
$extra
[
'init'
])
&&
is_string
(
$extra
[
'init'
]))
{
$extension
[
'init'
]
=
"<vendor-dir>/
$root
/"
.
ltrim
(
str_replace
(
'\\'
,
'/'
,
$extra
[
'init'
]),
'/'
);
}
if
(
isset
(
$extra
[
'aliases'
])
&&
is_array
(
$extra
[
'aliases'
]))
{
foreach
(
$extra
[
'aliases'
]
as
$alias
=>
$path
)
{
$extension
[
'aliases'
][
'@'
.
ltrim
(
$alias
,
'@'
)]
=
"<vendor-dir>/
$root
/"
.
ltrim
(
str_replace
(
'\\'
,
'/'
,
$path
),
'/'
);
}
}
if
(
!
empty
(
$aliases
))
{
foreach
(
$aliases
as
$alias
=>
$path
)
{
if
(
strncmp
(
$alias
,
'@'
,
1
)
!==
0
)
{
$alias
=
'@'
.
$alias
;
}
$path
=
trim
(
str_replace
(
'\\'
,
'/'
,
$path
),
'/'
);
$extension
[
'aliases'
][
$alias
]
=
$root
.
'/'
.
$path
;
}
}
$extensions
=
$this
->
loadExtensions
();
$extensions
[
$package
->
getId
()]
=
$extension
;
$this
->
saveExtensions
(
$extensions
);
}
protected
function
removePackage
(
PackageInterface
$package
)
{
$packages
=
$this
->
loadExtensions
();
unset
(
$packages
[
$package
->
getId
()]);
$this
->
saveExtensions
(
$packages
);
}
protected
function
loadExtensions
()
{
$file
=
$this
->
vendorDir
.
'/yii-extensions.php'
;
if
(
!
is_file
(
$file
))
{
return
array
();
}
$extensions
=
require
(
$file
);
/** @var string $vendorDir defined in yii-extensions.php */
$n
=
strlen
(
$vendorDir
);
foreach
(
$extensions
as
&
$extension
)
{
if
(
isset
(
$extension
[
'aliases'
]))
{
foreach
(
$extension
[
'aliases'
]
as
$alias
=>
$path
)
{
$extension
[
'aliases'
][
$alias
]
=
'<vendor-dir>'
.
substr
(
$path
,
$n
);
}
}
if
(
isset
(
$extension
[
'preinit'
]))
{
$extension
[
'preinit'
]
=
'<vendor-dir>'
.
substr
(
$extension
[
'preinit'
],
$n
);
}
if
(
isset
(
$extension
[
'init'
]))
{
$extension
[
'init'
]
=
'<vendor-dir>'
.
substr
(
$extension
[
'init'
],
$n
);
}
}
return
$extensions
;
}
protected
function
saveExtensions
(
array
$extensions
)
{
$file
=
$this
->
vendorDir
.
'/yii-extensions.php'
;
$array
=
str_replace
(
"'<vendor-dir>"
,
'$vendorDir . \''
,
var_export
(
$extensions
,
true
));
file_put_contents
(
$file
,
"<?php
\n\$
vendorDir = __DIR__;
\n\n
return
$array
;
\n
"
);
}
}
extensions/composer/yii/composer/InstallerPlugin.php
0 → 100644
View file @
9ef953a8
<?php
/**
* @link http://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license http://www.yiiframework.com/license/
*/
namespace
yii\composer
;
use
Composer\Composer
;
use
Composer\IO\IOInterface
;
use
Composer\Plugin\PluginInterface
;
/**
* InstallerPlugin is the composer plugin that registers the Yii composer installer.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
*/
class
InstallerPlugin
implements
PluginInterface
{
/**
* @inheritdoc
*/
public
function
activate
(
Composer
$composer
,
IOInterface
$io
)
{
$installer
=
new
Installer
(
$io
,
$composer
);
$composer
->
getInstallationManager
()
->
addInstaller
(
$installer
);
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment