Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Updating Yaml File through Patch method not working

I have a Yaml file(layouts.yaml) of this format from which i want to perform crud Operations through REST Api:

Layouts:
        -
          Name: Default Layout
          LayoutId : 1
          ConfiguredSegments:
            LiveA :
                Height : 100
                Id : LiveA
            Ref1A :
                Height : 100
                Id : Ref1A
    

My controller Function to update a layout based on layout Id(I tried 2 ways which wont work):

1st way: //This does not seem to work

const raw = fs.readFileSync("layouts.yaml", 'utf8');
    const layoutData = YAML.load(raw);
    //function to update specific layout based on LayoutId
    export const updateSpecificLayout = (req, res)=>{
        const { id } = req.params;
        const { ConfiguredSegments } = req.body;
    
        const getLayoutList = JSON.parse(JSON.stringify(layoutData)); 
        
        getLayoutList.forEach(element => {if(element.LayoutId == id) element.ConfiguredSegments = 
        ConfiguredSegments 
            
        });
        let yaml = YAML.dump(getLayoutList);
         
          fs.writeFileSync("layouts.yaml", yaml, function (err,file){
             if(err) throw err;        
             console.log(`Layout with the id:${id} has been updated`);
      })      
    }
    

2nd way://This does not seem to work as well

    const raw = fs.readFileSync("layouts.yaml", 'utf8');
    const layoutData = YAML.load(raw);
    //function to update specific layout based on LayoutId
    export const updateSpecificLayout = (req, res)=>{
        const { id } = req.params;
        const { ConfiguredSegments } = req.body;
    
        const getLayout = JSON.parse(JSON.stringify(layoutData)); 
        const foundLayout = getLayout.Layouts.find((layout) => layout.LayoutId == id);
    
        if(ConfiguredSegments)foundLayout.ConfiguredSegments = ConfiguredSegments;
        console.log(`Layout with the id:${id} has been updated`);
    }

    

Through Postman i am testing my api with patch request with the following body:

    {
    "ConfiguredSegments": {
    "Ref2A": {
    "Height": 100,
    "Id": "LiveA"
    },
    "Ref3A": {
    "Height": 100,
    "Id": "Ref1A"
    }
    }
    }
    
 But the yaml file is not getting updated.Any other ways to achieve this ?
like image 977
Mr.Curious Avatar asked Jul 09 '26 21:07

Mr.Curious


1 Answers

You can try using this method. Define a function which will be able to find and replace the object you are looking for. Your controller function:

export const updateSpecificLayout = (req, res)=>{
    const { id } = req.params;
    const { ConfiguredSegments } = req.body;

    const getLayoutList = JSON.parse(JSON.stringify(layoutData)); 

    const layoutToBeUpdated = getLayoutList.Layouts.find((layout) => layout.LayoutId == id );

    findAndReplace(getLayoutList.Layouts,layoutToBeUpdated.ConfiguredSegments,ConfiguredSegments)

      let yaml = YAML.dump(getLayoutList);
     
       fs.writeFileSync("layouts.yaml", yaml, function (err,file){
          if(err) throw err;        
          console.log(`Layout with the id:${id} has been updated`);
  })      
}

The helper function which can find and replace the data.

// Helper function to update layout data
function findAndReplace(object, value, replacevalue) {
    for (var x in object) {
      if (object.hasOwnProperty(x)) {
        if (typeof object[x] == 'object') {
          findAndReplace(object[x], value, replacevalue);
        }
        if (object[x] == value) { 
          object["ConfiguredSegments"] = replacevalue;
           break; 
        }
      }
    }
  }
like image 100
Mr.Shark Avatar answered Jul 14 '26 07:07

Mr.Shark



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!