95 lines
3.4 KiB
Plaintext
95 lines
3.4 KiB
Plaintext
<?php
|
|
|
|
use \App\Service\TrInfoCollectorService as TrInfo;
|
|
/**
|
|
* Local configuration.
|
|
*
|
|
* Copy this file to `local.php` and change its settings as required.
|
|
* `local.php` is ignored by git and safe to use for local and sensitive data like usernames and passwords.
|
|
*/
|
|
|
|
return [
|
|
'app.config' => [
|
|
'jira.user' => '...',
|
|
'jira.password' => '...',
|
|
'mhweb.user' => '...',
|
|
'mhweb.password' => '...',
|
|
|
|
'team.members' => [
|
|
'ebalcse',
|
|
'edvidan',
|
|
'efersip',
|
|
'emakazi',
|
|
'enorsos',
|
|
'epetfid',
|
|
'eroroba',
|
|
'esndkov',
|
|
],
|
|
|
|
'pra.baseData' => [
|
|
'A' => [
|
|
TrInfo::UNIT_CORE => 0,
|
|
TrInfo::UNIT_SIG => 0,
|
|
TrInfo::UNIT_TADE => 0,
|
|
],
|
|
'B' => [
|
|
TrInfo::UNIT_CORE => 27,
|
|
TrInfo::UNIT_SIG => 3,
|
|
TrInfo::UNIT_TADE => 0,
|
|
],
|
|
'C' => [
|
|
TrInfo::UNIT_CORE => 212,
|
|
TrInfo::UNIT_SIG => 56,
|
|
TrInfo::UNIT_TADE => 9,
|
|
],
|
|
],
|
|
'url.jiraTspExpedites' => [
|
|
"baseUrl" => "https://jirapducc.mo.ca.am.ericsson.se/rest/api/2/search?jql=filter=%s",
|
|
"filters" => [
|
|
"unassigned" => 12768,
|
|
"all" => 12502,
|
|
]
|
|
],
|
|
'url.jiraKanbanBoard' => [
|
|
'baseUrl' => 'https://jirapducc.mo.ca.am.ericsson.se/rest/api/2/search?jql=filter=%s&maxResults=1000&fields=%s',
|
|
'filterId' => 14229,
|
|
'fields' => [
|
|
'summary',
|
|
'priority',
|
|
'issuetype',
|
|
'labels',
|
|
'assignee',
|
|
'status',
|
|
'worklog',
|
|
'updated',
|
|
'fixVersions',
|
|
'customfield_10010',
|
|
'customfield_11226',
|
|
'customfield_10840',
|
|
'customfield_11225',
|
|
'customfield_10844',
|
|
'customfield_10847',
|
|
'customfield_10849',
|
|
'customfield_10850',
|
|
'customfield_10904',
|
|
'customfield_11692',
|
|
],
|
|
],
|
|
'url.mhWebPraGoals' => 'https://mhweb.ericsson.se:443/SearchWeb/faces/search/query/resultPage.xhtml?&v=3&queryKey=74023&output=CSV&csvDelimiter=COMMA',
|
|
'url.mhWebTrProgress' => 'https://mhweb.ericsson.se:443/SearchWeb/faces/search/query/resultPage.xhtml?&v=3&queryKey=68655&output=CSV&csvDelimiter=COMMA',
|
|
'url.mhWebTrEdit' => 'https://mhweb.ericsson.se/TREditWeb/faces/tredit/tredit.xhtml?eriref=%s',
|
|
'url.labTemperatureUrl' => 'https://159.107.194.61/public/mapshow_simple.htm?id=3381&mapid=884B46A7-AE59-4523-9981-8E9FEB7C1FCF',
|
|
'url.vacation' => 'https://rhp.common.hu.eld.ericsson.se/vacation.php?action=groupview&dm_h=2&dm_v=1&group_id=478',
|
|
'url.jcatTrFlow' => "http://jcat.tsp.eth.ericsson.se:8080/Trweb/trflow/reader.php?query=SELECT+*+FROM+trinfo+where+validationerrors+!=+''",
|
|
|
|
'url.eurestCameras' => [
|
|
'https://user:user@91.82.89.112/mjpg/video.mjpg',
|
|
'https://user:user@91.82.89.112:8443/mjpg/video.mjpg',
|
|
],
|
|
|
|
'http.proxy.enabled' => false,
|
|
'http.proxy.type' => CURLPROXY_SOCKS5,
|
|
'http.proxy.url' => "localhost:1080",
|
|
],
|
|
];
|