php - Laravel 5 Model Class not found -
i trying port web app laravel 4 5 having issues in 1 of model classes not found.
i have tried utilize namespacing , have following models located locally c:\xampp\htdocs\awsconfig\app\models
the file error appears in looks
<?php use app\models\securitygroup; function from_camel_case($input) { preg_match_all('!([a-z][a-z0-9]*(?=$|[a-z][a-z0-9])|[a-za-z][a-z0-9]+)!', $input, $matches); $ret = $matches[0]; foreach ($ret &$match) { $match = $match == strtoupper($match) ? strtolower($match) : lcfirst($match); } return implode('_', $ret); } $resource_types = array(); $resource_types['aws::ec2::instance'] = 'ec2instance'; $resource_types['aws::ec2::networkinterface'] = 'ec2networkinterface'; $resource_types['aws::ec2::vpc'] = 'vpc'; $resource_types['aws::ec2::volume'] = 'volume'; $resource_types['aws::ec2::securitygroup'] = 'securitygroup'; $resource_types['aws::ec2::subnet'] = 'subnet'; $resource_types['aws::ec2::routetable'] = 'routetable'; $resource_types['aws::ec2::eip'] = 'eip'; $resource_types['aws::ec2::networkacl'] = 'networkacl'; $resource_types['aws::ec2::internetgateway'] = 'internetgateway'; $accounts = db::table('aws_account')->get(); $account_list = array(); foreach(glob('../resources/sns messages/*.json') $filename) { //echo $filename; $data = file_get_contents($filename); if($data!=null) { $decoded=json_decode($data,true); if(isset($decoded["message"])) { //echo "found message<br>"; $message= json_decode($decoded["message"]); if(isset($message->configurationitem)) { // echo"found cfi<br>"; $insert_array = array(); $cfi = $message->configurationitem; switch ($cfi->configurationitemstatus) { case "resourcediscovered": //echo"found resource discovered<br>"; if (array_key_exists($cfi->resourcetype,$resource_types)) { //var_dump($cfi->resourcetype); $resource = new $resource_types[$cfi->resourcetype]; foreach ($cfi->configuration $key => $value) { if (in_array($key,$resource->fields)) { $insert_array[from_camel_case($key)] = $value; } } $resource->populate($insert_array); if (!$resource->checkexists()) { $resource->save(); if(isset($cfi->configuration->tags)) { foreach ($cfi->configuration->tags $t ) { $tag= new tag; $tag->resource_type = "instance"; $tag->resource_id = $resource->id; $tag->key = $t->key; $tag->value = $t->value; $tag->save(); /*if(isset($cfi->awsaccountid)) { foreach ($accounts $a) { $account_list = $a->account_id; } if (!in_array($account_id,$account_list)) { $account_id = new account; $account_id->aws_account_id = $cfi->awsaccountid; $account_list[] = $account_id; $account_id->save(); } } */ } } } } else { echo "creating ".$cfi["resourcetype"]." not yet supported<br>"; } break; case 'resourcedeleted': // echo"found resource deleted<br>"; //item deleted if (array_key_exists($cfi->resourcetype,$resource_types)) { //var_dump($cfi->resourcetype); $resource = new $resource_types[$cfi->resourcetype]; if ($resource->checkexists($cfi->resourceid)) { $resource->delete(); if( isset($cfi->configuration->tags)) { foreach ($cfi->configuration->tags $t ) { $tag= new tag; $tag->resource_type = "instance"; $tag->resource_id = $resource->id; $tag->key = $t->key; $tag->value = $t->value; if ($tag->checkexists($cfi->configuration->tags)) { $tag->delete(); } } } } } else { echo "deleting ".$cfi["resourcetype"]." not yet supported<br>"; } break; case 'ok': //echo"found resource ok<br>"; //item updated if (array_key_exists($cfi->resourcetype, $resource_types)) { //var_dump($cfi->resourcetype); $resource = new $resource_types[$cfi->resourcetype]; if ($resource->checkexists($cfi->resourceid)) { foreach ($cfi->configuration $key => $value) { if (in_array($key,$resource->fields)) { $update_array[from_camel_case($key)] = $value; } } $resource->populate($update_array); $resource->save(); } } else { echo "updating ".$cfi["resourcetype"]." not yet supported<br>"; } break; default: echo "status ".$cfi['configurationitemstatus']." not yet supported<br>"; break; } } } } }
and corresponding model class cannot found looks :
<?php namespace app\models; use eloquent; class securitygroup extends eloquent { protected $table = 'security_group'; public $timestamps = false; protected $guarded = array('id'); public $fields = array('groupid', 'groupname', 'description', 'ownerid' ); public function checkexists() { return self::where('group_id', $this->group_id)->first(); } public function populate($array) { foreach ($array $k => $v) { $this->$k = $v; } } }
i lost causing problem don't see typos again knows given.
to solve resource type needs full namespace declaration
Comments
Post a Comment