예제 #1
0
        public ActionResult Upload(IFormFile file)
        {
            int successfulReadings = 0;
            int failedReadings     = 0;

            try
            {
                if (file.Length > 0)
                {
                    //Save file to temporary location

                    var filePath = Path.Combine(Environment.CurrentDirectory, "Temp", Guid.NewGuid().ToString());
                    using (var stream = System.IO.File.Create(filePath))
                    {
                        file.CopyTo(stream);
                    }

                    // process file
                    string[] lines = System.IO.File.ReadAllLines(filePath);

                    // Don't process the first line - it contains headers.
                    for (int i = 1; i < lines.Length; i++)
                    {
                        try
                        {
                            string[] columns = lines[i].Split(',');
                            _readingService.CreateReading(columns[0], columns[1], columns[2]);
                            successfulReadings++;
                        }
                        catch (Exception ex)
                        {
                            failedReadings++;
                            // Log error
                        }
                    }
                }
            }
            catch (Exception ex)
            {
                // TODO - Log error
                return(BadRequest());
            }

            return(Ok(new { Successful = successfulReadings, Failed = failedReadings }));
        }