Skip to content

Commit 4d6f021

Browse files
committed
first commit
0 parents  commit 4d6f021

9 files changed

+651
-0
lines changed

CODE_OF_CONDUCT.md

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# Contributor Covenant Code of Conduct
2+
3+
## Our Pledge
4+
5+
In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.
6+
7+
## Our Standards
8+
9+
Examples of behavior that contributes to creating a positive environment include:
10+
11+
* Using welcoming and inclusive language
12+
* Being respectful of differing viewpoints and experiences
13+
* Gracefully accepting constructive criticism
14+
* Focusing on what is best for the community
15+
* Showing empathy towards other community members
16+
17+
Examples of unacceptable behavior by participants include:
18+
19+
* The use of sexualized language or imagery and unwelcome sexual attention or advances
20+
* Trolling, insulting/derogatory comments, and personal or political attacks
21+
* Public or private harassment
22+
* Publishing others' private information, such as a physical or electronic address, without explicit permission
23+
* Other conduct which could reasonably be considered inappropriate in a professional setting
24+
25+
## Our Responsibilities
26+
27+
Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior.
28+
29+
Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.
30+
31+
## Scope
32+
33+
This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers.
34+
35+
## Enforcement
36+
37+
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at [email protected]. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.
38+
39+
Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.
40+
41+
## Attribution
42+
43+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version]
44+
45+
[homepage]: http://contributor-covenant.org
46+
[version]: http://contributor-covenant.org/version/1/4/

CONTRIBUTING.md

+78
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
## Contributing
2+
3+
First off, thank you for considering contributing to Android Kotlin Examples.
4+
5+
### 1. Where do I go from here?
6+
7+
If you've noticed a bug or have a question,
8+
[search the issue tracker](https://github.com/irontec/doctrine-entity-trait/issues?q=something)
9+
to see if someone else has already created a ticket.
10+
If not, go ahead and [make one](https://github.com/irontec/doctrine-entity-trait/issues/new)!
11+
12+
### 2. Fork & create a branch
13+
14+
If this is something you think you can fix, then
15+
[fork](https://help.github.com/articles/fork-a-repo)
16+
and create a branch with a descriptive name.
17+
18+
A good branch name would be (where issue #7 is the ticket you're working on):
19+
20+
```sh
21+
git checkout -b 7-new-fix-for-fancy-functionality
22+
```
23+
24+
#### 3. Did you find a bug?
25+
26+
* **Ensure the bug was not already reported** by searching on GitHub under [Issues](https://github.com/irontec/doctrine-entity-trait/issues).
27+
28+
* If you're unable to find an open issue addressing the problem, [open a new one](https://github.com/irontec/doctrine-entity-trait/issues/new).
29+
Be sure to include a **title and clear description**, as much relevant information as possible,
30+
and a **code sample** or an **executable test case** demonstrating the expected behavior that is not occurring.
31+
32+
* If possible, use the relevant bug report templates to create the issue.
33+
Simply copy the content of the appropriate template into a .rb file, make the necessary changes to demonstrate the issue,
34+
and **paste the content into the issue description**:
35+
36+
### 4. Implement your fix or feature
37+
38+
At this point, you're ready to make your changes! Feel free to ask for help;
39+
everyone is a beginner at first :smile_cat:
40+
41+
### 5. Make a Pull Request
42+
43+
At this point, you should switch back to your master branch and make sure it's
44+
up to date with Active Admin's master branch:
45+
46+
```sh
47+
git remote add upstream [email protected]:irontec/doctrine-entity-trait.git
48+
git checkout master
49+
git pull upstream master
50+
```
51+
52+
Then update your feature branch from your local copy of master, and push it!
53+
54+
```sh
55+
git checkout 7-new-fix-for-fancy-functionality
56+
git rebase master
57+
git push --set-upstream origin 7-new-fix-for-fancy-functionality
58+
```
59+
60+
Finally, go to GitHub and
61+
[make a Pull Request](https://help.github.com/articles/creating-a-pull-request)
62+
:D
63+
64+
### 6. Keeping your Pull Request updated
65+
66+
If a maintainer asks you to "rebase" your PR, they're saying that a lot of code
67+
has changed, and that you need to update your branch so it's easier to merge.
68+
69+
To learn more about rebasing in Git, there are a lot of
70+
[good](http://git-scm.com/book/en/Git-Branching-Rebasing)
71+
[resources](https://help.github.com/articles/interactive-rebase),
72+
but here's the suggested workflow:
73+
74+
```sh
75+
git checkout 7-new-fix-for-fancy-functionality
76+
git pull --rebase upstream master
77+
git push --force-with-lease 7-new-fix-for-fancy-functionality
78+
```
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<?php
2+
/**
3+
* This file is part of the JsonExceptionResponseBundle.
4+
*/
5+
6+
namespace Irontec\JsonExceptionResponseBundle\DependencyInjection;
7+
8+
use \Symfony\Component\Config\FileLocator;
9+
use \Symfony\Component\DependencyInjection\ContainerBuilder;
10+
use \Symfony\Component\DependencyInjection\Loader;
11+
use \Symfony\Component\HttpKernel\DependencyInjection\Extension;
12+
13+
/**
14+
* @author Irontec <[email protected]>
15+
* @author ddniel16 <ddniel16>
16+
* @link https://github.com/irontec
17+
*/
18+
class JsonExceptionResponseExtension extends Extension
19+
{
20+
21+
public function load(array $configs, ContainerBuilder $container)
22+
{
23+
$loader = new Loader\XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
24+
$loader->load('services.xml');
25+
}
26+
27+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,110 @@
1+
<?php
2+
/**
3+
* This file is part of the JsonExceptionResponseBundle.
4+
*/
5+
6+
namespace Irontec\JsonExceptionResponseBundle\EventListener;
7+
8+
use \Symfony\Component\HttpFoundation\JsonResponse;
9+
use \Symfony\Component\HttpFoundation\Response;
10+
use \Symfony\Component\HttpKernel\Event\ExceptionEvent;
11+
use \Symfony\Contracts\Translation\TranslatorInterface;
12+
13+
/**
14+
* @author Irontec <[email protected]>
15+
* @author ddniel16 <ddniel16>
16+
* @link https://github.com/irontec
17+
*/
18+
class JsonExceptionResponseListener
19+
{
20+
21+
/**
22+
* @var string
23+
*/
24+
private $environment;
25+
26+
/**
27+
* @var TranslatorInterface
28+
*/
29+
private $translator;
30+
31+
public function __construct(string $environment, TranslatorInterface $translator)
32+
{
33+
$this->environment = $environment;
34+
$this->translator = $translator;
35+
}
36+
37+
/**
38+
* @param ExceptionEvent $event
39+
*/
40+
public function onKernelException(ExceptionEvent $event): void
41+
{
42+
43+
if ($event->getRequest()->getMethod() === 'OPTIONS') {
44+
$event->setResponse(new JsonResponse(array(), Response::HTTP_NO_CONTENT));
45+
return;
46+
}
47+
48+
$exception = $event->getException();
49+
$code = $this->getCode($exception->getCode());
50+
51+
$responseData = array(
52+
'error' => array(
53+
'code' => $code,
54+
'message' => $this->getMessage($exception->getMessage(), $code)
55+
)
56+
);
57+
58+
if ($this->environment === 'dev') {
59+
$traces = $exception->getTrace();
60+
if (is_array($traces)) {
61+
$responseData['error']['debug'] = $traces[0];
62+
}
63+
}
64+
65+
$event->setResponse(new JsonResponse($responseData, $code));
66+
67+
}
68+
69+
/**
70+
* Comprueba si el STATUS CODE es valido, en caso contrario devuelve el STATUS CODE de "HTTP_INTERNAL_SERVER_ERROR"
71+
* @param int $code exception code
72+
* @return int code
73+
*/
74+
private function getCode(int $code): int
75+
{
76+
77+
if (array_key_exists($code, Response::$statusTexts) === false) {
78+
$code = Response::HTTP_INTERNAL_SERVER_ERROR;
79+
}
80+
81+
return $code;
82+
83+
}
84+
85+
/**
86+
* En base al exception message genera el mensaje de erro final.
87+
* Si no hay contenido en el mensaje devuelve el mensaje del STATUS CODE
88+
* El string del exception message se intenta pasar por el sistema de traducción
89+
* @param string $message exception message
90+
* @param int $code STATUS CODE
91+
* @return string mensaje de error
92+
*/
93+
private function getMessage(?string $message, int $code): string
94+
{
95+
96+
$message = trim($message);
97+
98+
if ($message === '') {
99+
return Response::$statusTexts[$code];
100+
}
101+
102+
if ($this->translator instanceof TranslatorInterface) {
103+
$message = $this->translator->trans($message);
104+
}
105+
106+
return $message;
107+
108+
}
109+
110+
}

JsonExceptionResponseBundle.php

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<?php
2+
/**
3+
* This file is part of the JsonExceptionResponseBundle.
4+
*/
5+
6+
namespace Irontec\JsonExceptionResponseBundle;
7+
8+
use \Symfony\Component\DependencyInjection\ContainerBuilder;
9+
use \Symfony\Component\HttpKernel\Bundle\Bundle;
10+
11+
/**
12+
* @author Irontec <[email protected]>
13+
* @author ddniel16 <ddniel16>
14+
* @link https://github.com/irontec
15+
*/
16+
class JsonExceptionResponseBundle extends Bundle
17+
{
18+
19+
public function build(ContainerBuilder $container)
20+
{
21+
parent::build($container);
22+
}
23+
24+
}

0 commit comments

Comments
 (0)