-
Notifications
You must be signed in to change notification settings - Fork 478
/
Copy pathNestedSet.php
86 lines (72 loc) · 1.88 KB
/
NestedSet.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<?php
namespace Kalnoy\Nestedset;
use Illuminate\Database\Schema\Blueprint;
class NestedSet
{
/**
* The name of default lft column.
*/
const LFT = '_lft';
/**
* The name of default rgt column.
*/
const RGT = '_rgt';
/**
* The name of default parent id column.
*/
const PARENT_ID = 'parent_id';
/**
* Insert direction.
*/
const BEFORE = 1;
/**
* Insert direction.
*/
const AFTER = 2;
/**
* Add default nested set columns to the table. Also create an index.
*
* @param \Illuminate\Database\Schema\Blueprint $table
* @param string $idColumn
*/
public static function columns(Blueprint $table, string $idColumn = 'id')
{
$table->unsignedBigInteger(self::LFT)->default(0);
$table->unsignedBigInteger(self::RGT)->default(0);
$table->unsignedBigInteger(self::PARENT_ID)->nullable();
$table->index(static::getDefaultColumns());
$table->foreign(self::PARENT_ID)->references($idColumn)->on($table->getTable())->onDelete('cascade');
}
/**
* Drop NestedSet columns.
*
* @param \Illuminate\Database\Schema\Blueprint $table
*/
public static function dropColumns(Blueprint $table)
{
$columns = static::getDefaultColumns();
$table->dropForeign(self::PARENT_ID);
$table->dropIndex($columns);
$table->dropColumn($columns);
}
/**
* Get a list of default columns.
*
* @return array
*/
public static function getDefaultColumns()
{
return [ static::LFT, static::RGT, static::PARENT_ID ];
}
/**
* Replaces instanceof calls for this trait.
*
* @param mixed $node
*
* @return bool
*/
public static function isNode($node)
{
return is_object($node) && in_array(NodeTrait::class, (array)$node);
}
}