radarrplexorganizrnginxsonarrdashboardserverhomepagesabnzbdheimdallembycouchpotatonzbgetbookmarkapplication-dashboardmuximuxlandingpagestartpagelandinghtpc
		
		
		
		
			You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							63 lines
						
					
					
						
							1.4 KiB
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							63 lines
						
					
					
						
							1.4 KiB
						
					
					
				| <?php | |
| 
 | |
| namespace App; | |
| 
 | |
| use Illuminate\Database\Eloquent\Model; | |
| 
 | |
| class Application extends Model | |
| { | |
|     public $incrementing = false; | |
| 
 | |
|     protected $primaryKey = 'appid'; | |
| 
 | |
|     // | |
|     public function icon() | |
|     { | |
|         if(!file_exists(storage_path('app/public/'.$this->icon)))  { | |
|             $img_src = app_path('SupportedApps/'.$this->name.'/'.str_replace('icons/', '', $this->icon)); | |
|             $img_dest = storage_path('app/public/'.$this->icon); | |
|             //die("i: ".$img_src); | |
|             @copy($img_src, $img_dest); | |
|         } | |
| 
 | |
| 
 | |
|         return $this->icon; | |
|     } | |
| 
 | |
|     public function iconView() | |
|     { | |
|         return asset('storage/'.$this->icon); | |
|     } | |
| 
 | |
|     public function defaultColour() | |
|     { | |
|         // check if light or dark | |
|         if($this->tile_background == 'light') return '#fafbfc'; | |
|         return '#161b1f'; | |
|     } | |
| 
 | |
|     public function class() | |
|     { | |
|         $name = $this->name; | |
|         $name = preg_replace('/\PL/u', '', $name);     | |
| 
 | |
|         $class = '\App\SupportedApps\\'.$name.'\\'.$name; | |
|         return $class; | |
|     } | |
| 
 | |
|     public static function applist() | |
|     { | |
|         $list = []; | |
|         $all = self::orderBy('name')->get()->sortBy('name', SORT_NATURAL|SORT_FLAG_CASE); | |
|         $list['null'] = 'None'; | |
|         foreach($all as $app) { | |
|             $name = $app->name; | |
|             $name = preg_replace('/\PL/u', '', $name); | |
|          | |
|             $list['\App\SupportedApps\\'.$name.'\\'.$name] = $app->name; | |
|         } | |
|         return $list; | |
|     } | |
| 
 | |
| 
 | |
| }
 | |
| 
 |