Exemplo n.º 1
0
 /**
  * Writes a json file
  *
  * @param $path
  *
  * @param $contents
  *
  * @return mixed|null
  */
 public static function WriteFile($path, $contents)
 {
     /**
      * Gets the correct path of this file
      */
     $corrected_path = Path::Get($path);
     /**
      * If this file exists, return null ( use above function )
      */
     if (file_exists($path)) {
         return null;
     }
     /**
      * Else, Lets first create directories
      */
     JsonWriter::CreateDirectories($path);
     /**
      * Then, lets write to file
      */
     JsonWriter::PutContents($corrected_path, $contents);
     /**
      * Then lets return this written file
      */
     return JsonReader::ReadFile($corrected_path);
 }
Exemplo n.º 2
0
 /**
  * Returns a streamed response depending on the format required : calls a different writer for each format
  * 
  * @param \Doctrine\ORM\EntityManager $em
  * @param string $format
  * @param string $filename
  * @param string $entityClass
  * @param array $listFields
  * 
  * @throws \RuntimeException
  * 
  * @return \Symfony\Component\HttpFoundation\StreamedResponse
  */
 public static function getResponse($em, $format = 'csv', $filename = null, $entityClass, $listFields)
 {
     if ($filename === null) {
         $filename = 'export';
     }
     switch ($format) {
         case 'csv':
             $writer = new CsvWriter($em, $entityClass, $listFields);
             $contentType = 'text/csv';
             break;
         case 'json':
             $writer = new JsonWriter($em, $entityClass, $listFields);
             $contentType = 'application/json';
             break;
         default:
             throw new \RuntimeException('File format unknown');
     }
     $response = $writer->export();
     $response->headers->set('Content-Type', $contentType);
     $response->headers->set('Content-Disposition', 'attachment; filename="' . $filename . '.' . $format . '"');
     return $response;
 }
Exemplo n.º 3
0
 /**
  * Make that directory
  *
  * @param $file
  */
 public static function MakeDirectory($file)
 {
     if (!JsonWriter::DirectoryExists($file)) {
         mkdir($file);
     }
 }
Exemplo n.º 4
0
 /**
  * Saves our found path to file
  *
  * @param $built_path
  */
 private static function SavePath($built_path)
 {
     $array = ['path' => $built_path];
     JsonWriter::Write($array['path'] . "Json/resource/filepath.json", $array);
 }
Exemplo n.º 5
0
 /**
  * Writes our tor access points
  */
 public static function WriteTorExitPoints()
 {
     $content = Address::GetTorExitPoints();
     if ($content != null) {
         JsonWriter::PathWrite('Json/resources/tor_exit_points.json', $content);
     }
 }
Exemplo n.º 6
0
 /**
  * @test
  * @covers Plum\PlumJson\JsonWriter::prepare()
  */
 public function prepareDoesNothing()
 {
     $writer = new JsonWriter();
     $writer->prepare();
 }