update 1.0.8.0

Commits for version update
This commit is contained in:
Manish Verma
2016-10-17 12:02:27 +05:30
parent dec927987b
commit 76e85db070
9674 changed files with 495757 additions and 58922 deletions

View File

@@ -7,5 +7,5 @@ use App\BaseModel;
class Assign_team_agent extends BaseModel
{
protected $table = 'team_assign_agent';
protected $fillable = ['id', 'team_id', 'agent_id'];
protected $fillable = ['id', 'team_id', 'agent_id', 'updated_at', 'created_at'];
}

View File

@@ -12,4 +12,27 @@ class Organization extends BaseModel
/* Define the fillable fields */
protected $fillable = ['id', 'name', 'phone', 'website', 'address', 'head', 'internal_notes'];
public function userRelation()
{
$related = "App\Model\helpdesk\Agent_panel\User_org";
return $this->hasMany($related, 'org_id');
}
public function getUserIds()
{
$user_relations = $this->userRelation()->lists('user_id')->toArray();
return $user_relations;
}
public function users()
{
$user = new \App\User();
$user_ids = $this->getUserIds();
$users = $user->whereIn('id', $user_ids);
return $users;
}
}

View File

@@ -12,4 +12,13 @@ class User_org extends BaseModel
/* define fillable fields */
protected $fillable = ['id', 'org_id', 'user_id'];
public function setOrgIdAttribute($value)
{
if ($value == '') {
$this->attributes['org_id'] = null;
} else {
$this->attributes['org_id'] = $value;
}
}
}

View File

@@ -14,4 +14,62 @@ class Emails extends BaseModel
'fetching_status', 'move_to_folder', 'delete_email', 'do_nothing',
'sending_status', 'authentication', 'header_spoofing', 'imap_config',
];
public function getCurrentDrive()
{
$drive = $this->attributes['sending_protocol'];
$mailServices = new \App\Model\MailJob\MailService();
$id = '';
$mailService = $mailServices->where('short_name', $drive)->first();
if ($mailService) {
$id = $mailService->id;
}
return $id;
}
public function getExtraField($key)
{
$value = '';
$id = $this->attributes['id'];
$services = new \App\Model\MailJob\FaveoMail();
$service = $services->where('email_id', $id)->where('key', $key)->first();
if ($service) {
$value = $service->value;
}
return $value;
}
public function extraFieldRelation()
{
$related = "App\Model\MailJob\FaveoMail";
return $this->hasMany($related, 'email_id');
}
public function deleteExtraFields()
{
$fields = $this->extraFieldRelation()->get();
if ($fields->count() > 0) {
foreach ($fields as $field) {
$field->delete();
}
}
}
public function getPasswordAttribute($value)
{
if ($value) {
return \Crypt::decrypt($value);
}
return $value;
}
public function delete()
{
$this->deleteExtraFields();
parent::delete();
}
}

View File

@@ -7,5 +7,16 @@ use Illuminate\Database\Eloquent\Model;
class FieldValue extends Model
{
protected $table = 'field_values';
protected $fillable = ['field_id', 'parent_id', 'field_key', 'field_value'];
protected $fillable = ['field_id', 'child_id', 'field_key', 'field_value'];
public function childId()
{
$childid = '';
$child = $this->attributes['child_id'];
if ($child) {
$childid = $this->attributes['child_id'];
}
return $childid;
}
}

View File

@@ -29,6 +29,39 @@ class Fields extends BaseModel
return $value;
}
public function valuesAsString()
{
$string = '';
$values = $this->values()->lists('field_value')->toArray();
if (count($values) > 0) {
$string = implode(',', $values);
}
return $string;
}
public function requiredFieldForCheck()
{
$check = false;
$required = $this->attributes['required'];
if ($required === '1') {
$check = true;
}
return $check;
}
public function nonRequiredFieldForCheck()
{
$check = false;
$required = $this->attributes['required'];
if ($required !== '1') {
$check = true;
}
return $check;
}
public function deleteValues()
{
$values = $this->values()->get();
@@ -41,6 +74,7 @@ class Fields extends BaseModel
public function delete()
{
$this->deleteValues();
parent::delete();
}
}

View File

@@ -0,0 +1,16 @@
<?php
namespace App\Model\helpdesk\Settings;
use App\BaseModel;
class Approval extends BaseModel
{
/* Using Ticket table */
protected $table = 'approval';
/* Set fillable fields in table */
protected $fillable = [
'id', 'name', 'status', 'created_at', 'updated_at',
];
}

View File

@@ -8,6 +8,6 @@ class CommonSettings extends BaseModel
{
protected $table = 'common_settings';
protected $fillable = [
'optional', 'key', 'value', 'created_at', 'updated_at',
'status', 'option_name', 'option_value', 'optional_field', 'created_at', 'updated_at',
];
}

View File

@@ -0,0 +1,17 @@
<?php
namespace App\Model\helpdesk\Settings;
use App\BaseModel;
class Followup extends BaseModel
{
/* Using auto_response table */
protected $table = 'followup';
/* Set fillable fields in table */
protected $fillable = [
'id', 'name', 'status', 'condition', 'created_at', 'updated_at',
];
}

View File

@@ -0,0 +1,61 @@
<?php
namespace App\Model\helpdesk\Settings;
use Illuminate\Database\Eloquent\Model;
class SocialMedia extends Model
{
protected $table = 'social_media';
protected $fillable = [
'provider',
'key',
'value',
];
public function getvalueByKey($provider, $key = '', $login = true)
{
$social = '';
if ($key == 'redirect' && $login == true) {
$social = url('social/login/'.$provider);
}
if ($key !== '' && $key !== 'redirect') {
$social = $this->where('provider', $provider)->where('key', $key)->first();
} elseif ($key !== 'redirect') {
$social = $this->where('provider', $provider)->lists('value', 'key')->toArray();
}
if (is_object($social)) {
$social = $social->value;
}
return $social;
}
public function checkActive($provider)
{
$check = '';
$social = $this->where('provider', $provider)->where('key', 'status')->first();
if ($social) {
$value = $social->value;
if ($value === '1') {
$check = true;
}
}
return $check;
}
public function checkInactive($provider)
{
$check = '';
$social = $this->where('provider', $provider)->where('key', 'status')->first();
if ($social) {
$value = $social->value;
if ($value === '0') {
$check = true;
}
}
return $check;
}
}

View File

@@ -6,9 +6,10 @@ use App\BaseModel;
class Ticket_Priority extends BaseModel
{
protected $primaryKey = 'priority_id';
public $timestamps = false;
protected $table = 'ticket_priority';
protected $fillable = [
'priority_id', 'priority', 'priority_desc', 'priority_color', 'priority_urgency', 'ispublic',
'priority_id', 'priority', 'status', 'user_priority_status', 'priority_desc', 'priority_color', 'priority_urgency', 'ispublic', 'created_at', 'updated_at',
];
}

View File

@@ -3,6 +3,7 @@
namespace App\Model\helpdesk\Ticket;
//use App\BaseModel;
use File;
use Illuminate\Database\Eloquent\Model;
class Ticket_Thread extends Model
@@ -27,8 +28,117 @@ class Ticket_Thread extends Model
// $this->attributes['title'] = str_replace('"', "'", $value);
// }
public function getTitleAttribute($value)
{
return str_replace('"', "'", $value);
}
public function getTitleAttribute($value)
{
return str_replace('"', "'", $value);
}
public function thread($content)
{
// $porufi = $this->purify($content);
// dd($content,$porufi);
//return $content;
return $this->purify($content);
}
public function purifyOld($value)
{
require_once base_path('vendor'.DIRECTORY_SEPARATOR.'htmlpurifier'.DIRECTORY_SEPARATOR.'library'.DIRECTORY_SEPARATOR.'HTMLPurifier.auto.php');
$path = base_path('vendor'.DIRECTORY_SEPARATOR.'htmlpurifier'.DIRECTORY_SEPARATOR.'library'.DIRECTORY_SEPARATOR.'HTMLPurifier'.DIRECTORY_SEPARATOR.'DefinitionCache'.DIRECTORY_SEPARATOR.'Serializer');
if (!File::exists($path)) {
File::makeDirectory($path, $mode = 0777, true, true);
}
$config = \HTMLPurifier_Config::createDefault();
$config->set('HTML.Trusted', true);
$config->set('Filter.YouTube', true);
$purifier = new \HTMLPurifier($config);
if ($value != strip_tags($value)) {
$value = $purifier->purify($value);
}
return $value;
}
public function purify()
{
$value = $this->attributes['body'];
$str = str_replace("'", '"', $value);
$html = preg_replace('#<script(.*?)>(.*?)</script>#is', '', $str);
$string = trim(preg_replace('/\s+/', ' ', $html));
$content = $this->inlineAttachment($string);
return $content;
}
public function setTitleAttribute($value)
{
if ($value == '') {
$this->attributes['title'] = 'No available';
} else {
$this->attributes['title'] = $value;
}
}
public function removeScript($html)
{
$doc = new \DOMDocument();
// load the HTML string we want to strip
$doc->loadHTML($html);
// get all the script tags
$script_tags = $doc->getElementsByTagName('script');
$length = $script_tags->length;
// for each tag, remove it from the DOM
for ($i = 0; $i < $length; $i++) {
$script_tags->item($i)->parentNode->removeChild($script_tags->item($i));
}
// get the HTML string back
$no_script_html_string = $doc->saveHTML();
return $no_script_html_string;
}
public function firstContent()
{
$poster = $this->attributes['poster'];
if ($poster == 'client') {
return 'yes';
}
return 'no';
}
public function inlineAttachment($body)
{
if ($this->attach()->where('poster', 'INLINE')->get()->count() > 0) {
$search = $this->attach()->where('poster', 'INLINE')->lists('name')->toArray();
foreach ($this->attach()->where('poster', 'INLINE')->get() as $key => $attach) {
$replace[$key] = "data:$attach->type;base64,".base64_encode($attach->file);
}
$body = str_replace($search, $replace, $body);
}
return $body;
}
public function getSubject()
{
$subject = $this->attributes['title'];
$array = imap_mime_header_decode($subject);
$title = '';
if (is_array($array) && count($array) > 0) {
foreach ($array as $text) {
$title .= $text->text;
}
return wordwrap($title, 70, "<br>\n");
}
return wordwrap($subject, 70, "<br>\n");
}
}

View File

@@ -9,6 +9,6 @@ class Ticket_source extends BaseModel
public $timestamps = false;
protected $table = 'ticket_source';
protected $fillable = [
'name', 'value',
'name', 'value', 'css_class',
];
}

View File

@@ -28,6 +28,34 @@ class Tickets extends BaseModel
return $this->hasMany('App\Model\helpdesk\Ticket\Ticket_Form_Data', 'ticket_id');
}
public function extraFields()
{
$id = $this->attributes['id'];
$ticket_form_datas = \App\Model\helpdesk\Ticket\Ticket_Form_Data::where('ticket_id', '=', $id)->get();
return $ticket_form_datas;
}
public function source()
{
$source_id = $this->attributes['source'];
$sources = new Ticket_source();
$source = $sources->find($source_id);
return $source;
}
public function sourceCss()
{
$css = 'fa fa-comment';
$source = $this->source();
if ($source) {
$css = $source->css_class;
}
return $css;
}
public function delete()
{
$this->thread()->delete();

View File

@@ -0,0 +1,11 @@
<?php
namespace App\Model\helpdesk\Utility;
use App\BaseModel;
class Otp extends BaseModel
{
protected $table = 'user_verification';
protected $fillable = ['id', 'user_id', 'otp', 'temp_mobile', 'updated_at', 'created_at'];
}